aboutsummaryrefslogtreecommitdiffstats
path: root/rofi-sound-output-chooser
diff options
context:
space:
mode:
authorAlex Kelly <kellya@arachnitech.com>2023-08-10 16:24:37 -0400
committerAlex Kelly <kellya@arachnitech.com>2023-08-10 16:24:37 -0400
commit944aab752e2fc710184820aeee5d174b86c5233f (patch)
tree6180c3cd811f05a50baf31e612b5947b745c7e2e /rofi-sound-output-chooser
parentd6bd604d8c18d97ab722c9baf89d705a249d3f69 (diff)
downloadrofi-sound-944aab752e2fc710184820aeee5d174b86c5233f.tar.gz
Remove quit
Diffstat (limited to 'rofi-sound-output-chooser')
-rwxr-xr-xrofi-sound-output-chooser8
1 files changed, 0 insertions, 8 deletions
diff --git a/rofi-sound-output-chooser b/rofi-sound-output-chooser
index fc85c50..5b67910 100755
--- a/rofi-sound-output-chooser
+++ b/rofi-sound-output-chooser
@@ -2,13 +2,6 @@
# Outputs have spaces in them, so let's make \n the IFS
IFS=$'\n'
-# Menu will have a quit option, though you could just escape
-if [ "$*" = "quit" ]
-then
- exit 0
-fi
-
-
# An option was passed, so let's check it
if [ "$@" ]
then
@@ -34,5 +27,4 @@ else
# outputs with cut may have spaces, so use empty xargs to remove them, and output that to the rofi list
echo "$x"|xargs
done
- echo "quit"
fi