From 52a4303cdd1cbd474d4ff5ee833bb705b8d099df Mon Sep 17 00:00:00 2001 From: Don Williams Date: Fri, 28 Aug 2026 20:53:38 -0400 Subject: Added theming for nwg-dock-hyprland Signed-off-by: Don Williams On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Keybinds.conf modified: config/hypr/configs/system_keybinds.lua new file: config/hypr/scripts/Dock.sh modified: config/hypr/scripts/KeyHints.sh modified: config/hypr/scripts/Refresh.sh new file: config/nwg-dock-hyprland/style.css new file: config/nwg-dock-hyprland/wallust/colors-wallust.css new file: config/wallust/templates/colors-nwg-dock.css modified: config/wallust/wallust-v4.toml modified: config/wallust/wallust.toml modified: docs/Keybinds.md modified: scripts/lib_copy.sh --- config/nwg-dock-hyprland/style.css | 43 ++++++++++++++++++++++ .../nwg-dock-hyprland/wallust/colors-wallust.css | 12 ++++++ 2 files changed, 55 insertions(+) create mode 100644 config/nwg-dock-hyprland/style.css create mode 100644 config/nwg-dock-hyprland/wallust/colors-wallust.css (limited to 'config/nwg-dock-hyprland') diff --git a/config/nwg-dock-hyprland/style.css b/config/nwg-dock-hyprland/style.css new file mode 100644 index 00000000..0bf4f337 --- /dev/null +++ b/config/nwg-dock-hyprland/style.css @@ -0,0 +1,43 @@ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ +/* nwg-dock-hyprland style - themed with system / wallust */ + +@import 'wallust/colors-wallust.css'; + +window { + background: @background; + border-radius: 10px; + border: 1px solid @border; +} + +#box { + padding: 6px 10px; +} + +#active { + border-bottom: 2px solid @button-active; +} + +button, image { + background: none; + border-style: none; + box-shadow: none; + color: @foreground; +} + +button { + padding: 4px; + margin-left: 4px; + margin-right: 4px; + color: @foreground; + border-radius: 10px; + transition: all 0.2s ease-in-out; +} + +button:hover { + background-color: @hovered; + border-radius: 10px; +} + +button:focus { + box-shadow: none; +} diff --git a/config/nwg-dock-hyprland/wallust/colors-wallust.css b/config/nwg-dock-hyprland/wallust/colors-wallust.css new file mode 100644 index 00000000..01bbb39b --- /dev/null +++ b/config/nwg-dock-hyprland/wallust/colors-wallust.css @@ -0,0 +1,12 @@ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ +/* Default fallback wallust template for nwg-dock-hyprland */ + +@define-color foreground #cdd6f4; +@define-color background rgba(24, 24, 37, 0.85); +@define-color background-alt #1e1e2e; +@define-color cursor #f5e0dc; +@define-color hovered #89b4fa; +@define-color button-background #89b4fa; +@define-color button-active #a6e3a1; +@define-color border #89b4fa; +@define-color urgent #f38ba8; -- cgit v1.2.3