etc/dot/file/winitrc
2020-11-04 04:03:20 +05:00

9 lines
205 B
Text

session=$(1:-sway)
shift
arg="$@"
# The same as xinitrc, but for Wayland programs.
case "$session" in
sway ) exec sway $arg;;
# Not found any specific.
* ) exec $session $arg ;;
esac