Add a check before toggeling wm

Currently on 1.5.1, sway is not installed nor setted up. This WM toggle
entry cause a tty soft lock !

This fix this with a very too simple check but that will prevent this
case.
master
Stacy Harper 3 years ago
parent 3c3c5f5b45
commit a5799bf351
No known key found for this signature in database
GPG Key ID: 5BAC92328B7C5D65
  1. 7
      scripts/core/sxmo_wmtoggle.sh

@ -1,11 +1,18 @@
#!/bin/sh
not_ready_yet() {
notify-send "Your device looks not ready yet"
exit 1
}
case "$(realpath /var/lib/tinydm/default-session.desktop)" in
/usr/share/wayland-sessions/swmo.desktop)
command -v dwm || not_ready_yet
sudo tinydm-set-session -f -s /usr/share/xsessions/sxmo.desktop
pkill sway
;;
/usr/share/xsessions/sxmo.desktop)
command -v sway || not_ready_yet
sudo tinydm-set-session -f -s /usr/share/wayland-sessions/swmo.desktop
pkill dwm
;;

Loading…
Cancel
Save