aboutsummaryrefslogtreecommitdiff
path: root/.config/bspwm
diff options
context:
space:
mode:
Diffstat (limited to '.config/bspwm')
-rwxr-xr-x.config/bspwm/sysmenu.sh70
1 files changed, 0 insertions, 70 deletions
diff --git a/.config/bspwm/sysmenu.sh b/.config/bspwm/sysmenu.sh
deleted file mode 100755
index 1bdc35e..0000000
--- a/.config/bspwm/sysmenu.sh
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/bash
-
-# Custom Rofi Script
-
-BORDER="#1F1F1F"
-SEPARATOR="#1F1F1F"
-FOREGROUND="#A9ABB0"
-BACKGROUND="#1F1F1F"
-BACKGROUND_ALT="#252525"
-HIGHLIGHT_BACKGROUND="#1A237E"
-HIGHLIGHT_FOREGROUND="#FFFFFF"
-
-BLACK="#000000"
-WHITE="#ffffff"
-RED="#e53935"
-GREEN="#43a047"
-YELLOW="#fdd835"
-BLUE="#1e88e5"
-MAGENTA="#00897b"
-CYAN="#00acc1"
-PINK="#d81b60"
-PURPLE="#8e24aa"
-INDIGO="#3949ab"
-TEAL="#00897b"
-LIME="#c0ca33"
-AMBER="#ffb300"
-ORANGE="#fb8c00"
-BROWN="#6d4c41"
-GREY="#757575"
-BLUE_GREY="#546e7a"
-DEEP_PURPLE="#5e35b1"
-DEEP_ORANGE="#f4511e"
-LIGHT_BLUE="#039be5"
-LIGHT_GREEN="#7cb342"
-
-# Launch Rofi
-MENU="$(rofi -no-lazy-grab -sep "|" -dmenu -i -p 'System :' \
--hide-scrollbar true \
--bw 0 \
--lines 4 \
--line-padding 10 \
--padding 20 \
--width 15 \
--xoffset -27 -yoffset 60 \
--location 3 \
--columns 1 \
--show-icons -icon-theme "Papirus" \
--font "Fantasque Sans Mono 10" \
--color-enabled true \
--color-window "$BACKGROUND,$BORDER,$SEPARATOR" \
--color-normal "$BACKGROUND_ALT,$FOREGROUND,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
--color-active "$BACKGROUND,$MAGENTA,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
--color-urgent "$BACKGROUND,$YELLOW,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
-<<< " Lock| Logout| Reboot| Shutdown")"
-case "$MENU" in
- *Lock) i3lock -c 282a36 -n ;;
- *Logout) openbox --exit;;
- *Reboot) sudo reboot ;;
- *Shutdown) sudo shutdown -r now
-esac
-
-# More Options
-# -fullscreen \
-
-# Theming help
-# color window = background, border, separator
-# color normal = background, foreground, background-alt, highlight-background, highlight-foreground
-# color active = background, foreground, background-alt, highlight-background, highlight-foreground
-# color urgent = background, foreground, background-alt, highlight-background, highlight-foreground
-