Estou enfrentando esses avisos ao iniciar o gedit no meu terminal. Eventualmente, o gedit é iniciado, mas com essas linhas de aviso sempre que inicio o gedit:
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:138:20: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:138:24: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:138:28: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:138:32: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:2237:26: 'none' is not a valid color name
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:2264:20: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:2264:24: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:2264:28: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:2264:32: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: sidebar.css:22:20: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: sidebar.css:40:18: Not using units is deprecated. Assuming 'px'.
(gedit:3830): Gtk-WARNING **: Theme parsing error: sidebar.css:40:20: Not using units is deprecated. Assuming 'px'.
** (gedit:3830): WARNING **: Could not load Gedit repository: Typelib file for namespace 'GtkSource', version '3.0' not found
(gedit:3830): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
(gedit:3830): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
command-line
gedit
Muddassir Nazir
fonte
fonte
Normalmente, esses avisos indicam o fraco desenvolvimento do aplicativo, mas normalmente são ignorados pelos programadores. Não é um problema crítico e pode ser ignorado com segurança se o programa funcionar como pretendido.
BTW, o problema parece estar com o tema que não declara
px
em seu css. Você pode editarsiderbar.css
e fazer as correções nas linhas 40 e 22. Nasgtk-wirdgets.css
linhas 2264, 2237 e 138. Existem várias instâncias. Isso é para o "erro de análise de tema" , também parece que você perdeu o pacote SessionManager e o GtkSource não é a versão 3.fonte
locate sidebar.css
para encontrá-lo rapidamente. Leve em consideração o nome do seu tema para não modificar algum tema.Eu acho que o uso de
gksudo
instad desudo
impedirá que esses avisos cheguem!veja aqui a diferença entre gksudo e sudo?
fonte