5 lines
226 B
Bash
Executable file
5 lines
226 B
Bash
Executable file
config_file=~/.config/hypr/hyprland.conf
|
|
keybinds=$(grep -oP '(?<=bind=).*' $config_file)
|
|
keybinds=$(echo "$keybinds" | sed 's/,\([^,]*\)$/ = \1/' | sed 's/, exec//g' | sed 's/^,//g')
|
|
fuzzel --width 75 --dmenu <<< "$keybinds"
|