summaryrefslogtreecommitdiff
path: root/common/home/waybar/default.nix
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-09-18 18:58:59 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-09-18 18:58:59 +0200
commitebb67feeb46226dff0d384c7800dab4e42a03912 (patch)
treed3e91ce8dace5770792f4633b31ecea93988bc5c /common/home/waybar/default.nix
parent04e96de97689d1b78437df4173ece9857d9c6a61 (diff)
refactor home
Diffstat (limited to 'common/home/waybar/default.nix')
-rw-r--r--common/home/waybar/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/common/home/waybar/default.nix b/common/home/waybar/default.nix
deleted file mode 100644
index 7e59bf2..0000000
--- a/common/home/waybar/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ ... }:
-{
- enable = true;
- systemd.enable = true;
- settings = {
- mainBar = {
- layer = "top";
- position = "left";
- width = 50;
- outputs = "*";
- spacing = 10;
- modules-left = [ "hyprland/workspaces" ];
- modules-center = [ ];
- modules-right = [
- "bluetooth"
- "battery"
- "tray"
- ];
-
- "hyprland/workspaces" = {
- format = "{icon}";
- };
-
- "hyprland/window" = {
- separate-outputs = true;
- };
-
- bluetooth = {
- format = "";
- format-disabled = "󰂲";
- format-off = "󰂲";
- format-on = "";
- format-connected = "󰂱";
- on-click = "blueberry";
- };
-
- tray = {
- icon-size = 15;
- spacing = 10;
- };
- };
- };
- style = ./style.css;
-}