commit 9e0ee088449f7e3526d4691f095ac78bcc3e4c46
parent 32b70484ff58b7cd269ea5cec5004df39211c7fa
Author: awy <awy@awy.one>
Date: Thu, 20 Mar 2025 15:46:47 +0300
wmenu
Diffstat:
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/.local/bin/bookmarks b/.local/bin/bookmarks
@@ -8,7 +8,7 @@ CLIPBOARD() {
}
DMENU() {
- wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -l "${1}" -p "${2}"
+ wmenu -i -l "${1}" -p "${2}"
}
error_notify() {
diff --git a/.local/bin/cron/checkup b/.local/bin/cron/checkup
@@ -8,7 +8,7 @@ export DBUS_SESSION_BUS_ADDRESS=$(doas grep -E -z "$var" "/proc/$pid/environ" |
notify-send "📦 Repository Sync" "Checking for package updates..."
-doas pacman -Syyuw --noconfirm || notify-send "Error downloading updates.
+pacman -Syyuw --noconfirm || notify-send "Error downloading updates.
Check your internet connection, if pacman is already running, or run update manually to see errors."
pkill -RTMIN+8 "${STATUSBAR:-waybar}"
diff --git a/.local/bin/dmenupass b/.local/bin/dmenupass
@@ -3,4 +3,4 @@
# This script is the SUDO_ASKPASS variable, meaning that it will be used as a
# password prompt if needed.
-wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -P -p "$1" <&-
+wmenu -P -p "$1" <&-
diff --git a/.local/bin/dmenurecord b/.local/bin/dmenurecord
@@ -11,7 +11,7 @@
getdim() {
screens=$(hyprctl monitors | grep Monitor | cut -d' ' -f2)
- choice=$(printf "$screens\nExit\n" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12")
+ choice=$(printf "$screens\nExit\n" | wmenu)
[ "${choice}" != "Exit" ] || [ -z "${choice}" ] || exit &&
echo $choice
}
@@ -77,7 +77,7 @@ audio() { \
}
askrecording() { \
- choice=$(printf "screencast\\nvideo\\nvideo selected\\naudio\\nwebcam\\nwebcam (hi-def)" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -p "Select recording style:")
+ choice=$(printf "screencast\\nvideo\\nvideo selected\\naudio\\nwebcam\\nwebcam (hi-def)" | wmenu -i -p "Select recording style:")
case "$choice" in
screencast) screencast;;
audio) audio;;
@@ -89,7 +89,7 @@ askrecording() { \
}
asktoend() { \
- response=$(printf "No\\nYes" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -p "Recording still active. End recording?") &&
+ response=$(printf "No\\nYes" | wmenu -i -p "Recording still active. End recording?") &&
[ "$response" = "Yes" ] && killrecording
}
diff --git a/.local/bin/mounter b/.local/bin/mounter
@@ -56,14 +56,14 @@ set -e
test -n "$alldrives"
# Feed all found drives to wmenu and get user choice.
-chosen="$(echo "$alldrives" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -p "Mount which drive?" -i)"
+chosen="$(echo "$alldrives" | wmenu -p "Mount which drive?" -i)"
# Function for prompting user for a mountpoint.
getmount(){
- mp="$(find /mnt /media /mount /home -maxdepth 1 -type d 2>/dev/null | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -p "Mount this drive where?")"
+ mp="$(find /mnt /media /mount /home -maxdepth 1 -type d 2>/dev/null | wmenu -i -p "Mount this drive where?")"
test -n "$mp"
if [ ! -d "$mp" ]; then
- mkdiryn=$(printf "No\\nYes" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -p "$mp does not exist. Create it?")
+ mkdiryn=$(printf "No\\nYes" | wmenu -i -p "$mp does not exist. Create it?")
[ "$mkdiryn" = "Yes" ] && (mkdir -p "$mp" || sudo -A mkdir -p "$mp")
fi
}
diff --git a/.local/bin/unmounter b/.local/bin/unmounter
@@ -13,7 +13,7 @@ allunmountable="$(echo "$mounteddroids
$mounteddrives" | sed "/^$/d;s/ *$//")"
test -n "$allunmountable"
-chosen="$(echo "$allunmountable" | wmenu -N 2e3440 -n d8dee9 -S eacb8a -s 3b4252 -M eacb8a -m 3b4252 -f "monospace 12" -i -p "Unmount which drive?")"
+chosen="$(echo "$allunmountable" | wmenu -i -p "Unmount which drive?")"
chosen="${chosen%% *}"
test -n "$chosen"