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; +}