5 lines
245 B
Bash
Executable File
5 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
config_file=~/.config/hypr/hl-keybindings.conf
|
|
keybinds=$(grep -oP '(?<=bind = ).*' $config_file)
|
|
keybinds=$(echo "$keybinds" | sed 's/,\([^,]*\)$/ = \1/' | sed 's/, exec//g' | sed 's/^,//g')
|
|
rofi -dmenu -p "Keybinds" <<< "$keybinds" |