1
1
Fork 0

Compare commits

..

No commits in common. "657e7289ecbb45e3d75aeac818963228913ebf76" and "bc85c22f393efa9f33d0222d738998ac85f3842c" have entirely different histories.

4 changed files with 6 additions and 14 deletions

View file

@ -29,9 +29,8 @@ in {
# TODO: Use option for border size
border = mkOption {default = 2;};
gap = mkOption {default = 5;};
padding = mkOption {default = 51;}; # ?? journalctl --user -u waybar.service | grep height:
rounding = mkOption {default = 10;};
gap = mkOption {default = 10;};
padding = mkOption {default = 56;}; # ?? journalctl --user -u waybar.service | grep height:
### Misc
wallpaper = mkOption {default = false;};

View file

@ -120,7 +120,7 @@ in {
"col.shadow" = "rgba(00000040)";
blur.enabled = false;
dim_special = 0;
rounding = config.custom.rounding;
rounding = 12;
shadow_range = 50;
shadow_render_power = 4; # Distance falloff
};
@ -197,7 +197,7 @@ in {
# https://wiki.hyprland.org/Configuring/Variables/#cursor
cursor = {
hide_on_key_press = true;
hotspot_padding = config.custom.gap;
#// hotspot_padding = 10;
#// min_refresh_rate = 60; # !! Hardware dependent
#// no_break_fs_vrr = true;
#// no_hardware_cursors = true;

View file

@ -43,17 +43,9 @@ in {
# https://www.nerdfonts.com/cheat-sheet
programs.waybar = {
enable = true;
style = ./style.css; # ?? waybar --log-level debug
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 ###
# https://github.com/Alexays/Waybar/wiki/Configuration
#?? pkill -SIGUSR2 -x waybar

View file

@ -33,6 +33,7 @@ tooltip {
.horizontal > box {
background: #002b36;
border: 2px #073642 solid;
margin: 0 10px 10px;
padding: 4px;
}