summaryrefslogtreecommitdiff
path: root/themes/dwm
diff options
context:
space:
mode:
authorBlake Romero <blake@developercraft.com>2026-03-26 00:22:34 +0000
committerBlake Romero <blake@developercraft.com>2026-03-26 00:22:34 +0000
commit1e3e4f13f12ff7e269cbbb5eb2993460cb799f3f (patch)
treedbbc050436ada84f42517781718da7431c78c702 /themes/dwm
parent26cb9e3fb4adeab29ca028966a0ae6bcc27881a5 (diff)
Restructured files
Diffstat (limited to 'themes/dwm')
-rw-r--r--themes/dwm/config.jsonc19
-rw-r--r--themes/dwm/style.css52
2 files changed, 71 insertions, 0 deletions
diff --git a/themes/dwm/config.jsonc b/themes/dwm/config.jsonc
new file mode 100644
index 0000000..961196a
--- /dev/null
+++ b/themes/dwm/config.jsonc
@@ -0,0 +1,19 @@
+{
+ "output": ["DP-1", "eDP-1"],
+ "position": "top",
+ "reload_style_on_change": true,
+ "include": [ "~/.config/waybar/modules/modules/modules.jsonc" ],
+ "modules-left": [ "sway/workspaces#full" ],
+ "modules-right": [
+ "cpu",
+ "memory",
+ "backlight",
+ "battery",
+ "bluetooth",
+ "network",
+ "wireplumber",
+ "clock#calendar",
+ "clock",
+ "tray"
+ ]
+}
diff --git a/themes/dwm/style.css b/themes/dwm/style.css
new file mode 100644
index 0000000..dc6f08c
--- /dev/null
+++ b/themes/dwm/style.css
@@ -0,0 +1,52 @@
+/* GTK Colours */
+@define-color blu #224488;
+@define-color gry #6e6e6e;
+@define-color blk #101010;
+@define-color wht #b9c4d9;
+
+/* GLOBAL */
+* {
+ font-family: "Terminess Nerd Font", monospace;
+ font-size: 10pt;
+ padding: 0;
+ margin: 0;
+ box-shadow: none;
+}
+
+label {
+ padding: 0 10px;
+}
+
+label.module {
+ background: @blk;
+ color: @gry;
+}
+
+button {
+ border: none;
+ border-radius: 0;
+}
+
+/* BAR */
+#waybar {
+ background: @blu;
+}
+
+/* WORKSPACE */
+/* active */
+#workspaces button {
+ background: @blk;
+ color: @wht;
+}
+/* empty */
+#workspaces button.empty {
+ color: @gry;
+ background: @blk;
+ border: none;
+}
+/* focused */
+#workspaces button.focused {
+ background: @blu;
+ color: @wht;
+}
+