add basic waybar setup
This commit is contained in:
parent
3ac822bdf5
commit
2ee20a2698
2 changed files with 76 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
./gtk.nix
|
||||
./mako.nix
|
||||
./wofi.nix
|
||||
./waybar.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
75
home/common/desktop/waybar.nix
Normal file
75
home/common/desktop/waybar.nix
Normal file
|
@ -0,0 +1,75 @@
|
|||
{
|
||||
config, ...
|
||||
}: {
|
||||
systemd.user.services.waybar = {
|
||||
Unit.StartLimitBurst = 30;
|
||||
};
|
||||
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
settings = {
|
||||
primary = {
|
||||
# exclusive = false;
|
||||
# passthrough = false;
|
||||
height = 40;
|
||||
position = "top";
|
||||
margin-top = 6;
|
||||
margin-left = 6;
|
||||
margin-right = 6;
|
||||
modules-left = [
|
||||
"hyprland/workspaces"
|
||||
"hyprland/submap"
|
||||
];
|
||||
|
||||
modules-center = [
|
||||
"cpu"
|
||||
"memory"
|
||||
"clock"
|
||||
];
|
||||
|
||||
modules-right = [
|
||||
"tray"
|
||||
"network"
|
||||
"pulseaudio"
|
||||
"battery"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
style = let
|
||||
inherit (config.lib.stylix.colors) withHashtag;
|
||||
in ''
|
||||
* {
|
||||
font-family: ${config.fontProfiles.regular.family}, ${config.fontProfiles.monospace.family};
|
||||
font-size: 12pt;
|
||||
padding: 0;
|
||||
margin: 0 0.4em;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
padding: 0;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
margin-left: -0.65em;
|
||||
}
|
||||
.modules-right {
|
||||
margin-right: -0.65em;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding-left: 0.4em;
|
||||
padding-right: 0.4em;
|
||||
margin-top: 0.15em;
|
||||
margin-bottom: 0.15em;
|
||||
}
|
||||
|
||||
#workspaces button.active,
|
||||
#workspaces button.focused {
|
||||
background-color: ${withHashtag.base08};
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue