From ad7e4d070449656d7e142a2c29c844c8f5ea72dd Mon Sep 17 00:00:00 2001 From: lulusilly Date: Mon, 1 Sep 2025 10:44:42 -0400 Subject: [PATCH] Facilitating environment for singular home.nix file --- .config/waybar/config | 16 ++++++++++++++++ .config/waybar/style.css | 12 ++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .config/waybar/config create mode 100644 .config/waybar/style.css diff --git a/.config/waybar/config b/.config/waybar/config new file mode 100644 index 0000000..62799a2 --- /dev/null +++ b/.config/waybar/config @@ -0,0 +1,16 @@ +[ + { + "layer": "top", + "modules-center": [ + "clock" + ], + "modules-left": [ + "hyprland/workspaces", + "hyprland/window" + ], + "modules-right": [ + "battery" + ], + "position": "top" + } +] diff --git a/.config/waybar/style.css b/.config/waybar/style.css new file mode 100644 index 0000000..1757498 --- /dev/null +++ b/.config/waybar/style.css @@ -0,0 +1,12 @@ +* { + font-family: "JetBrainsMono Nerd Font", monospace; + font-size: 13px; +} + +#window { + /* Example: style the window module */ + background-color: #333333; + color: #fca944; + border-radius: 8px; + padding: 0 10px; +}