mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
281 lines
8.2 KiB
Nix
281 lines
8.2 KiB
Nix
{ pkgs, config, lib, waybarStyle, ... }:
|
|
|
|
lib.mkIf ("${waybarStyle}" == "style2") {
|
|
# Configure & Theme Waybar
|
|
programs.waybar = {
|
|
enable = true;
|
|
package = pkgs.waybar;
|
|
settings = [{
|
|
layer = "top";
|
|
position = "top";
|
|
|
|
modules-left = [ "custom/startmenu" "hyprland/window" ];
|
|
modules-center = [ "network" "pulseaudio" "cpu" "hyprland/workspaces" "memory" "disk" "clock" ];
|
|
modules-right = [ "idle_inhibitor" "custom/themeselector" "custom/notification" "tray" ];
|
|
"hyprland/workspaces" = {
|
|
format = "{icon}";
|
|
format-icons = {
|
|
default = " ";
|
|
active = " ";
|
|
urgent = " ";
|
|
};
|
|
on-scroll-up = "hyprctl dispatch workspace e+1";
|
|
on-scroll-down = "hyprctl dispatch workspace e-1";
|
|
};
|
|
"clock" = {
|
|
format = "{: %I:%M %p}";
|
|
tooltip = false;
|
|
};
|
|
"hyprland/window" = {
|
|
max-length = 25;
|
|
separate-outputs = false;
|
|
};
|
|
"memory" = {
|
|
interval = 5;
|
|
format = " {}%";
|
|
tooltip = true;
|
|
};
|
|
"cpu" = {
|
|
interval = 5;
|
|
format = " {usage:2}%";
|
|
tooltip = true;
|
|
};
|
|
"disk" = {
|
|
format = " {free}";
|
|
tooltip = true;
|
|
};
|
|
"network" = {
|
|
format-icons = ["" "" "" "" ""];
|
|
format-ethernet = ": {bandwidthDownOctets}";
|
|
format-wifi = "{icon} {signalStrength}%";
|
|
format-disconnected = "";
|
|
tooltip = false;
|
|
};
|
|
"tray" = {
|
|
spacing = 12;
|
|
};
|
|
"pulseaudio" = {
|
|
format = "{icon} {volume}% {format_source}";
|
|
format-bluetooth = "{volume}% {icon} {format_source}";
|
|
format-bluetooth-muted = " {icon} {format_source}";
|
|
format-muted = " {format_source}";
|
|
format-source = " {volume}%";
|
|
format-source-muted = "";
|
|
format-icons = {
|
|
headphone = "";
|
|
hands-free = "";
|
|
headset = "";
|
|
phone = "";
|
|
portable = "";
|
|
car = "";
|
|
default = ["" "" ""];
|
|
};
|
|
on-click = "pavucontrol";
|
|
};
|
|
"custom/themeselector" = {
|
|
tooltip = false;
|
|
format = "";
|
|
# exec = "theme-selector";
|
|
on-click = "theme-selector";
|
|
};
|
|
"custom/startmenu" = {
|
|
tooltip = false;
|
|
format = " ";
|
|
# exec = "rofi -show drun";
|
|
on-click = "rofi -show drun";
|
|
};
|
|
"idle_inhibitor" = {
|
|
format = "{icon}";
|
|
format-icons = {
|
|
activated = " ";
|
|
deactivated = " ";
|
|
};
|
|
tooltip = "true";
|
|
};
|
|
"custom/notification" = {
|
|
tooltip = false;
|
|
format = "{icon} {}";
|
|
format-icons = {
|
|
notification = "<span foreground='red'><sup></sup></span>";
|
|
none = "";
|
|
dnd-notification = "<span foreground='red'><sup></sup></span>";
|
|
dnd-none = "";
|
|
inhibited-notification = "<span foreground='red'><sup></sup></span>";
|
|
inhibited-none = "";
|
|
dnd-inhibited-notification = "<span foreground='red'><sup></sup></span>";
|
|
dnd-inhibited-none = "";
|
|
};
|
|
return-type = "json";
|
|
exec-if = "which swaync-client";
|
|
exec = "swaync-client -swb";
|
|
on-click = "task-waybar";
|
|
escape = true;
|
|
};
|
|
"battery" = {
|
|
states = {
|
|
warning = 30;
|
|
critical = 15;
|
|
};
|
|
format = "{icon} {capacity}%";
|
|
format-charging = " {capacity}%";
|
|
format-plugged = " {capacity}%";
|
|
format-icons = ["" "" "" "" "" "" "" "" "" ""];
|
|
on-click = "";
|
|
tooltip = false;
|
|
};
|
|
}];
|
|
style = ''
|
|
* {
|
|
font-size: 16px;
|
|
font-family: JetBrainsMono Nerd Font, Font Awesome, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
window#waybar {
|
|
background-color: #${config.colorScheme.colors.base00};
|
|
border-bottom: 1px solid #${config.colorScheme.colors.base00};
|
|
border-radius: 0px;
|
|
color: #${config.colorScheme.colors.base0F};
|
|
}
|
|
#workspaces {
|
|
background: #${config.colorScheme.colors.base01};
|
|
margin: 4px;
|
|
padding: 0px 1px;
|
|
border-radius: 10px;
|
|
border: 0px;
|
|
font-style: normal;
|
|
color: #${config.colorScheme.colors.base00};
|
|
}
|
|
#workspaces button {
|
|
padding: 0px 5px;
|
|
margin: 4px 3px;
|
|
border-radius: 10px;
|
|
border: 0px;
|
|
color: #${config.colorScheme.colors.base00};
|
|
background: linear-gradient(45deg, #${config.colorScheme.colors.base06}, #${config.colorScheme.colors.base0E});
|
|
opacity: 0.5;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
#workspaces button.active {
|
|
color: #${config.colorScheme.colors.base00};
|
|
background: linear-gradient(45deg, #${config.colorScheme.colors.base06}, #${config.colorScheme.colors.base0E});
|
|
border-radius: 10px;
|
|
min-width: 40px;
|
|
transition: all 0.3s ease-in-out;
|
|
opacity: 1.0;
|
|
}
|
|
#workspaces button:hover {
|
|
color: #${config.colorScheme.colors.base00};
|
|
background: linear-gradient(45deg, #${config.colorScheme.colors.base06}, #${config.colorScheme.colors.base0E});
|
|
border-radius: 10px;
|
|
opacity: 0.8;
|
|
}
|
|
tooltip {
|
|
background: #${config.colorScheme.colors.base00};
|
|
border: 1px solid #${config.colorScheme.colors.base04};
|
|
border-radius: 10px;
|
|
}
|
|
tooltip label {
|
|
color: #${config.colorScheme.colors.base07};
|
|
}
|
|
#window {
|
|
color: #${config.colorScheme.colors.base05};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#memory {
|
|
color: #${config.colorScheme.colors.base0F};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#clock {
|
|
color: #${config.colorScheme.colors.base0B};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#idle_inhibitor {
|
|
color: #${config.colorScheme.colors.base0A};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#cpu {
|
|
color: #${config.colorScheme.colors.base07};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#disk {
|
|
color: #${config.colorScheme.colors.base03};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#battery {
|
|
color: #${config.colorScheme.colors.base08};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#network {
|
|
color: #${config.colorScheme.colors.base09};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#tray {
|
|
color: #${config.colorScheme.colors.base05};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#pulseaudio {
|
|
color: #${config.colorScheme.colors.base0D};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#custom-notification {
|
|
color: #${config.colorScheme.colors.base0C};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#custom-themeselector {
|
|
color: #${config.colorScheme.colors.base0D};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px;
|
|
}
|
|
#custom-startmenu {
|
|
color: #${config.colorScheme.colors.base03};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px 2px 13px;
|
|
}
|
|
#idle_inhibitor {
|
|
color: #${config.colorScheme.colors.base09};
|
|
background: #${config.colorScheme.colors.base01};
|
|
border-radius: 10px;
|
|
margin: 4px;
|
|
padding: 2px 10px 2px 13px;
|
|
}
|
|
'';
|
|
};
|
|
}
|