feat(display): add big/small aliases

This commit is contained in:
Ayo Ayco 2025-07-05 11:53:06 +02:00
parent 9aaae0f4b5
commit ed0fcae79b

View file

@ -8,9 +8,9 @@
#command=$1
if [ "$1" = "1920" ] || [ "$1" = "1200" ]; then
if [ $1 = "big" ] || [ "$1" = "1920" ] || [ "$1" = "1200" ]; then
xrandr --output eDP-1 --mode 1920x1200
elif [ "$1" = "1280" ] || [ "$1" = "800" ]; then
elif [ $1 = "small" ] || [ "$1" = "1280" ] || [ "$1" = "800" ]; then
xrandr --output eDP-1 --mode 1280x800
else
xrandr --output eDP-1 --mode 1680x1050