1

Compare commits

...

2 Commits

2 changed files with 10 additions and 11 deletions

View File

@ -328,7 +328,7 @@ in {
global = { global = {
monitor = 1; monitor = 1;
font = "${color.font} 11"; font = "${color.font} 11";
offset = "20x20"; offset = "10x10";
background = "#${color.light.base}"; background = "#${color.light.base}";
foreground = "#${color.light.text}"; foreground = "#${color.light.text}";
frame_width = 2; frame_width = 2;

View File

@ -31,10 +31,9 @@ in {
modules-right = ["pulseaudio" "network" "cpu" "memory" "temperature" "clock" "tray"]; modules-right = ["pulseaudio" "network" "cpu" "memory" "temperature" "clock" "tray"];
"custom/launcher" = { "custom/launcher" = {
format = "<span font='FontAwesome'></span> "; format = "<span font='${color.font}'></span> ";
interval = "once"; interval = "once";
on-click = "rofi -drun-show-actions -show drun"; on-click = "rofi -drun-show-actions -show drun";
tooltip-format = "<tt>Tux Alhamdulillah<tt>";
}; };
"hyprland/workspaces" = { "hyprland/workspaces" = {
@ -47,33 +46,33 @@ in {
}; };
"pulseaudio" = { "pulseaudio" = {
format = "<span font='FontAwesome'></span> {volume}%"; format = "<span font='${color.font}'></span> {volume}%";
format-muted = "<span font='FontAwesome'></span> "; format-muted = "<span font='${color.font}'></span> ";
on-click = "kitty ncpamixer -t o"; on-click = "kitty ncpamixer -t o";
}; };
"network" = { "network" = {
format = "<span font='FontAwesome'></span> {ipaddr}"; format = "<span font='${color.font}'></span> {ipaddr}";
format-disconnected = "<span font='FontAwesome'></span> "; format-disconnected = "<span font='${color.font}'></span> ";
interface = "enp8s0"; interface = "enp8s0";
tooltip-format = "{ifname} via {gwaddr}"; tooltip-format = "{ifname} via {gwaddr}";
}; };
cpu = { cpu = {
format = "<span font='FontAwesome'></span> {load}%"; format = "<span font='${color.font}'></span> {load}%";
}; };
memory = { memory = {
format = "<span font='FontAwesome'></span> {percentage}%"; format = "<span font='${color.font}'></span> {percentage}%";
}; };
temperature = { temperature = {
format = "<span font='FontAwesome'></span> {temperatureC}°C"; format = "<span font='${color.font}'></span> {temperatureC}°C";
thermal-zone = 3; thermal-zone = 3;
}; };
clock = { clock = {
format = "<span font='FontAwesome'></span> {:%H:%M}"; format = "<span font='${color.font}'></span> {:%H:%M}";
timezone = "Europe/Berlin"; timezone = "Europe/Berlin";
tooltip-format = "<tt><small>{calendar}</small></tt>"; tooltip-format = "<tt><small>{calendar}</small></tt>";
}; };