Se você quiser alterar a cor do texto na guia "não salvo", que parece ser "startup.sh", não é necessário saber a cor do texto atual.
Geany ainda é um aplicativo gtk2. Sua pasta pessoal deve ter um arquivo oculto chamado .gtkrc-2.0
. Abra e verifique se tem uma linha como esta:
include "/home/your_login_name/.gtkrc-2.0.mine"
Se isso acontecer, basta fechar ~/.gtkrc-2.0
. Se isso não acontecer, adicione essa linha no final, certificando-se de usar o caminho completo correto. Salve e saia.
Se você não tiver um arquivo chamado ~/.gtkrc-2.0
, abra um terminal, verifique se está na sua pasta pessoal e execute
echo "include \"/home/your_login_name/.gtkrc-2.0.mine\"" > .gtkrc-2.0
Mas certifique-se de alterar your_login_name
para o que for apropriado.
Agora, veja se você também tem um arquivo oculto chamado ~/.gtkrc-2.0.mine
. Se você não tiver o arquivo, basta criá-lo usando um editor de texto simples . Se já existir, faça backup de segurança e adicione as seguintes linhas:
# CUSTOM STYLES
# *******GEANY*******
#Styling text (fg) in Geany's tabs
#Note that styling bg is done in the theme's gtkrc, not here, because we want that effect across other programs with tabs as well
# document status colors
style "geany-document-status-changed-style" {
fg[NORMAL] = "magenta" #tab text when changes are made but not saved and tab is active
fg[ACTIVE] = "#ff0746" #tab text when changes are made but not saved and tab is not in focus
}
widget "*.geany-document-status-changed"
style "geany-document-status-changed-style"
# font style and size in Geany's tabs
style "geany" = "geany-tabs" {
font_name = "Ubuntu Mono 14"
}
widget "GeanyMainWindow.GtkVBox.GtkVPaned.GtkHPaned.GtkNotebook.*"
style "geany"
Eu também incluí código para permitir que você especifique uma fonte apenas para a interface do usuário do Geany. Você pode excluir ou comentar essas linhas!
Salve o arquivo editado (como texto simples). Feche todas as instâncias do Geany. Então, abra Geany e verifique o efeito do que você fez. Obviamente, você desejará cores adequadas ao seu gosto.
Aqui está o que eu vejo.
Tudo de bom.