Add Window Managers and Compositors to Lemurs
mainLemurs populates its environment switcher based on runnable scripts located in specific directories. The filename of the script determines the name displayed in the Lemurs UI.
- Xorg/X11: Place your
xinitrcscripts in/etc/lemurs/wms/. - Wayland: Place scripts that start your compositor in
/etc/lemurs/wayland/.
Important: You must make these scripts executable using chmod.
Xorg Example (bspwm)
Create /etc/lemurs/wms/bspwm:
#! /bin/sh
sxhkd &
exec bspwmThen run: sudo chmod 755 /etc/lemurs/wms/bspwm
Wayland Example (Sway)
Create /etc/lemurs/wayland/sway:
#! /bin/sh
exec swayThen run: sudo chmod 755 /etc/lemurs/wayland/sway (Ensure you are in the seat group).