.dotfiles/.bin/system-mode

20 lines
392 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
}
system_mode_x11 () {
sysyadm config --add local.class x11
sysyadm alt
}
case $1 in
"wayland") system_mode_wayland ;;
"x11") system_mode_x11 ;;
*) echo "'$1' is not a valid mode" ;;
esac