diff --git a/user/progs/i3status-rust/default.nix b/user/progs/i3status-rust/default.nix index e62e97a..b449152 100644 --- a/user/progs/i3status-rust/default.nix +++ b/user/progs/i3status-rust/default.nix @@ -4,41 +4,41 @@ programs.i3status-rust = { enable = true; bars = { - main = { - theme = "nord-dark"; - icons = "awesome"; - blocks = [ - { - block = "time"; - } - { - block = "battery"; - allow_missing = true; - hide_missing = true; - } - { - block = "networkmanager"; - on_click = "alacritty -e nmtui"; - primary_only = true; - ap_format = "{ssid}"; - device_format = "{icon}{ap}"; - } - { - block = "keyboard_layout"; - } - { - block = "notify"; - } - { - block = "music"; - player = "spotify"; - buttons = [ "prev" "play" "next" ]; - } - { - block = "sound"; - } - ]; - }; + main = { + theme = "dracula"; + icons = "awesome"; + blocks = [ + { + block = "time"; + } + { + block = "battery"; + allow_missing = true; + hide_missing = true; + } + { + block = "networkmanager"; + on_click = "alacritty -e nmtui"; + primary_only = true; + ap_format = "{ssid}"; + device_format = "{icon}{ap}"; + } + { + block = "keyboard_layout"; + } + { + block = "notify"; + } + { + block = "music"; + player = "spotify"; + buttons = [ "prev" "play" "next" ]; + } + { + block = "sound"; + } + ]; + }; }; }; }