#!/bin/bash # Denne kommando finder alle linjer der starter med 'bind =', # fjerner unødvendige tegn, og viser dem i wofi. grep -oP '^bind\s*=\s*.*' ~/.config/hypr/hyprland.conf | \ sed -e 's/bind = //' -e 's/SUPER/WIN/' | \ wofi --show dmenu -p "Hyprland Keybindings"