This commit is contained in:
specCon18 2023-08-31 01:08:30 -04:00
parent 6034a5ea93
commit 9d1fcfadc1
3 changed files with 5 additions and 18 deletions

View file

@ -90,6 +90,7 @@
./modules/home-manager/starship.nix ./modules/home-manager/starship.nix
./modules/home-manager/dconf-settings.nix ./modules/home-manager/dconf-settings.nix
./modules/home-manager/syncthing.nix ./modules/home-manager/syncthing.nix
./modules/home-manager/waybar.nix
]; #extra modules to be loaded by home-manager ]; #extra modules to be loaded by home-manager
}; };
}; };

View file

@ -31,7 +31,7 @@
bind = $mainMod SHIFT, 8, movetoworkspace, 8 bind = $mainMod SHIFT, 8, movetoworkspace, 8
bind = $mainMod SHIFT, 9, movetoworkspace, 9 bind = $mainMod SHIFT, 9, movetoworkspace, 9
bind = $mainMod SHIFT, 0, movetoworkspace, 10 bind = $mainMod SHIFT, 0, movetoworkspace, 10
exec-once=waybar exec-once=systemctl --user restart waybar.service
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
exec-once=mako exec-once=mako
exec-once = swww init exec-once = swww init

View file

@ -5,7 +5,7 @@
package = pkgs.waybar; package = pkgs.waybar;
systemd = { systemd = {
enable = true; enable = true;
target = "hyprland-session.target" target = "hyprland-session.target";
}; };
settings = { settings = {
main_bar = { main_bar = {
@ -26,12 +26,6 @@
"pulseaudio" "pulseaudio"
"battery" "battery"
]; ];
river/tags = {
num-tags = 9;
};
river/mode = {
format = "Mode: {}";
};
clock = { clock = {
format = "{:%H:%M}"; format = "{:%H:%M}";
format-alt = "{:%Y-%m-%d}"; format-alt = "{:%Y-%m-%d}";
@ -86,7 +80,7 @@
scroll-steps = 10; scroll-steps = 10;
format-icons = { format-icons = {
headphone = ""; headphone = "";
"hands-free" = ""; hands-free = "";
headset = ""; headset = "";
phone = ""; phone = "";
portable = ""; portable = "";
@ -103,11 +97,6 @@
icon-size = 20; icon-size = 20;
spacing = 10; spacing = 10;
}; };
custom/joljol = {
exec = "joljol";
format = "{}";
update-interval = 100;
};
}; };
style = '' style = ''
@ -185,10 +174,6 @@
color: #ebbcba; color: #ebbcba;
} }
#custom-joljol {
color: #ebbcba;
margin: 10px 10px 0px 10px;
}
#battery { #battery {
background: #31748f; background: #31748f;
@ -320,4 +305,5 @@
} }
''; '';
}; };
};
} }