Files
nocode 2c5f08330a refactor(fws-keys): make keyboard shortcuts tool universal for hyprland and i3
Rename fws-hypr-keys to fws-keys and extend it to support both Hyprland and i3 desktop environments. The tool now detects the session type and uses appropriate methods:

- Hyprland: queries hyprctl binds for real loaded bindings (wofi dmenu)
- i3: parses ~/.config/i3/config with variable resolution (rofi dmenu)

Update all references in configs and templates. Add VM detection warning in fws-vr-setup to prevent VR attempts in virtual machines where GPU/USB access is unavailable.

Add ttf-liberation font dependency for Steam UI stability on minimal installations and improve error guidance for Steam crashes.
2026-07-04 03:59:09 +02:00

41 lines
824 B
CSS

/* FWS — style du panneau « Raccourcis clavier » (fws-keys).
Même palette que le menu wofi, mais police MONOSPACE : les colonnes
combinaison/description sont alignées par des espaces. */
window {
background-color: rgba(30, 30, 46, 0.97);
border: 2px solid #89b4fa;
border-radius: 14px;
font-family: "Noto Sans Mono", monospace;
font-size: 13px;
}
#input {
background-color: #313244;
color: #cdd6f4;
border: none;
border-radius: 10px;
margin: 12px;
padding: 8px 12px;
font-family: "Noto Sans", sans-serif;
}
#input image { color: #89b4fa; }
#inner-box {
margin: 0 8px 8px 8px;
}
#entry {
padding: 5px 10px;
border-radius: 8px;
color: #cdd6f4;
}
#entry:selected {
background-color: #313244;
color: #89b4fa;
}
#text { color: inherit; }