summaryrefslogtreecommitdiff
path: root/nixos/config/waybar/config.jsonc
diff options
context:
space:
mode:
authorNantha Sorubakanthan <nantha@mielota.com>2026-06-08 13:08:37 +0200
committerNantha Sorubakanthan <nantha@mielota.com>2026-06-08 19:58:30 +0200
commit770c0cfc08bd73ada6e7754473d69fe9e2d17dc2 (patch)
tree3c1da3053ed03bbdc2e8c4e4fbf26947b7ef97ae /nixos/config/waybar/config.jsonc
parent218a690b155d9e7d47bb2e7487a150c16c8f482f (diff)
rewrite config in nix
Diffstat (limited to 'nixos/config/waybar/config.jsonc')
-rw-r--r--nixos/config/waybar/config.jsonc78
1 files changed, 0 insertions, 78 deletions
diff --git a/nixos/config/waybar/config.jsonc b/nixos/config/waybar/config.jsonc
deleted file mode 100644
index 0ad4860..0000000
--- a/nixos/config/waybar/config.jsonc
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "layer": "top",
- "position": "top",
- "height": 30,
- "spacing": 8,
-
- "modules-left": [
- "hyprland/workspaces",
- "hyprland/window"
- ],
-
- "modules-center": [
- ],
-
- "modules-right": [
- "tray",
- "network",
- "pulseaudio",
- "battery",
- "cpu",
- "memory",
- "disk",
- "clock"
- ],
-
- "pulseaudio": {
- "format": "VOL: {volume}%",
- "format-muted": "MUTED",
- "on-click": "sh ~/.local/bin/unblock-pipewire.sh"
- },
-
- "hyprland/workspaces": {
- "format": "{name}",
- "persistent-workspaces": {
- "*" : 10
- }
- },
-
- "hyprland/window" : {
- "max-length": 40,
- "seperate-outputs": false
- },
-
- "tray": {
- "spacing": 10
- },
- "clock": {
- "format": "{:%H:%M:%S}",
- "format-alt": "{:%Y-%m-%d}",
- "tooltip": false,
- "interval": 1
- },
- "cpu": {
- "format": "CPU: {usage}%",
- "tooltip": false
- },
- "memory": {
- "format": "RAM: {used}GiB"
- },
- "disk": {
- "interval": 60,
- "path": "/",
- "format": "ROOT: {free}"
- },
- "battery": {
- "states": {
- "good": 95,
- "warning": 30,
- "critical": 15
- },
- "format": "BAT: {capacity}%",
- "format-plugged": "BAT!: {capacity}%"
- },
- "network": {
- "format": "ONLINE",
- "format-disconnected": "OFFLINE"
- }
-}