From a330f130b8fdd94fea421fad1b3d96270c631e80 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 1 Oct 2025 23:10:25 +0100 Subject: Add waybar power menu & modules config file --- dot-config/waybar/demo-style.css | 44 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 dot-config/waybar/demo-style.css (limited to 'dot-config/waybar/demo-style.css') diff --git a/dot-config/waybar/demo-style.css b/dot-config/waybar/demo-style.css new file mode 100644 index 0000000..a63c23a --- /dev/null +++ b/dot-config/waybar/demo-style.css @@ -0,0 +1,44 @@ +/* GTK Colours */ +@define-color fg #eee; +@define-color mg #444; +@define-color bg #000; + +* { + font-family: HackNerdFont, monospace; + font-size: 12px; + + /* font-weight: normal; */ + /* box-shadow: none; */ + + transition-property: background; + transition-duration: .5s; +} + +button { + padding: 0; +} + +label { + padding: 0 8px; +} + +#waybar { + background: transparent; +} + +#workspaces { + padding: 0; +} + +#custom-menu { + padding:0 14px 0 10px; +} + +#custom-menu:hover { + background: @fg; + color: @bg; +} + +#tray { + padding: 0 8px; +} -- cgit