aboutsummaryrefslogtreecommitdiff
path: root/dmenu-settings
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu-settings')
-rwxr-xr-xdmenu-settings9
1 files changed, 9 insertions, 0 deletions
diff --git a/dmenu-settings b/dmenu-settings
new file mode 100755
index 0000000..027dba3
--- /dev/null
+++ b/dmenu-settings
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+choice=$(echo -e " Theme\n󰞅 Emojis\n✘ Exit" | dmenu -bw 4 -c -z 500 -l 6 -p "Settings: ")
+case "$choice" in
+ " Theme") choose-theme;;
+ "󰞅 Emojis") dmenu-emoji;;
+ " Exit") exit 0 ;;
+ *) exit 1;;
+esac