waybar: add waybar to config
This commit is contained in:
parent
5ec1d9e81f
commit
4705a3b248
4 changed files with 368 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./swayidle.nix
|
./swayidle.nix
|
||||||
./swaylock.nix
|
./swaylock.nix
|
||||||
|
./waybar
|
||||||
];
|
];
|
||||||
|
|
||||||
wayland.windowManager.sway =
|
wayland.windowManager.sway =
|
||||||
|
|
186
home/sway/waybar/config.nix
Normal file
186
home/sway/waybar/config.nix
Normal file
|
@ -0,0 +1,186 @@
|
||||||
|
{
|
||||||
|
modules-left = [
|
||||||
|
"tray"
|
||||||
|
"privacy"
|
||||||
|
"clock"
|
||||||
|
"sway/mode"
|
||||||
|
];
|
||||||
|
modules-center = [ "sway/workspaces" ];
|
||||||
|
modules-right = [
|
||||||
|
"backlight"
|
||||||
|
"pulseaudio"
|
||||||
|
"network"
|
||||||
|
"group/hardware"
|
||||||
|
"idle_inhibitor"
|
||||||
|
"custom/notification"
|
||||||
|
];
|
||||||
|
backlight = {
|
||||||
|
format = "{}% ";
|
||||||
|
interval = 1;
|
||||||
|
on-scroll-down = "brightnessctl s 10%-";
|
||||||
|
on-scroll-up = "brightnessctl s +10%";
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
battery = {
|
||||||
|
format = "{icon} {capacity}%";
|
||||||
|
format-charging = " {capacity}%";
|
||||||
|
format-icons = [
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
];
|
||||||
|
format-plugged = " {capacity}%";
|
||||||
|
states = {
|
||||||
|
critical = 20;
|
||||||
|
good = 95;
|
||||||
|
warning = 30;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
clock = {
|
||||||
|
actions = {
|
||||||
|
on-click-backward = "tz_down";
|
||||||
|
on-click-forward = "tz_up";
|
||||||
|
on-click-right = "mode";
|
||||||
|
on-scroll-down = "shift_down";
|
||||||
|
on-scroll-up = "shift_up";
|
||||||
|
};
|
||||||
|
calendar = {
|
||||||
|
format = {
|
||||||
|
days = "<span color='#ecc6d9'><b>{}</b></span>";
|
||||||
|
months = "<span color='#ffead3'><b>{}</b></span>";
|
||||||
|
today = "<span color='#ff6699'><b><u>{}</u></b></span>";
|
||||||
|
weekdays = "<span color='#ffcc66'><b>{}</b></span>";
|
||||||
|
weeks = "<span color='#99ffdd'><b>W{}</b></span>";
|
||||||
|
};
|
||||||
|
mode = "year";
|
||||||
|
mode-mon-col = 3;
|
||||||
|
on-click-right = "mode";
|
||||||
|
on-scroll = 1;
|
||||||
|
weeks-pos = "right";
|
||||||
|
};
|
||||||
|
format = "{:%H:%M}";
|
||||||
|
format-alt = "{:%A, %B %d, %Y (%R)} ";
|
||||||
|
tooltip-format = "<tt><small>{calendar}</small></tt>";
|
||||||
|
};
|
||||||
|
cpu = {
|
||||||
|
format = " {}%";
|
||||||
|
interval = 15;
|
||||||
|
max-length = 10;
|
||||||
|
};
|
||||||
|
"custom/notification" = {
|
||||||
|
c-on-click-right = "swaync-client -d -sw";
|
||||||
|
escape = true;
|
||||||
|
exec = "swaync-client -swb";
|
||||||
|
exec-if = "which swaync-client";
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons =
|
||||||
|
let
|
||||||
|
dot = "<span foreground='red'><sup></sup></span>";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
dnd-inhibited-none = "";
|
||||||
|
dnd-inhibited-notification = "${dot}";
|
||||||
|
dnd-none = "";
|
||||||
|
dnd-notification = "${dot}";
|
||||||
|
inhibited-none = "";
|
||||||
|
inhibited-notification = "${dot}";
|
||||||
|
none = "";
|
||||||
|
notification = "${dot}";
|
||||||
|
};
|
||||||
|
on-click = "sh -c 'sleep 0.1s; swaync-client -t -sw; sleep 0.1s'";
|
||||||
|
return-type = "json";
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
"group/hardware" = {
|
||||||
|
drawer = {
|
||||||
|
transition-left-to-right = false;
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
"battery"
|
||||||
|
"cpu"
|
||||||
|
"memory"
|
||||||
|
];
|
||||||
|
orientation = "horizontal";
|
||||||
|
};
|
||||||
|
idle_inhibitor = {
|
||||||
|
format = "{icon} ";
|
||||||
|
format-icons = {
|
||||||
|
activated = "";
|
||||||
|
deactivated = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
layer = "bottom";
|
||||||
|
memory = {
|
||||||
|
format = " {}%";
|
||||||
|
interval = 30;
|
||||||
|
max-length = 10;
|
||||||
|
};
|
||||||
|
|
||||||
|
network = {
|
||||||
|
format-wifi = "{essid} ({signalStrength}%) ";
|
||||||
|
on-click = "alacritty -t nmtui -e nmtui";
|
||||||
|
};
|
||||||
|
position = "top";
|
||||||
|
privacy = {
|
||||||
|
icon-size = 18;
|
||||||
|
icon-spacing = 4;
|
||||||
|
modules = [
|
||||||
|
{
|
||||||
|
tooltip = true;
|
||||||
|
tooltip-icon-size = 24;
|
||||||
|
type = "screenshare";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
tooltip = true;
|
||||||
|
tooltip-icon-size = 24;
|
||||||
|
type = "audio-out";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
tooltip = true;
|
||||||
|
tooltip-icon-size = 24;
|
||||||
|
type = "audio-in";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
transition-duration = 250;
|
||||||
|
};
|
||||||
|
pulseaudio = {
|
||||||
|
format = "{volume}% {icon} {format_source}";
|
||||||
|
format-bluetooth = "{volume}% {icon} {format_source}";
|
||||||
|
format-bluetooth-muted = " {icon} {format_source}";
|
||||||
|
format-icons = {
|
||||||
|
car = "";
|
||||||
|
default = [
|
||||||
|
"奄"
|
||||||
|
"奔"
|
||||||
|
"墳"
|
||||||
|
];
|
||||||
|
hands-free = "";
|
||||||
|
headphone = "";
|
||||||
|
headset = "";
|
||||||
|
phone = "";
|
||||||
|
portable = "";
|
||||||
|
};
|
||||||
|
format-muted = "婢 {format_source}";
|
||||||
|
format-source = "{volume}% ";
|
||||||
|
format-source-muted = "";
|
||||||
|
on-click = "pavucontrol";
|
||||||
|
scroll-step = 1;
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
"sway/mode" = {
|
||||||
|
format = "{}";
|
||||||
|
max-length = 50;
|
||||||
|
};
|
||||||
|
"sway/workspaces" = {
|
||||||
|
all-outputs = true;
|
||||||
|
disable-scroll = true;
|
||||||
|
format = "{name}";
|
||||||
|
};
|
||||||
|
tray = {
|
||||||
|
icon-size = 18;
|
||||||
|
show-passive-items = false;
|
||||||
|
spacing = 10;
|
||||||
|
};
|
||||||
|
}
|
9
home/sway/waybar/default.nix
Normal file
9
home/sway/waybar/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.waybar = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
main = import ./config.nix;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
172
home/sway/waybar/style.nix
Normal file
172
home/sway/waybar/style.nix
Normal file
|
@ -0,0 +1,172 @@
|
||||||
|
''
|
||||||
|
* {
|
||||||
|
font-family: "DejaVuSansMNerdFont-Regular";
|
||||||
|
border: none;
|
||||||
|
opacity: 50;
|
||||||
|
border-radius: 10px;
|
||||||
|
font-size: 13px; }
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: transparent; }
|
||||||
|
|
||||||
|
window#waybar.hidden {
|
||||||
|
opacity: 0.2; }
|
||||||
|
|
||||||
|
#window {
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
transition: none;
|
||||||
|
color: transparent;
|
||||||
|
background: transparent; }
|
||||||
|
|
||||||
|
.modules-center {
|
||||||
|
margin: 3px 0 0 0; }
|
||||||
|
|
||||||
|
.modules-right {
|
||||||
|
margin: 3px 8px 0 0; }
|
||||||
|
|
||||||
|
.modules-left {
|
||||||
|
margin: 3px 0 0 8px; }
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
background-color: rgba(13, 214, 250, 0.4); }
|
||||||
|
#workspaces button {
|
||||||
|
padding: 1px 5px; }
|
||||||
|
#workspaces button:hover {
|
||||||
|
background-color: rgba(159, 255, 255, 0.9); }
|
||||||
|
#workspaces button.focused {
|
||||||
|
background-color: rgba(50, 194, 219, 0.7); }
|
||||||
|
|
||||||
|
#network {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #bd93f9; }
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
min-width: 23px;
|
||||||
|
color: #1a1826;
|
||||||
|
background: #fae3b0; }
|
||||||
|
|
||||||
|
#backlight {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #f8bd96; }
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #abe9b3; }
|
||||||
|
|
||||||
|
#memory {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #ddb6f2; }
|
||||||
|
|
||||||
|
#privacy {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #ddb6f2; }
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #96cdfb; }
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
padding-left: 10px;
|
||||||
|
margin-right: 4px;
|
||||||
|
padding-right: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #b5e8e0;
|
||||||
|
background: #161320; }
|
||||||
|
|
||||||
|
#idle_inhibitor {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #161320;
|
||||||
|
background: #f28fad; }
|
||||||
|
|
||||||
|
#group-power {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
font-size: 20px;
|
||||||
|
transition: none;
|
||||||
|
color: #161320;
|
||||||
|
background: #f28fad; }
|
||||||
|
|
||||||
|
#custom-notification {
|
||||||
|
margin-left: 4px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #f2cdcd;
|
||||||
|
font-family: "NotoSansMono Nerd Font"; }
|
||||||
|
|
||||||
|
#mode {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #ddb6f2; }
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
to {
|
||||||
|
background-color: #bf616a;
|
||||||
|
color: #b5e8e0; } }
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
color: #161320;
|
||||||
|
background: #b5e8e0; }
|
||||||
|
#battery .critical:not(.charging) {
|
||||||
|
animation-name: blink;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate; }
|
||||||
|
|
||||||
|
''
|
Loading…
Add table
Reference in a new issue