home | waybar - porting old waybar config in
This commit is contained in:
parent
cd3cb9a092
commit
80b6850f36
1 changed files with 111 additions and 2 deletions
|
|
@ -17,7 +17,116 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
mainBar = {
|
mainBar = {
|
||||||
layer = "top";
|
ipc = true;
|
||||||
|
position = "bottom";
|
||||||
|
height = 10;
|
||||||
|
spacing = 0;
|
||||||
|
modules-left = ["sway/workspaces" "sway/mode" "wlr/workspaces" "custom/mycal"];
|
||||||
|
modules-center = [];
|
||||||
|
modules-right = ["idle_inhibitor" "custom/mytimew" "pulseaudio" "custom/mymusic" "bluetooth" "network" "backlight" "battery" "battery#bat2" "tray" "custom/mycal" "clock"];
|
||||||
|
bluetooth = {
|
||||||
|
format-alt = "bt: {status}";
|
||||||
|
format-on = "bt";
|
||||||
|
format-connected = "^bt";
|
||||||
|
format-off = "!bt";
|
||||||
|
format-disabled = "xbt";
|
||||||
|
on-click = "blueberry";
|
||||||
|
tooltip-format = "{status}";
|
||||||
|
};
|
||||||
|
backlight = {
|
||||||
|
device = "intel_backlight";
|
||||||
|
format = "{icon} {percent}%";
|
||||||
|
format-alt-click = "click-right";
|
||||||
|
on-scroll-down = "light -A 1";
|
||||||
|
on-scroll-up = "light -U 1";
|
||||||
|
};
|
||||||
|
"custom/mytimew" = {
|
||||||
|
exec = "~/bin/timebar";
|
||||||
|
interval = 30;
|
||||||
|
on-click = "alacritty -e ~/bin/ttmenu";
|
||||||
|
};
|
||||||
|
"custom/mycal" = {
|
||||||
|
exec = "~/bin/show-next-event";
|
||||||
|
interval = 300;
|
||||||
|
on-click = "~/bin/mynewterm -e ikhal";
|
||||||
|
};
|
||||||
|
"custom/mymusic" = {
|
||||||
|
exec = "~/bin/show-playing";
|
||||||
|
interval = 5;
|
||||||
|
};
|
||||||
|
"sway/window" = {
|
||||||
|
icon-size = 10;
|
||||||
|
};
|
||||||
|
"sway/mode" = {
|
||||||
|
format = "<span style=\"italic\">{}</span>";
|
||||||
|
};
|
||||||
|
"idle_inhibitor" = {
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons = {
|
||||||
|
activated = "";
|
||||||
|
deactivated = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
tray = {
|
||||||
|
icon-size = 16;
|
||||||
|
spacing = 10;
|
||||||
|
};
|
||||||
|
clock = {
|
||||||
|
tooltip-format = "<big>{:%Y %B %d}</big>\n<tt><small>{calendar}</small></tt>";
|
||||||
|
format = "{:%I:%M %p}";
|
||||||
|
format-alt = "{:%Y-%m-%d}";
|
||||||
|
on-click = "~/bin/mynewterm -e ikhal";
|
||||||
|
};
|
||||||
|
cpu = {
|
||||||
|
format = "cpu: {usage}%";
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
memory = {
|
||||||
|
format = "mem: {}%";
|
||||||
|
};
|
||||||
|
temperature = {
|
||||||
|
critical-threshold = 80;
|
||||||
|
format = "{temperatureC}°C {icon}";
|
||||||
|
};
|
||||||
|
battery = {
|
||||||
|
states = {
|
||||||
|
good = 75;
|
||||||
|
warning = 20;
|
||||||
|
critical = 10;
|
||||||
|
};
|
||||||
|
format = "{capacity}% {time}";
|
||||||
|
format-charging = "c:{capacity}% {time}";
|
||||||
|
format-plugged = "p:{capacity}% {time}";
|
||||||
|
format-discharging = "d:{capacity}% {time}";
|
||||||
|
format-alt = "{time} {icon}";
|
||||||
|
};
|
||||||
|
"battery#bat2" = {
|
||||||
|
bat = "BAT2";
|
||||||
|
};
|
||||||
|
network = {
|
||||||
|
format-wifi = "{essid} ({signalStrength}%)";
|
||||||
|
format-ethernet = "{ipaddr}/{cidr}";
|
||||||
|
tooltip-format = "{ifname} via {gwaddr}";
|
||||||
|
format-linked = "{ifname} (No IP)";
|
||||||
|
format-disconnected = "Disconnected";
|
||||||
|
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
||||||
|
};
|
||||||
|
pulseaudio = {
|
||||||
|
format = "v:{volume}%";
|
||||||
|
format-bluetooth = "{volume}% {icon} {format_source}";
|
||||||
|
format-bluetooth-muted = " {icon} {format_source}";
|
||||||
|
format-muted = "muted";
|
||||||
|
format-source = "v:{volume}% ";
|
||||||
|
format-source-muted = "";
|
||||||
|
format-icons = {
|
||||||
|
headphone = "hp";
|
||||||
|
hands-free = "hf";
|
||||||
|
headset = "hs";
|
||||||
|
phone = "p";
|
||||||
|
};
|
||||||
|
on-click = "pavucontrol";
|
||||||
|
};
|
||||||
|
/* layer = "top";
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
height = 10;
|
height = 10;
|
||||||
spacing = 0;
|
spacing = 0;
|
||||||
|
|
@ -38,7 +147,7 @@
|
||||||
"custom/mymusic" = {
|
"custom/mymusic" = {
|
||||||
exec = "~/bin/show-playing";
|
exec = "~/bin/show-playing";
|
||||||
interval = 5;
|
interval = 5;
|
||||||
};
|
}; */
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
style =
|
style =
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue