antoniosarosi / dotfiles

My dotfiles repo, here you can find all my window manager configs as well as documentation and a guide on how to make your own desktop environment.
MIT License
861 stars 186 forks source link

Error al cargar la configuracion de qtile en debian 9 #11

Closed AlphaTechnolog closed 3 years ago

AlphaTechnolog commented 3 years ago

He intentado clonar tu configuracion de qtile, pero he tenido un problema. Consiste en que al iniciar qtile... obtengo la configuracion por defecto de qtile, con un mensaje que dice: Config Err!, intente ejecutando la configuracion con cd ~/.config/qtile ; python3 ./config.py, y obtengo el siguiente error:

Non-config.Match objects in float_rules are deprecated
Traceback (most recent call last):
  File "./config.py", line 14, in <module>
    from settings.widgets import widget_defaults, extension_defaults
  File "/home/thecoderpro/.config/qtile/settings/widgets.py", line 64, in <module>
    widget.Pacman(**base(bg='color4'), update_interval=1800),
  File "/usr/local/lib/python3.7/dist-packages/qtile-0.16.2.dev190+ga7d27ef6-py3.7-linux-x86_64.egg/libqtile/utils.py", line 226, in __getattr__
    raise AttributeError
AttributeError

Estas son algunas capturas:

En la barra se ve el error: Config Err! 1

El output del comando anteriormente mencionado: 2

antoniosarosi commented 3 years ago

Seguramente el widget de Pacman ya no sirve, habrán puesto otro nuevo, prueba ir al archivo settings/widgets.py y quitar el widget de Pacman. Para probar configs de gestores de ventanas puedes utilizar Xephyr, es bastante cómodo. En Debian creo que se instala con apt install xserver-xephyr.

AlphaTechnolog commented 3 years ago

Bien... ahora en mi terminal recibo lo siguiente: Non-config.Match objects in float_rules are deprecated Unmet dependencies for 'libqtile.widget.net.Net': No module named 'psutil'..., pero ahora se asi :)

Pantallazo-2021-01-18 20-19-21

creo que tengo un problema con la net, pd: uso wifi

antoniosarosi commented 3 years ago

No no, no tienes un problema, te falta ese paquete.

pip install psutil

AlphaTechnolog commented 3 years ago

Perfecto muchas gracias ahora si... una pregunta rapida: como cambio el tema a material ocean

antoniosarosi commented 3 years ago

Está explicado aquí, básicamente abres el archivo ~/.config/qtile/config.json o lo creas si no existe, y pones:

{
    "theme": "material-ocean"
}
antoniosarosi commented 3 years ago

Después tienes que reiniciar con control mod R

AlphaTechnolog commented 3 years ago

Muy bien muchisimas gracias crack!