16 lines
328 B
Text
16 lines
328 B
Text
|
#!/bin/sh
|
||
|
|
||
|
case $1 in
|
||
|
-h|--help)
|
||
|
echo "Usage"
|
||
|
echo " edp toggle eDP-1"
|
||
|
echo " edp on enable eDP-1"
|
||
|
echo " edp off disable eDP-1"
|
||
|
echo " edp -h show this help text"
|
||
|
exit 0
|
||
|
;;
|
||
|
off) swaymsg output eDP-1 disable; ;;
|
||
|
on) swaymsg output eDP-1 enable; ;;
|
||
|
*) swaymsg output eDP-1 toggle; ;;
|
||
|
esac
|