370 lines
11 KiB
Nix
370 lines
11 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
cfg = config.modules.waybar;
|
|
in
|
|
{
|
|
options.modules.waybar = {
|
|
enable = lib.mkEnableOption "enable waybar";
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = pkgs.waybar;
|
|
};
|
|
modules = {
|
|
left = lib.mkOption {
|
|
type = with lib.types; listOf (enum [ ]);
|
|
default = [ ];
|
|
};
|
|
center = lib.mkOption {
|
|
type = with lib.types; listOf (enum [ ]);
|
|
default = [ ];
|
|
};
|
|
right = lib.mkOption {
|
|
type = with lib.types; listOf (enum [ ]);
|
|
default = [ ];
|
|
};
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./cpu.nix
|
|
./vpn.nix
|
|
./tray.nix
|
|
./clock.nix
|
|
./power.nix
|
|
./memory.nix
|
|
./window.nix
|
|
./network.nix
|
|
./workspaces.nix
|
|
./temperature.nix
|
|
./wireplumber.nix
|
|
];
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
modules.waybar = import ./createmodules.nix cfg.modules;
|
|
home.packages = with pkgs; [
|
|
font-awesome
|
|
];
|
|
programs.waybar = {
|
|
enable = true;
|
|
package = cfg.package;
|
|
settings = {
|
|
mainBar = {
|
|
layer = "top";
|
|
position = "top";
|
|
height = 39;
|
|
margin-top = 8;
|
|
margin-left = 10;
|
|
margin-right = 10;
|
|
output = [
|
|
"DP-3"
|
|
"DP-2"
|
|
];
|
|
modules-left = cfg.modules.left;
|
|
modules-center = cfg.modules.center;
|
|
modules-right = cfg.modules.right;
|
|
};
|
|
};
|
|
style = ''
|
|
* {
|
|
/* `otf-font-awesome` is required to be installed for icons */
|
|
font-family: "Maple Mono NF";
|
|
font-size: 14px;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: transparent;
|
|
border-radius: 999px;
|
|
color: #${config.colorScheme.palette.text};
|
|
transition-property: background-color;
|
|
transition-duration: .5s;
|
|
}
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
window#waybar.termite {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window#waybar.chromium {
|
|
background-color: transparent;
|
|
}
|
|
|
|
button {
|
|
/* Use box-shadow instead of border so the text isn't offset */
|
|
box-shadow: inset 0 -1px transparent;
|
|
/* Avoid rounded borders under each button name */
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
/* https://githbackground: #000000ub.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
button:hover {
|
|
background: inherit;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
#workspaces button {
|
|
transition: all 0.2s;
|
|
padding: 3px 3px 3px 5px;
|
|
margin: 3px;
|
|
min-width: 15px;
|
|
min-height: 15px;
|
|
background-color: transparent;
|
|
color: #${config.colorScheme.palette.textMuted};
|
|
border-radius: 999px;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background-color: #${config.colorScheme.palette.highlight};
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #${config.colorScheme.palette.text};
|
|
font-weight: bold;
|
|
background-color: #${config.colorScheme.palette.highlight};
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #${config.colorScheme.palette.danger};
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#wireplumber,
|
|
#custom-media,
|
|
#mode,
|
|
#idle_inhibitor,
|
|
#custom-vpn,
|
|
#scratchpad,
|
|
#tray,
|
|
#custom-updates,
|
|
#custom-poweroff,
|
|
#mpd {
|
|
color: #${config.colorScheme.palette.textMuted};
|
|
margin: 0px 2px;
|
|
padding: 0 15px;
|
|
|
|
border-radius: 999px;
|
|
box-shadow: inset 0 0 0 1px #${config.colorScheme.palette.backgroundMuted};
|
|
}
|
|
|
|
.modules-right > widget:last-child > #battery {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
#tray {
|
|
padding: 4px 10px;
|
|
border-radius: 999px 999px 999px 999px;
|
|
box-shadow: inset 0px 0px 0 1px #${config.colorScheme.palette.backgroundMuted};
|
|
}
|
|
|
|
#window {
|
|
margin-left: 6px;
|
|
color: #${config.colorScheme.palette.textMuted};
|
|
}
|
|
|
|
#workspaces {
|
|
margin: 0 4px;
|
|
padding: 4px 4px;
|
|
border-radius: 999px;
|
|
box-shadow: inset 0px 0px 0 1px #${config.colorScheme.palette.backgroundMuted};
|
|
}
|
|
|
|
#cpu {
|
|
border-radius: 999px 0px 0px 999px;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
#memory {
|
|
border-radius: 0px;
|
|
padding: 0 10px;
|
|
margin: 0px;
|
|
box-shadow: inset 0px 2px 0 -1px #${config.colorScheme.palette.backgroundMuted},
|
|
inset 0px -2px 0 -1px #${config.colorScheme.palette.backgroundMuted};
|
|
}
|
|
|
|
#clock {
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
#battery {
|
|
min-width: 50px;
|
|
border-radius: 999px;
|
|
box-shadow: inset 0 0 0 1px #${config.colorScheme.palette.backgroundMuted};
|
|
background-color: #${config.colorScheme.palette.backgroundMuted};
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
#battery.charging, #battery.plugged {
|
|
color: #${config.colorScheme.palette.succes};
|
|
background-color: transparent;
|
|
animation: batteryCharging 1.2s linear 0s infinite normal forwards,
|
|
}
|
|
#battery.full {
|
|
animation: batteryFull 7.0s linear 0s infinite normal forwards;
|
|
}
|
|
#battery.critical:not(.charging) {
|
|
background-color: #${config.colorScheme.palette.background};
|
|
animation: batteryCritical 1.2s linear 0s infinite normal forwards;
|
|
}
|
|
|
|
#network {
|
|
|
|
}
|
|
|
|
#network.disconnected,
|
|
#pulseaudio.muted {
|
|
transition: all 0.2s;
|
|
color: #${config.colorScheme.palette.backgroundMuted};
|
|
}
|
|
|
|
.custom-spotify {
|
|
color: #${config.colorScheme.palette.spotifyGreen};
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#temperature {
|
|
margin-left: 0px;
|
|
border-radius: 0px 999px 999px 0px;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: transparent;
|
|
color: #${config.colorScheme.palette.danger};
|
|
}
|
|
|
|
#tray {
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
#tray > .passive {
|
|
-gtk-icon-effect: dim;
|
|
}
|
|
|
|
#tray > .needs-attention {
|
|
background-color: #${config.colorScheme.palette.danger};
|
|
border-radius: 999px;
|
|
}
|
|
|
|
#scratchpad {
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
#scratchpad.empty {
|
|
background-color: transparent;
|
|
}
|
|
|
|
#custom-updates {
|
|
box-shadow: inset 0 0 0 1px #${config.colorScheme.palette.backgroundMuted};
|
|
color: #${config.colorScheme.palette.textMuted};
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
#custom-updates.pending {
|
|
box-shadow: inset 0 0 0 2px #${config.colorScheme.palette.highlight};
|
|
color: #${config.colorScheme.palette.highlight};
|
|
font-weight: bold;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
tooltip {
|
|
background-color: #${config.colorScheme.palette.background};
|
|
border: 1px solid;
|
|
border-color: #${config.colorScheme.palette.border};
|
|
border-radius: 10px;
|
|
color: #${config.colorScheme.palette.text};
|
|
}
|
|
tooltip label {
|
|
padding: 5px;
|
|
}
|
|
|
|
/* Keyframes ---------------------------------------------------------------- */
|
|
|
|
@keyframes batteryCritical {
|
|
0% {
|
|
box-shadow: inset 0px 20px 8px -16px #${config.colorScheme.palette.danger},
|
|
inset 0px -20px 8px -16px #${config.colorScheme.palette.danger};
|
|
color: #${config.colorScheme.palette.danger};
|
|
}
|
|
50% {
|
|
box-shadow: inset 0px 12px 8px -16px #${config.colorScheme.palette.danger},
|
|
inset 0px -12px 8px -16px #${config.colorScheme.palette.danger};
|
|
color: #${config.colorScheme.palette.textMuted};
|
|
}
|
|
100% {
|
|
box-shadow: inset 0px 20px 8px -16px #${config.colorScheme.palette.danger},
|
|
inset 0px -20px 8px -16px #${config.colorScheme.palette.danger};
|
|
color: #${config.colorScheme.palette.danger};
|
|
}
|
|
}
|
|
|
|
@keyframes batteryCharging {
|
|
0% {
|
|
box-shadow: inset 0px 0px 8px 0px #${config.colorScheme.palette.info},
|
|
inset 0px 20px 8px -18px #${config.colorScheme.palette.ok},
|
|
inset 0px -20px 8px -18px #${config.colorScheme.palette.ok};
|
|
}
|
|
25% {
|
|
box-shadow: inset 0px 0px 8px 0px #${config.colorScheme.palette.info},
|
|
inset 14px 14px 8px -18px #${config.colorScheme.palette.ok},
|
|
inset -14px -14px 8px -18px #${config.colorScheme.palette.ok};
|
|
}
|
|
50% {
|
|
box-shadow: inset 0px 0px 8px 0px #${config.colorScheme.palette.info},
|
|
inset 20px 0px 8px -18px #${config.colorScheme.palette.ok},
|
|
inset -20px 0px 8px -18px #${config.colorScheme.palette.ok};
|
|
}
|
|
75% {
|
|
box-shadow: inset 0px 0px 8px 0px #${config.colorScheme.palette.info},
|
|
inset 14px -14px 8px -18px #${config.colorScheme.palette.ok},
|
|
inset -14px 14px 8px -18px #${config.colorScheme.palette.ok};
|
|
}
|
|
100% {
|
|
box-shadow: inset 0px 0px 8px 0px #${config.colorScheme.palette.info},
|
|
inset 0px -20px 8px -18px #${config.colorScheme.palette.ok},
|
|
inset 0px 20px 8px -18px #${config.colorScheme.palette.ok};
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@keyframes batteryFull {
|
|
0% {
|
|
box-shadow: inset 0px 20px 8px -16px #${config.colorScheme.palette.warn},
|
|
inset 0px -20px 8px -16px #${config.colorScheme.palette.warn};
|
|
color: #${config.colorScheme.palette.warn};
|
|
}
|
|
25% {
|
|
box-shadow: inset 0px 19px 8px -16px #${config.colorScheme.palette.warn},
|
|
inset 0px -19px 8px -16px #${config.colorScheme.palette.warn};
|
|
color: #${config.colorScheme.palette.warn};
|
|
}
|
|
50% {
|
|
box-shadow: inset 0px 15px 8px -16px #${config.colorScheme.palette.warn},
|
|
inset 0px -15px 8px -16px #${config.colorScheme.palette.warn};
|
|
color: #${config.colorScheme.palette.warn};
|
|
}
|
|
75% {
|
|
box-shadow: inset 0px 19px 8px -16px #${config.colorScheme.palette.warn},
|
|
inset 0px -19px 8px -16px #${config.colorScheme.palette.warn};
|
|
color: #${config.colorScheme.palette.warn};
|
|
}
|
|
100% {
|
|
box-shadow: inset 0px 20px 8px -16px #${config.colorScheme.palette.warn},
|
|
inset 0px -20px 8px -16px #${config.colorScheme.palette.warn};
|
|
color: #${config.colorScheme.palette.warn};
|
|
}
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|