Hey viewers.
I've been trying to piece together the steps to properly install Qtile on v15.x.
Searching youtube, reddit, even qtile.org for good documentation has proved of little help.
Qtile's install guide is quite literally a one liner, and does not work.
The most help I have found has been on this very forum, here, and here.
I personally want to be able to install it with just Xorg and without the need for a display manager or additional desktop environment.
The final issue to this install for me has been to be able to gracefully exit it back to the terminal.
The install steps I've compiled, based on past troubleshootings performed by other users (including lv426 r2com bsduck covacat chrbr T-Daemon )
are as follows:
01.Search and Install Qtile via pkg:
Note the package name and install it:
Replace nn.n with the qtile version number FreeBSD currently lists in its packages.
02.Install a dependency file (graphic library for GTK):
Search for gdk-pixbuf2:
Install the current version number listed:
Replace n.nn.n with the current version number listed.
03.Create config folder, copy the default config file, rename it:
Copy it:
Rename it:
04.Create (or edit) the .xinitrc file to automatically launch qtile:
Add the following lines to it:
Save and exit.
05.Issue the startx command to start qtile:
The only piece to this puzzle I haven't discovered yet is how to exit qtile gracefully to a command prompt.
Using the keybinding Super+Ctrl+r just removes the bar, but doesn't take me all the way out of qtile.
The mouse pointer is still active, and the background image still visible.
I had to break out with Ctrl+Alt+F4 or F5.
The qtile.log file also doesn't report anything related to it.
Any and all suggestions are welcome.
I've been trying to piece together the steps to properly install Qtile on v15.x.
Searching youtube, reddit, even qtile.org for good documentation has proved of little help.
Qtile's install guide is quite literally a one liner, and does not work.
The most help I have found has been on this very forum, here, and here.
I personally want to be able to install it with just Xorg and without the need for a display manager or additional desktop environment.
The final issue to this install for me has been to be able to gracefully exit it back to the terminal.
The install steps I've compiled, based on past troubleshootings performed by other users (including lv426 r2com bsduck covacat chrbr T-Daemon )
are as follows:
01.Search and Install Qtile via pkg:
$ sudo pkg search qtileNote the package name and install it:
$ sudo pkg install py311-qtile-0.nn.nReplace nn.n with the qtile version number FreeBSD currently lists in its packages.
02.Install a dependency file (graphic library for GTK):
Search for gdk-pixbuf2:
$ sudo pkg search gdk-pixbuf2Install the current version number listed:
$ sudo pkg install gdk-pixbuf2-n.nn.nReplace n.nn.n with the current version number listed.
03.Create config folder, copy the default config file, rename it:
$ sudo mkdir ~/.config/qtileCopy it:
$ sudo cp /usr/local/lib/python3.11/site-packages/libqtile/resources/default_config.py ~/.config/qtileRename it:
$ sudo mv ~/.config/qtile/default_config.py config.py04.Create (or edit) the .xinitrc file to automatically launch qtile:
$ sudo vi ~/.xinitrcAdd the following lines to it:
#!bin/sh
qtile start &
sleep 10000000
Save and exit.
05.Issue the startx command to start qtile:
$ startxThe only piece to this puzzle I haven't discovered yet is how to exit qtile gracefully to a command prompt.
Using the keybinding Super+Ctrl+r just removes the bar, but doesn't take me all the way out of qtile.
The mouse pointer is still active, and the background image still visible.
I had to break out with Ctrl+Alt+F4 or F5.
The qtile.log file also doesn't report anything related to it.
Any and all suggestions are welcome.