.dotfiles/.bin/system-mode
2025-06-24 20:32:59 +02:00

22 lines
444 B
Bash
Executable file

#!/usr/bin/env bash
shopt -s expand_aliases
. "$XDG_CONFIG_HOME/aliasrc"
system_mode_wayland () {
sysyadm config --unset-all local.class x11
sysyadm alt
systemctl soft-reboot
}
system_mode_x11 () {
sysyadm config --add local.class x11
sysyadm alt
systemctl soft-reboot
}
case $1 in
"wayland") system_mode_wayland ;;
"x11") system_mode_x11 ;;
*) echo "'$1' is not a valid mode" ;;
esac