Compare commits
No commits in common. "657e7289ecbb45e3d75aeac818963228913ebf76" and "bc85c22f393efa9f33d0222d738998ac85f3842c" have entirely different histories.
657e7289ec
...
bc85c22f39
4 changed files with 6 additions and 14 deletions
|
@ -29,9 +29,8 @@ in {
|
||||||
# TODO: Use option for border size
|
# TODO: Use option for border size
|
||||||
border = mkOption {default = 2;};
|
border = mkOption {default = 2;};
|
||||||
|
|
||||||
gap = mkOption {default = 5;};
|
gap = mkOption {default = 10;};
|
||||||
padding = mkOption {default = 51;}; # ?? journalctl --user -u waybar.service | grep height:
|
padding = mkOption {default = 56;}; # ?? journalctl --user -u waybar.service | grep height:
|
||||||
rounding = mkOption {default = 10;};
|
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
wallpaper = mkOption {default = false;};
|
wallpaper = mkOption {default = false;};
|
||||||
|
|
|
@ -120,7 +120,7 @@ in {
|
||||||
"col.shadow" = "rgba(00000040)";
|
"col.shadow" = "rgba(00000040)";
|
||||||
blur.enabled = false;
|
blur.enabled = false;
|
||||||
dim_special = 0;
|
dim_special = 0;
|
||||||
rounding = config.custom.rounding;
|
rounding = 12;
|
||||||
shadow_range = 50;
|
shadow_range = 50;
|
||||||
shadow_render_power = 4; # Distance falloff
|
shadow_render_power = 4; # Distance falloff
|
||||||
};
|
};
|
||||||
|
@ -197,7 +197,7 @@ in {
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#cursor
|
# https://wiki.hyprland.org/Configuring/Variables/#cursor
|
||||||
cursor = {
|
cursor = {
|
||||||
hide_on_key_press = true;
|
hide_on_key_press = true;
|
||||||
hotspot_padding = config.custom.gap;
|
#// hotspot_padding = 10;
|
||||||
#// min_refresh_rate = 60; # !! Hardware dependent
|
#// min_refresh_rate = 60; # !! Hardware dependent
|
||||||
#// no_break_fs_vrr = true;
|
#// no_break_fs_vrr = true;
|
||||||
#// no_hardware_cursors = true;
|
#// no_hardware_cursors = true;
|
||||||
|
|
|
@ -43,17 +43,9 @@ in {
|
||||||
# https://www.nerdfonts.com/cheat-sheet
|
# https://www.nerdfonts.com/cheat-sheet
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
style = ./style.css; # ?? waybar --log-level debug
|
||||||
systemd.enable = true; # Start on login
|
systemd.enable = true; # Start on login
|
||||||
|
|
||||||
# ?? waybar --log-level debug
|
|
||||||
style = ''
|
|
||||||
${readFile ./style.css}
|
|
||||||
|
|
||||||
.horizontal > box {
|
|
||||||
margin: 0 ${toString config.custom.gap}px ${toString config.custom.gap}px;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
|
|
||||||
### SETTINGS ###
|
### SETTINGS ###
|
||||||
# https://github.com/Alexays/Waybar/wiki/Configuration
|
# https://github.com/Alexays/Waybar/wiki/Configuration
|
||||||
#?? pkill -SIGUSR2 -x waybar
|
#?? pkill -SIGUSR2 -x waybar
|
||||||
|
|
|
@ -33,6 +33,7 @@ tooltip {
|
||||||
.horizontal > box {
|
.horizontal > box {
|
||||||
background: #002b36;
|
background: #002b36;
|
||||||
border: 2px #073642 solid;
|
border: 2px #073642 solid;
|
||||||
|
margin: 0 10px 10px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue