mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
6 lines
254 B
Bash
Executable file
6 lines
254 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
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')
|
|
wofi -W 750 -dmenu -p "Keybinds" <<< "$keybinds"
|