2025-03-03 21:03:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-03-04 11:58:11 +00:00
|
|
|
FILE="$HOME/.config/suckless_desktop/win_r.txt"
|
2025-03-03 21:03:22 +00:00
|
|
|
if [ ! -f "$FILE" ]; then
|
|
|
|
echo "File not found: $FILE" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
sed 's/|/'$'\t''/' "$FILE" | dmenu | {
|
|
|
|
IFS=$'\t' read -r col1 col2
|
|
|
|
[ -z "$col2" ] && exit 0
|
|
|
|
eval "$col2" 2>/dev/null || :
|
|
|
|
}
|