feat: add waybar

This commit is contained in:
Mohammad Rafiq 2025-04-17 22:02:37 +08:00
parent 8651f93403
commit a753ffeec1
No known key found for this signature in database
3 changed files with 12 additions and 1 deletions

View file

@ -16,6 +16,7 @@ with pkgs;
./hardware/audio.nix
./hardware/bluetooth.nix
./hardware/udev.nix
./programs/waybar.nix
./hardware/vr.nix
];

View file

@ -43,11 +43,15 @@
"$clipboard" = "$terminal --class clipse -e clipse";
"$multiplexer" = "$terminal -e zellij";
# Programs to run at startup
exec-once = [
"uwsm app -- hyprlock"
"uwsm app -- clipse -listen"
"uwsm app -- hyprcloser"
"uwsm app -- waybar"
];
# Programs to run at startup
exec = [
"uwsm app -- hyprshade auto"
];

View file

@ -0,0 +1,6 @@
{
home-manager.users.rafiq.programs.waybar = {
enable = true;
settings = [ ];
};
}