aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bemenu
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-02-13 17:13:07 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-02-13 17:13:07 -0600
commitee79bc669e5b662abd1d9dd19490a9909c37a362 (patch)
treefd9aa6ac67986adabdf06276215f09b105f4d34e /bemenu
parentbb3762d6c4796cc6c45cb2eac16f071f4b07f53e (diff)
chore(bemenu): remove old configs
Diffstat (limited to 'bemenu')
-rw-r--r--bemenu/.config/profile.d/50-bemenu.sh43
-rwxr-xr-xbemenu/.local/bin/powermenu32
-rwxr-xr-xbemenu/install.sh22
3 files changed, 0 insertions, 97 deletions
diff --git a/bemenu/.config/profile.d/50-bemenu.sh b/bemenu/.config/profile.d/50-bemenu.sh
deleted file mode 100644
index f867f0e..0000000
--- a/bemenu/.config/profile.d/50-bemenu.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/sh
-# shellcheck disable=2034
-
-base00="#1d2021"
-base01="#3c3836"
-base02="#504945"
-base03="#665c54"
-base04="#bdae93"
-base05="#d5c4a1"
-base06="#ebdbb2"
-base07="#fbf1c7"
-base08="#fb4934"
-base09="#fe8019"
-base0A="#fabd2f"
-base0B="#b8bb26"
-base0C="#8ec07c"
-base0D="#83a598"
-base0E="#d3869b"
-base0F="#d65d0e"
-
-export BEMENU_OPTS="--ignorecase \
---prompt=> \
---list 10 \
---scrollbar autohide \
---line-height 18 \
---binding vim \
---vim-esc-exits \
---fn 'sans-serif 15' \
---no-overlap \
---ab '$base02' \
---af '$base06' \
---fb '$base00' \
---ff '$base06' \
---scb '$base06' \
---scf '$base00' \
---nb '$base02' \
---nf '$base06' \
---tb '$base0D' \
---tf '$base06' \
---hb '$base03' \
---hf '$base06' \
---sb '$base06' \
---sf '$base06'"
diff --git a/bemenu/.local/bin/powermenu b/bemenu/.local/bin/powermenu
deleted file mode 100755
index 688ae3b..0000000
--- a/bemenu/.local/bin/powermenu
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/sh
-
-if [ "$#" -eq 0 ]; then
- set -- $(awk '{print tolower($2)}')
-fi
-
-case "$1" in
-lock)
- loginctl lock-session ${XDG_SESSION_ID-}
- ;;
-logout)
- loginctl terminate-session ${XDG_SESSION_ID-}
- ;;
-suspend)
- systemctl suspend
- ;;
-hibernate)
- systemctl hibernate
- ;;
-reboot)
- systemctl reboot
- ;;
-poweroff)
- systemctl poweroff
- ;;
-*list)
- printf '%s\n' '󰌾 Lock' '󰍃 Logout' '󰋊 Hibernate' '󰒲 Suspend' '󰜉 Reboot' '󰐥 Poweroff'
- ;;
-*)
- echo "Invalid argument: $@"
- ;;
-esac
diff --git a/bemenu/install.sh b/bemenu/install.sh
deleted file mode 100755
index 7fc25af..0000000
--- a/bemenu/install.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-pkgname=bemenu
-
-if ! command -v "$pkgname" >/dev/null; then
- printf "%s: $pkgname not found, skipping...\n" "$0"
-
- for bin in dmenu dmenu_run dmenu-wl dmenu-wl_run; do
- if [ -L "$HOME/.local/bin/$bin" ] && [ ! -e "$HOME/.local/bin/$bin" ]; then
- rm -v "$HOME/.local/bin/$bin"
- fi
- done
-
- exit 0
-fi
-
-printf "%s: Installing symlinks\n" "$0"
-
-ln -sf "$(command -v bemenu)" ~/.local/bin/dmenu
-ln -sf "$(command -v bemenu)" ~/.local/bin/dmenu-wl
-ln -sf "$(command -v bemenu-run)" ~/.local/bin/dmenu_run
-ln -sf "$(command -v bemenu-run)" ~/.local/bin/dmenu-wl_run