New users get a one-time welcome window on first boot (self-gating marker, skipped for the live/installer user) and a keybind cheatsheet on SUPER+/. Also bind BOS Settings to SUPER+, (it had no launcher bind). Both popups are floated/centred via window rules. Addresses the onboarding/ discoverability gap from external review. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 lines
261 B
Bash
4 lines
261 B
Bash
#!/bin/bash
|
|
# Show the BOS keybind cheatsheet in a floating terminal (bound to SUPER+/).
|
|
# The bos-keybinds window class is floated/centred by a Hyprland window rule.
|
|
exec kitty --class bos-keybinds --title "BOS Keybinds" -- less -R /usr/share/bos/keybinds.txt
|