mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
- Switch muted glyph from U+F6A9 to U+F026 (volume-off), which is present in every Nerd Font variant including LiterationMono. - Use exec for waybar instead of exec_always, so reloading sway no longer spawns a second bar. - Move the clock to the right of the tray and drop the leading calendar glyph from its format. - Lock screen now uses maxresdefault.jpg, matching the i3 lockscreen; the asset is copied into sway/wallpapers/ so the sway profile stays self-contained. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
463 B
Bash
Executable File
18 lines
463 B
Bash
Executable File
#!/bin/sh
|
|
|
|
exec swaylock \
|
|
--image "$HOME/.config/sway/wallpapers/maxresdefault.jpg" \
|
|
--scaling fill \
|
|
--indicator-idle-visible \
|
|
--ring-color 2f4058 \
|
|
--inside-color 1f1f28 \
|
|
--line-color 00000000 \
|
|
--separator-color 3a3a46 \
|
|
--key-hl-color 6daeea \
|
|
--bs-hl-color c7162b \
|
|
--ring-ver-color 4a90d9 \
|
|
--inside-ver-color 1f1f28 \
|
|
--ring-wrong-color c7162b \
|
|
--inside-wrong-color 1f1f28 \
|
|
--text-color d0d0d0
|