First Steps
Welcome to blxshell! Here’s what to do after your first login.
Keybinds important to know
Section titled “Keybinds important to know”Try these essential shortcuts:
| Action | Keybind | Expected Result |
|---|---|---|
| Terminal | Super + Return | Ghostty(Terminal) opens |
| Launcher | Super + Space | Search overlay appears |
| Settings | Super + S | Settings panel opens |
| Wallpaper | Super + W | Wallpaper changes |
| Lock screen | Super + L | Lockscreen appears |
| Power menu | Super + Escape | Shutdown/reboot/logout menu |
Lockscreen & Power Menu
Section titled “Lockscreen & Power Menu”blxshell includes a built-in lockscreen and power menu controlled via IPC:
# Lock screenqs ipc call lockscreen lock
# Power menuqs ipc call -- powermenu toggleThese are already bound to Super + L and Super + Escape by default.
Verify Colors
Section titled “Verify Colors”Your theme should match your wallpaper:
cat ~/.config/hypr/colors.conf# Should show Material Design 3 colorsConfigure Your Workflow
Section titled “Configure Your Workflow”Set Your Wallpaper
Section titled “Set Your Wallpaper”Add your wallpapers to a directory:
mkdir -p ~/.local/wallpaperscp /path/to/your/images/* ~/.local/wallpapers/Set wallpaper:
- Press
Super + Wto pick random one for you
Customize the Launcher
Section titled “Customize the Launcher”The launcher has multiple modes:
Application Launcher (default)
- Type to search apps
- Arrow keys to navigate
- Enter to launch
Emoji Picker
- type :emoji
- Type to search emoji
- Enter to copy
Clipboard Manager
- type /clip
- Recent clipboard history
- Click to paste
Wallpaper Selector
- Get all your wallpapers you want to
~/.local/wallpaper - type :emoji
- Browse wallpapers visually
- Click to apply
Configure the Bar
Section titled “Configure the Bar”Press Super + S to open settings:
Bar Settings:
- Floating or attached
- Height and radius
- Position (top/bottom)
- Gap from edges
Workspace Settings:
- Number of workspaces
- Dynamic workspaces
- Style (dots/numbers/icons)
Visual Settings:
- Animation speed
- Screen corners
- Wallpaper effects
Customize Appearance
Section titled “Customize Appearance”Change Theme Colors
Section titled “Change Theme Colors”From Wallpaper
Section titled “From Wallpaper”# Generate from any imagematugen image /path/to/wallpaper.png
# Colors auto-apply to:# - Hyprland (borders, etc)# - Quickshell (bar, widgets)# - GTK apps# - TerminalChange Fonts
Section titled “Change Fonts”System-wide font in Quickshell:
{ "fontFamily": "Rubik", // Try: Bitcount Single, JetBrains Mono "fontSize": 14}Adjust Gaps and Borders
Section titled “Adjust Gaps and Borders”Edit ~/.config/hypr/visual/general.conf:
general { gaps_in = 3 # Inner gaps gaps_out = 5 # Outer gaps border_size = 1 # Window border thickness}Set Up Autostart
Section titled “Set Up Autostart”Edit ~/.config/hypr/autostart.conf:
# Already running:exec-once = qs & # Quickshellexec-once = dex -a -s ~/.config/autostart/ &
# Add your apps:# exec-once = firefox &# exec-once = spotify &# exec-once = discord &