mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
Compare commits
7 commits
b1201b90cb
...
daa5b7fa5b
Author | SHA1 | Date | |
---|---|---|---|
daa5b7fa5b | |||
a179835409 | |||
f6400c8e64 | |||
b7c5973b69 | |||
5240443d08 | |||
ea74ad9379 | |||
dd5715083a |
12 changed files with 382 additions and 354 deletions
|
@ -1073,11 +1073,11 @@
|
||||||
"wallpapers": {
|
"wallpapers": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1724660030,
|
"lastModified": 1724670714,
|
||||||
"narHash": "sha256-l0Z4e7oeYJsvXIaRrlygxyVC7bQcJ5bd5dgH11TvKFg=",
|
"narHash": "sha256-AmHrw0m2rpzXxieWEBRK0utg83i4B1XpUboo7gZJ84I=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "abfd5f3522fcac0ace21075b498c9e053165c53f",
|
"rev": "89d778e59408fb0bcae728d4f3e272a4ab0cee6c",
|
||||||
"revCount": 5,
|
"revCount": 6,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://code.youwen.dev/youwen5/wallpapers"
|
"url": "https://code.youwen.dev/youwen5/wallpapers"
|
||||||
},
|
},
|
||||||
|
|
|
@ -85,7 +85,6 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
system = "x86_64-linux";
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/demeter
|
./hosts/demeter
|
||||||
|
@ -95,7 +94,6 @@
|
||||||
callisto = nixpkgs.lib.nixosSystem {
|
callisto = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
system = "aarch64-linux";
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/callisto
|
./hosts/callisto
|
||||||
|
@ -104,7 +102,6 @@
|
||||||
adrastea = nixpkgs.lib.nixosSystem {
|
adrastea = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
system = "x86_64-linux";
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/adrastea
|
./hosts/adrastea
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
inputs.vesktop-bin.overlays.default
|
inputs.vesktop-bin.overlays.default
|
||||||
|
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
|
librewolf = stablepkgs.librewolf;
|
||||||
hyprland = prev.hyprland.overrideAttrs (oldAttrs: {
|
hyprland = prev.hyprland.overrideAttrs (oldAttrs: {
|
||||||
src = oldAttrs.src;
|
src = oldAttrs.src;
|
||||||
patches =
|
patches =
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
system,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
wayland.windowManager.hyprland.settings.monitor = ["DP-1,2560x1440@165,1920x0,auto" "HDMI-A-1,1920x1080@60,0x0,1"];
|
wayland.windowManager.hyprland.settings.monitor = ["DP-1,2560x1440@165,1920x0,auto" "HDMI-A-1,1920x1080@60,0x0,1"];
|
||||||
wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
|
wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${pkgs.system}.hyprland;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
system,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
inputs.personal-neovim.packages.${system}.default
|
inputs.personal-neovim.packages.${pkgs.system}.default
|
||||||
];
|
];
|
||||||
|
|
||||||
security.sudo.enable = false;
|
security.sudo.enable = false;
|
||||||
|
|
|
@ -234,8 +234,8 @@
|
||||||
"windowsIn, 1, 6, winIn, slide"
|
"windowsIn, 1, 6, winIn, slide"
|
||||||
"windowsOut, 1, 5, winOut, slide"
|
"windowsOut, 1, 5, winOut, slide"
|
||||||
"windowsMove, 1, 5, wind, slide"
|
"windowsMove, 1, 5, wind, slide"
|
||||||
"border, 1, 1, liner"
|
# "border, 1, 1, liner"
|
||||||
"borderangle, 1, 30, liner, loop"
|
# "borderangle, 1, 30, liner, loop"
|
||||||
"fade, 1, 10, default"
|
"fade, 1, 10, default"
|
||||||
"workspaces, 1, 5, wind"
|
"workspaces, 1, 5, wind"
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,91 +1,141 @@
|
||||||
{
|
{
|
||||||
|
# home.file.".config/waybar/config".source = ./config.jsonc;
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
style = ./style.css;
|
||||||
|
systemd.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
mainBar = {
|
mainBar = {
|
||||||
|
name = "bar0";
|
||||||
|
|
||||||
layer = "top";
|
layer = "top";
|
||||||
position = "top";
|
position = "top";
|
||||||
height = 24;
|
|
||||||
width = 1600;
|
height = 28;
|
||||||
reload-style-on-change = true;
|
# "width" = 1920;
|
||||||
margin = "10px 0px 0px 0px";
|
|
||||||
modules-left = ["hyprland/window" "hyprland/workspaces"];
|
"margin" = "5px 10px 0px 10px";
|
||||||
modules-right = ["backlight" "group/adjustable" "custom/weather"];
|
"spacing" = 10;
|
||||||
modules-center = ["network" "group/hardware" "clock"];
|
|
||||||
"hyprland/workspaces" = {
|
"mode" = "top";
|
||||||
active-only = false;
|
# "exclusive" = true;
|
||||||
all-outputs = false;
|
|
||||||
|
# "output" = "eDP-1";
|
||||||
|
|
||||||
|
reload_style_on_change = true;
|
||||||
|
|
||||||
|
modules-left = ["hyprland/workspaces"];
|
||||||
|
modules-center = ["hyprland/window"];
|
||||||
|
modules-right = [
|
||||||
|
"tray"
|
||||||
|
"idle_inhibitor"
|
||||||
|
"backlight"
|
||||||
|
"wireplumber"
|
||||||
|
"network"
|
||||||
|
"battery"
|
||||||
|
"disk"
|
||||||
|
"memory"
|
||||||
|
"cpu"
|
||||||
|
"temperature"
|
||||||
|
"clock"
|
||||||
|
];
|
||||||
|
|
||||||
|
idle_inhibitor = {
|
||||||
format = "{icon}";
|
format = "{icon}";
|
||||||
persistent-workspaces = {
|
format-icons = {
|
||||||
eDP-1 = [1];
|
activated = " ";
|
||||||
DP-1 = [2 3 4 5];
|
deactivated = " ";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"group/hardware" = {
|
|
||||||
orientation = "inherit";
|
network = {
|
||||||
modules = ["cpu" "memory" "battery"];
|
format = "{ifname}";
|
||||||
|
format-wifi = "{icon}{essid}";
|
||||||
|
format-ethernet = " {essid}";
|
||||||
|
format-disconnected = " Disconnected";
|
||||||
|
format-icons = [
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
];
|
||||||
|
tooltip-format = " {bandwidthUpBits} | {bandwidthDownBits}";
|
||||||
|
tooltip-format-wifi = " {bandwidthUpBits} | {bandwidthDownBits} | {signalStrength}";
|
||||||
};
|
};
|
||||||
"group/adjustable" = {
|
|
||||||
orientation = "inherit";
|
backlight = {
|
||||||
drawer = {
|
interval = 2;
|
||||||
transition-duration = 500;
|
format = " {percent}%";
|
||||||
transition-left-to-right = true;
|
on-scroll-up = "brightnessctl set +4";
|
||||||
};
|
on-scroll-down = "brightnessctl set 4-";
|
||||||
modules = ["pulseaudio" "mpris"];
|
|
||||||
};
|
};
|
||||||
"custom/weather" = {
|
|
||||||
orientation = "horizontal";
|
wireplumber = {
|
||||||
exec = ''curl wttr.in/?format="%l:%20%t"'';
|
format = "{icon} {volume}%";
|
||||||
|
format-muted = " ";
|
||||||
|
on-click = "pamixer -t";
|
||||||
|
on-scroll-up = "pamixer set 5%+";
|
||||||
|
on-scroll-down = "pamixer set 5%-";
|
||||||
|
format-icons = ["" "" "" "" ""];
|
||||||
|
};
|
||||||
|
|
||||||
|
battery = {
|
||||||
interval = 10;
|
interval = 10;
|
||||||
|
format = "{icon}{capacity}%";
|
||||||
|
format-icons = ["" "" "" "" "" "" "" "" "" "" ""];
|
||||||
|
tooltip = true;
|
||||||
|
tooltip-format = "{timeTo}";
|
||||||
};
|
};
|
||||||
cpu = {
|
|
||||||
interval = 10;
|
disk = {
|
||||||
format = "{usage}% ";
|
intervel = 30;
|
||||||
|
format = " {percentage_used}%";
|
||||||
|
tooltip-format = "{used} used out of {total} on \"{path}\" ({percentage_used}%)";
|
||||||
};
|
};
|
||||||
|
|
||||||
memory = {
|
memory = {
|
||||||
interval = 10;
|
interval = 10;
|
||||||
format = "{percentage}% ";
|
format = " {used}";
|
||||||
|
tooltip-format = "{used}GiB used of {total}GiB ({percentage}%)";
|
||||||
};
|
};
|
||||||
# mpris = {
|
|
||||||
# format-playing = " {title} ";
|
cpu = {
|
||||||
# format-paused = " {title} ";
|
interval = 10;
|
||||||
# format-stopped = "Nothing Playing";
|
format = " {usage}%";
|
||||||
# };
|
|
||||||
tray = {spacing = 10;};
|
|
||||||
clock = {format = "{:%a %b %d, %I:%M %p} ";};
|
|
||||||
backlight = {
|
|
||||||
device = "intel_backlight";
|
|
||||||
format = "{percent}% {icon}";
|
|
||||||
format-icons = ["" ""];
|
|
||||||
};
|
};
|
||||||
battery = {
|
|
||||||
states = {
|
temperature = {
|
||||||
good = 95;
|
interval = 10;
|
||||||
warning = 20;
|
};
|
||||||
critical = 10;
|
|
||||||
|
clock = {
|
||||||
|
interval = 1;
|
||||||
|
format = "{:%H:%M:%S}";
|
||||||
|
};
|
||||||
|
|
||||||
|
"hyprland/workspaces" = {
|
||||||
|
show-special = true;
|
||||||
|
persistent-workspaces = {
|
||||||
|
"*" = [1 2 3 4 5 6 7 8 9 10];
|
||||||
|
};
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons = {
|
||||||
|
active = "";
|
||||||
|
empty = "";
|
||||||
|
default = "";
|
||||||
|
urgent = "";
|
||||||
|
special = "";
|
||||||
};
|
};
|
||||||
format = "{capacity}% {icon}";
|
|
||||||
format-icons = ["" "" "" "" ""];
|
|
||||||
};
|
};
|
||||||
"hyprland/window" = {format = "{class}";};
|
"hyprland/window" = {
|
||||||
network = {
|
icon = true;
|
||||||
format-wifi = "{essid} ";
|
icon-size = 20;
|
||||||
format-linked = "{ifname} (No IP) ";
|
max-length = 50;
|
||||||
format-disconnected = "Disconnected ⚠";
|
rewrite = {
|
||||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
"(.*) — LibreWolf" = "$1";
|
||||||
};
|
"^$" = "👾";
|
||||||
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 = ["" "" ""];};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
style = ./waybar.css;
|
|
||||||
systemd.enable = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
71
users/youwen/linux/waybar/desktop/style.css
Normal file
71
users/youwen/linux/waybar/desktop/style.css
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
window#waybar {
|
||||||
|
font-family: "CaskaydiaCove Nerd Font";
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
font-size: 0.8rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-left, .modules-center {
|
||||||
|
opacity: 1;
|
||||||
|
background: linear-gradient(45deg, rgb(214, 39, 200), rgb(5, 83, 252));
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-right {
|
||||||
|
opacity: 1;
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px 2px 2px 10px
|
||||||
|
}
|
||||||
|
|
||||||
|
/* label.module {
|
||||||
|
margin-left: -1px;
|
||||||
|
} */
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
font-size: 0.6rem;
|
||||||
|
padding: 0 0.3rem 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
font-weight: bolder;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 0 3px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
color: lightgreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
#memory {
|
||||||
|
color: lightpink;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disk {
|
||||||
|
color: lightskyblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
color: lightgoldenrodyellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature {
|
||||||
|
color: lightslategray;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
color: lightsteelblue;
|
||||||
|
}
|
|
@ -1,102 +0,0 @@
|
||||||
* {
|
|
||||||
font-size: 10px;
|
|
||||||
font-family: CaskaydiaCove Nerd Font;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
border-bottom: 0px solid #ffffff;
|
|
||||||
background: transparent;
|
|
||||||
transition-property: none;
|
|
||||||
transition-duration: 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
background: #24273a;
|
|
||||||
padding: 0px 2px 0px 2px;
|
|
||||||
margin: 0px 0px 0px 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
background: #24273a;
|
|
||||||
padding: 0px 5px 0px 5px;
|
|
||||||
margin: 0px 0px 0px 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button,
|
|
||||||
#workspaces button:hover {
|
|
||||||
padding: 0;
|
|
||||||
background-color: #24273a;
|
|
||||||
/* color: @color4; */
|
|
||||||
}
|
|
||||||
#workspaces button.active,
|
|
||||||
#workspaces button:hover {
|
|
||||||
/* color: @color8; */
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#pulseaudio,
|
|
||||||
#network,
|
|
||||||
#battery,
|
|
||||||
#tray,
|
|
||||||
#mpris,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#temperature,
|
|
||||||
#custom-weather,
|
|
||||||
#window,
|
|
||||||
#backlight {
|
|
||||||
background-color: #24273a;
|
|
||||||
/* color: @color4; */
|
|
||||||
opacity: 1;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 1px 10px 1px 10px;
|
|
||||||
margin: 0px 5px 0px 0px;
|
|
||||||
}
|
|
||||||
#backlight {
|
|
||||||
margin-right: 0px;
|
|
||||||
padding-right: 3px;
|
|
||||||
border-top-right-radius: 0px;
|
|
||||||
border-bottom-right-radius: 0px;
|
|
||||||
}
|
|
||||||
#mpris {
|
|
||||||
padding-left: 0px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 5px;
|
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
#pulseaudio {
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-right: 5px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 5px;
|
|
||||||
border-top-left-radius: 0px;
|
|
||||||
border-bottom-left-radius: 0px;
|
|
||||||
}
|
|
||||||
#memory,
|
|
||||||
#cpu {
|
|
||||||
padding-right: 2px;
|
|
||||||
/* border-top-right-radius: 0px; */
|
|
||||||
/* border-bottom-right-radius: 0px; */
|
|
||||||
/* border-right-width: 0px; */
|
|
||||||
}
|
|
||||||
#memory,
|
|
||||||
#battery {
|
|
||||||
margin-left: 0px;
|
|
||||||
padding-left: 2px;
|
|
||||||
border-top-left-radius: 0px;
|
|
||||||
border-bottom-left-radius: 0px;
|
|
||||||
border-left-width: 0px;
|
|
||||||
}
|
|
||||||
#battery {
|
|
||||||
padding-right: 13px;
|
|
||||||
}
|
|
||||||
#custom-weather {
|
|
||||||
margin-right: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
margin-right: 0px;
|
|
||||||
margin-left: 0px;
|
|
||||||
}
|
|
|
@ -1,91 +1,140 @@
|
||||||
{
|
{
|
||||||
|
# home.file.".config/waybar/config".source = ./config.jsonc;
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
style = ./style.css;
|
||||||
|
systemd.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
mainBar = {
|
mainBar = {
|
||||||
|
name = "bar0";
|
||||||
|
|
||||||
layer = "top";
|
layer = "top";
|
||||||
position = "top";
|
position = "top";
|
||||||
height = 24;
|
|
||||||
# width = 1000;
|
height = 28;
|
||||||
reload-style-on-change = true;
|
# "width" = 1920;
|
||||||
margin = "5px 0px 0px 0px";
|
|
||||||
modules-left = ["hyprland/window" "hyprland/workspaces" "network" "clock"];
|
"margin" = "5px 10px 0px 10px";
|
||||||
modules-right = ["group/hardware" "backlight" "group/adjustable" "custom/weather"];
|
"spacing" = 10;
|
||||||
# modules-center = [ "network" "group/hardware" "clock" ];
|
|
||||||
"hyprland/workspaces" = {
|
"mode" = "top";
|
||||||
active-only = false;
|
# "exclusive" = true;
|
||||||
all-outputs = false;
|
|
||||||
|
# "output" = "eDP-1";
|
||||||
|
|
||||||
|
reload_style_on_change = true;
|
||||||
|
|
||||||
|
modules-left = ["hyprland/workspaces" "hyprland/window"];
|
||||||
|
modules-right = [
|
||||||
|
"tray"
|
||||||
|
"idle_inhibitor"
|
||||||
|
"backlight"
|
||||||
|
"wireplumber"
|
||||||
|
"network"
|
||||||
|
"battery"
|
||||||
|
"disk"
|
||||||
|
"memory"
|
||||||
|
"cpu"
|
||||||
|
"temperature"
|
||||||
|
"clock"
|
||||||
|
];
|
||||||
|
|
||||||
|
idle_inhibitor = {
|
||||||
format = "{icon}";
|
format = "{icon}";
|
||||||
persistent-workspaces = {
|
format-icons = {
|
||||||
eDP-1 = [1];
|
activated = " ";
|
||||||
DP-1 = [2 3 4 5];
|
deactivated = " ";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"group/hardware" = {
|
|
||||||
orientation = "inherit";
|
network = {
|
||||||
modules = ["cpu" "battery"];
|
format = "{ifname}";
|
||||||
|
format-wifi = "{icon}{essid}";
|
||||||
|
format-ethernet = " {essid}";
|
||||||
|
format-disconnected = " Disconnected";
|
||||||
|
format-icons = [
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
];
|
||||||
|
tooltip-format = " {bandwidthUpBits} | {bandwidthDownBits}";
|
||||||
|
tooltip-format-wifi = " {bandwidthUpBits} | {bandwidthDownBits} | {signalStrength}";
|
||||||
};
|
};
|
||||||
"group/adjustable" = {
|
|
||||||
orientation = "inherit";
|
backlight = {
|
||||||
drawer = {
|
interval = 2;
|
||||||
transition-duration = 500;
|
format = " {percent}%";
|
||||||
transition-left-to-right = true;
|
on-scroll-up = "brightnessctl set +4";
|
||||||
};
|
on-scroll-down = "brightnessctl set 4-";
|
||||||
modules = ["pulseaudio" "mpris"];
|
|
||||||
};
|
};
|
||||||
"custom/weather" = {
|
|
||||||
orientation = "horizontal";
|
wireplumber = {
|
||||||
exec = ''curl wttr.in/?format="%l:%20%t"'';
|
format = "{icon} {volume}%";
|
||||||
|
format-muted = " ";
|
||||||
|
on-click = "pamixer -t";
|
||||||
|
on-scroll-up = "pamixer set 5%+";
|
||||||
|
on-scroll-down = "pamixer set 5%-";
|
||||||
|
format-icons = ["" "" "" "" ""];
|
||||||
|
};
|
||||||
|
|
||||||
|
battery = {
|
||||||
interval = 10;
|
interval = 10;
|
||||||
|
format = "{icon} {capacity}%";
|
||||||
|
format-icons = ["" "" "" "" "" "" "" "" "" "" ""];
|
||||||
|
tooltip = true;
|
||||||
|
tooltip-format = "{timeTo}";
|
||||||
};
|
};
|
||||||
cpu = {
|
|
||||||
interval = 10;
|
disk = {
|
||||||
format = "{usage}% ";
|
intervel = 30;
|
||||||
|
format = " {percentage_used}%";
|
||||||
|
tooltip-format = "{used} used out of {total} on \"{path}\" ({percentage_used}%)";
|
||||||
};
|
};
|
||||||
|
|
||||||
memory = {
|
memory = {
|
||||||
interval = 10;
|
interval = 10;
|
||||||
format = "{percentage}% ";
|
format = " {used}";
|
||||||
|
tooltip-format = "{used}GiB used of {total}GiB ({percentage}%)";
|
||||||
};
|
};
|
||||||
# mpris = {
|
|
||||||
# format-playing = " {title} ";
|
cpu = {
|
||||||
# format-paused = " {title} ";
|
interval = 10;
|
||||||
# format-stopped = "Nothing Playing";
|
format = " {usage}%";
|
||||||
# };
|
|
||||||
tray = {spacing = 10;};
|
|
||||||
clock = {format = "{:%a %b %d, %I:%M %p} ";};
|
|
||||||
backlight = {
|
|
||||||
device = "intel_backlight";
|
|
||||||
format = "{percent}% {icon}";
|
|
||||||
format-icons = ["" ""];
|
|
||||||
};
|
};
|
||||||
battery = {
|
|
||||||
states = {
|
temperature = {
|
||||||
good = 95;
|
interval = 10;
|
||||||
warning = 20;
|
};
|
||||||
critical = 10;
|
|
||||||
|
clock = {
|
||||||
|
interval = 1;
|
||||||
|
format = "{:%H:%M:%S}";
|
||||||
|
};
|
||||||
|
|
||||||
|
"hyprland/workspaces" = {
|
||||||
|
show-special = true;
|
||||||
|
persistent-workspaces = {
|
||||||
|
"*" = [1 2 3 4 5 6 7 8 9 10];
|
||||||
|
};
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons = {
|
||||||
|
active = "";
|
||||||
|
empty = "";
|
||||||
|
default = "";
|
||||||
|
urgent = "";
|
||||||
|
special = "";
|
||||||
};
|
};
|
||||||
format = "{capacity}% {icon}";
|
|
||||||
format-icons = ["" "" "" "" ""];
|
|
||||||
};
|
};
|
||||||
"hyprland/window" = {format = "{class}";};
|
"hyprland/window" = {
|
||||||
network = {
|
icon = true;
|
||||||
format-wifi = "{essid} ";
|
icon-size = 20;
|
||||||
format-linked = "{ifname} (No IP) ";
|
max-length = 50;
|
||||||
format-disconnected = "Disconnected ⚠";
|
rewrite = {
|
||||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
"(.*) — LibreWolf" = "$1";
|
||||||
};
|
"^$" = "👾";
|
||||||
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 = ["" "" ""];};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
style = ./waybar.css;
|
|
||||||
systemd.enable = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
71
users/youwen/linux/waybar/laptop/style.css
Normal file
71
users/youwen/linux/waybar/laptop/style.css
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
window#waybar {
|
||||||
|
font-family: "CaskaydiaCove Nerd Font";
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
font-size: 0.8rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-left, .modules-center {
|
||||||
|
opacity: 1;
|
||||||
|
background: linear-gradient(45deg, rgb(214, 39, 200), rgb(5, 83, 252));
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-right {
|
||||||
|
opacity: 1;
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px 2px 2px 10px
|
||||||
|
}
|
||||||
|
|
||||||
|
/* label.module {
|
||||||
|
margin-left: -1px;
|
||||||
|
} */
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
font-size: 0.6rem;
|
||||||
|
padding: 0 0.3rem 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background-color: rgba(0,0,0,0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 2px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
font-weight: bolder;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 0 3px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
color: lightgreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
#memory {
|
||||||
|
color: lightpink;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disk {
|
||||||
|
color: lightskyblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
color: lightgoldenrodyellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature {
|
||||||
|
color: lightslategray;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
color: lightsteelblue;
|
||||||
|
}
|
|
@ -1,109 +0,0 @@
|
||||||
* {
|
|
||||||
font-size: 12px;
|
|
||||||
font-family: CaskaydiaCove Nerd Font;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
border-bottom: 0px solid #ffffff;
|
|
||||||
background: transparent;
|
|
||||||
transition-property: none;
|
|
||||||
transition-duration: 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
background: #24273a;
|
|
||||||
padding: 0px 5px 0px 5px;
|
|
||||||
margin: 0px 0px 0px 2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
background: #24273a;
|
|
||||||
padding: 0px 5px 0px 5px;
|
|
||||||
margin: 0px 0px 0px 2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button,
|
|
||||||
#workspaces button:hover {
|
|
||||||
padding: 0;
|
|
||||||
background-color: #24273a;
|
|
||||||
/* color: @color4; */
|
|
||||||
}
|
|
||||||
#workspaces button.active,
|
|
||||||
#workspaces button:hover {
|
|
||||||
/* color: @color8; */
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#pulseaudio,
|
|
||||||
#network,
|
|
||||||
#battery,
|
|
||||||
#tray,
|
|
||||||
#mpris,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#temperature,
|
|
||||||
#custom-weather,
|
|
||||||
#window,
|
|
||||||
#backlight {
|
|
||||||
background-color: #24273a;
|
|
||||||
/* color: @color4; */
|
|
||||||
opacity: 1;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 1px 10px 1px 10px;
|
|
||||||
margin: 0px 5px 0px 0px;
|
|
||||||
}
|
|
||||||
#backlight {
|
|
||||||
margin-right: 0px;
|
|
||||||
padding-right: 3px;
|
|
||||||
border-top-right-radius: 0px;
|
|
||||||
border-bottom-right-radius: 0px;
|
|
||||||
}
|
|
||||||
#network {
|
|
||||||
margin-left: 15px;
|
|
||||||
padding-right: 15px;
|
|
||||||
}
|
|
||||||
#mpris {
|
|
||||||
padding-left: 0px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 5px;
|
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
#pulseaudio {
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-right: 5px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 5px;
|
|
||||||
border-top-left-radius: 0px;
|
|
||||||
border-bottom-left-radius: 0px;
|
|
||||||
}
|
|
||||||
#memory,
|
|
||||||
#cpu {
|
|
||||||
padding-right: 2px;
|
|
||||||
border-top-right-radius: 0px;
|
|
||||||
border-bottom-right-radius: 0px;
|
|
||||||
border-right-width: 0px;
|
|
||||||
}
|
|
||||||
#memory,
|
|
||||||
#battery {
|
|
||||||
margin-left: 0px;
|
|
||||||
padding-left: 2px;
|
|
||||||
border-top-left-radius: 0px;
|
|
||||||
border-bottom-left-radius: 0px;
|
|
||||||
border-left-width: 0px;
|
|
||||||
}
|
|
||||||
#cpu {
|
|
||||||
margin-right: 0px;
|
|
||||||
}
|
|
||||||
#battery {
|
|
||||||
padding-right: 13px;
|
|
||||||
}
|
|
||||||
#custom-weather {
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
margin-right: 10px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
Loading…
Reference in a new issue