From c3405c8efa9e3ecf32ee4da3e8b91eb42a65ec15 Mon Sep 17 00:00:00 2001 From: Thomas Voss <57815710+Mango0x45@users.noreply.github.com> Date: Sun, 4 Oct 2020 18:01:33 +0200 Subject: [PATCH] Removed useless variable Probably just an artefact from a previous copy+pasted script --- .scripts/resolution.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/.scripts/resolution.sh b/.scripts/resolution.sh index 2f8a1a9..4f6e052 100755 --- a/.scripts/resolution.sh +++ b/.scripts/resolution.sh @@ -3,8 +3,6 @@ choices="1366x768 1360x765 1280x720" -message="What music player do you want to launch?" - chosen=$(echo -e "$choices" | rofi -dmenu -i -theme ~/.config/rofi/theme/sidebar) case "$chosen" in @@ -12,4 +10,3 @@ case "$chosen" in 1360x765) xrandr --output VGA-1 --mode 1360x765_60.00 && notify-send "Resolution has been changed to" "1360x765";; 1280x720) xrandr --output VGA-1 --mode $chosen && notify-send "Resolution has been changed to" "$chosen";; esac -