mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: basic waybar rice
This commit is contained in:
parent
c30ea945b2
commit
e1538bff90
2 changed files with 95 additions and 20 deletions
100
home.nix
100
home.nix
|
@ -250,8 +250,6 @@
|
||||||
"blur,swaync-control-center"
|
"blur,swaync-control-center"
|
||||||
"ignorezero,swaync-control-center"
|
"ignorezero,swaync-control-center"
|
||||||
"blur,logout_dialog"
|
"blur,logout_dialog"
|
||||||
|
|
||||||
"blur,waybar"
|
|
||||||
];
|
];
|
||||||
monitor = [
|
monitor = [
|
||||||
"DP-1,2560x1440@165,1920x0,auto"
|
"DP-1,2560x1440@165,1920x0,auto"
|
||||||
|
@ -338,17 +336,95 @@
|
||||||
mainBar = {
|
mainBar = {
|
||||||
layer = "top";
|
layer = "top";
|
||||||
position = "top";
|
position = "top";
|
||||||
height = 30;
|
height = 24;
|
||||||
output = [
|
width = 1600;
|
||||||
"DP-1"
|
reload-style-on-change = true;
|
||||||
"HDMI-A-1"
|
margin = "10px 0px 0px 0px";
|
||||||
];
|
modules-left = [ "hyprland/window" "hyprland/workspaces" ];
|
||||||
modules-left = [ "hyprland/workspaces" "sway/submap" "wlr/taskbar" ];
|
modules-right = [ "backlight" "group/adjustable" "custom/weather" ];
|
||||||
modules-right = [ "mpd" "temperature" ];
|
modules-center = [ "network" "group/hardware" "clock" ];
|
||||||
|
|
||||||
"hyprland/workspaces" = {
|
"hyprland/workspaces" = {
|
||||||
disable-scroll = true;
|
active-only = false;
|
||||||
all-outputs = true;
|
all-outputs = false;
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons = {
|
||||||
|
default = "";
|
||||||
|
active = "";
|
||||||
|
};
|
||||||
|
persistent-workspaces = {
|
||||||
|
eDP-1 = [ 1 ];
|
||||||
|
DP-1 = [ 2 3 4 5 ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"group/hardware" = {
|
||||||
|
orientation = "inherit";
|
||||||
|
modules = [ "cpu" "memory" "battery" ];
|
||||||
|
};
|
||||||
|
"group/adjustable" = {
|
||||||
|
orientation = "inherit";
|
||||||
|
drawer = {
|
||||||
|
transition-duration = 500;
|
||||||
|
transition-left-to-right = true;
|
||||||
|
};
|
||||||
|
modules = [ "pulseaudio" "mpris" ];
|
||||||
|
};
|
||||||
|
"custom/weather" = {
|
||||||
|
orientation = "horizontal";
|
||||||
|
exec = "curl wttr.in/?format=\"%l:%20%t\"";
|
||||||
|
interval = 10;
|
||||||
|
};
|
||||||
|
cpu = {
|
||||||
|
interval = 10;
|
||||||
|
format = "{usage}% ";
|
||||||
|
};
|
||||||
|
memory = {
|
||||||
|
interval = 10;
|
||||||
|
format = "{percentage}% ";
|
||||||
|
};
|
||||||
|
# mpris = {
|
||||||
|
# format-playing = " {title} ";
|
||||||
|
# format-paused = " {title} ";
|
||||||
|
# format-stopped = "Nothing Playing";
|
||||||
|
# };
|
||||||
|
tray = {
|
||||||
|
spacing = 10;
|
||||||
|
};
|
||||||
|
clock = {
|
||||||
|
format = "{:%a %b %d, %I:%M %p} ";
|
||||||
|
};
|
||||||
|
backlight = {
|
||||||
|
device = "intel_backlight";
|
||||||
|
format = "{percent}% {icon}";
|
||||||
|
format-icons = [ "" "" ];
|
||||||
|
};
|
||||||
|
battery = {
|
||||||
|
states = {
|
||||||
|
good = 95;
|
||||||
|
warning = 20;
|
||||||
|
critical = 10;
|
||||||
|
};
|
||||||
|
format = "{capacity}% {icon}";
|
||||||
|
format-icons = [ "" "" "" "" "" ];
|
||||||
|
};
|
||||||
|
"hyprland/window" = {
|
||||||
|
format = "{class}";
|
||||||
|
};
|
||||||
|
network = {
|
||||||
|
format-wifi = "{essid} ";
|
||||||
|
format-linked = "{ifname} (No IP) ";
|
||||||
|
format-disconnected = "Disconnected ⚠";
|
||||||
|
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
||||||
|
};
|
||||||
|
pulseaudio = {
|
||||||
|
format = "{volume}% {icon} {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 = {
|
||||||
|
default = [ "" "" "" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,14 +10,14 @@ window#waybar {
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background: @bg;
|
background: #24273a;
|
||||||
padding: 0px 2px 0px 2px;
|
padding: 0px 2px 0px 2px;
|
||||||
margin: 0px 0px 0px 5px;
|
margin: 0px 0px 0px 5px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background: @bg;
|
background: #24273a;
|
||||||
padding: 0px 5px 0px 5px;
|
padding: 0px 5px 0px 5px;
|
||||||
margin: 0px 0px 0px 5px;
|
margin: 0px 0px 0px 5px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -26,7 +26,7 @@ window#waybar {
|
||||||
#workspaces button,
|
#workspaces button,
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: @bg;
|
background-color: #24273a;
|
||||||
/* color: @color4; */
|
/* color: @color4; */
|
||||||
}
|
}
|
||||||
#workspaces button.active,
|
#workspaces button.active,
|
||||||
|
@ -46,7 +46,7 @@ window#waybar {
|
||||||
#custom-weather,
|
#custom-weather,
|
||||||
#window,
|
#window,
|
||||||
#backlight {
|
#backlight {
|
||||||
background-color: @bg;
|
background-color: #24273a;
|
||||||
/* color: @color4; */
|
/* color: @color4; */
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -75,11 +75,10 @@ window#waybar {
|
||||||
}
|
}
|
||||||
#memory,
|
#memory,
|
||||||
#cpu {
|
#cpu {
|
||||||
margin-right: 0px;
|
|
||||||
padding-right: 2px;
|
padding-right: 2px;
|
||||||
border-top-right-radius: 0px;
|
/* border-top-right-radius: 0px; */
|
||||||
border-bottom-right-radius: 0px;
|
/* border-bottom-right-radius: 0px; */
|
||||||
border-right-width: 0px;
|
/* border-right-width: 0px; */
|
||||||
}
|
}
|
||||||
#memory,
|
#memory,
|
||||||
#battery {
|
#battery {
|
||||||
|
|
Loading…
Reference in a new issue