Compare commits
No commits in common. "8519ba9fe5b7ac81dfb6b0ee74fa8006c6b42ae4" and "dff251d0f9e7063f74bc46d1ec4adeb265c7e489" have entirely different histories.
8519ba9fe5
...
dff251d0f9
|
@ -21,7 +21,7 @@
|
|||
cursor = {blink = true;};
|
||||
mouse = {hide-when-typing = true;};
|
||||
colors = with config.scheme; rec {
|
||||
alpha = 0.9;
|
||||
opacity = 0.9;
|
||||
background = base00;
|
||||
foreground = base05;
|
||||
regular0 = base02;
|
||||
|
|
|
@ -51,17 +51,16 @@ spawn-at-startup "set-background"
|
|||
|
||||
binds {
|
||||
Mod+Shift+Slash { show-hotkey-overlay; }
|
||||
Super+Alt+L { spawn "swaylockfx"; }
|
||||
|
||||
Mod+F1 { spawn "swaylockfx"; }
|
||||
Mod+P { spawn "wlogout"; }
|
||||
Mod+D { spawn "fuzzel"; }
|
||||
Mod+Return { spawn "foot"; }
|
||||
Mod+Shift+Return { spawn "emacsclient" "-c"; }
|
||||
Mod+Shift+Return { spawn "fuzzel"; }
|
||||
Mod+E { spawn "emacsclient" "-c"; }
|
||||
Mod+P { spawn "wlogout"; }
|
||||
|
||||
Mod+Z { spawn "swaync-client" "-t" "-sw"; }
|
||||
Mod+Shift+Z { spawn "swaync-client" "-d" "-sw"; }
|
||||
|
||||
Super+Alt+L { spawn "swaylockfx"; }
|
||||
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn "volumectl" "-u" "+" "5"; }
|
||||
XF86AudioLowerVolume allow-when-locked=true { spawn "volumectl" "-u" "-" "5"; }
|
||||
XF86AudioMute allow-when-locked=true { spawn "volumectl" "%"; }
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
}: {
|
||||
home.packages = [pkgs.swaynotificationcenter];
|
||||
xdg.configFile."swaync/style.css".text = with config.scheme.withHashtag; let
|
||||
alpha = "0.8";
|
||||
alpha-background = "rgba(${config.scheme.base00-rgb-r}, ${config.scheme.base00-rgb-g}, ${config.scheme.base00-rgb-b}, ${alpha})";
|
||||
alpha-background = "${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.8";
|
||||
in ''
|
||||
* {
|
||||
all: unset;
|
||||
|
@ -22,7 +21,7 @@
|
|||
border-radius: 10px;
|
||||
border: 1px solid ${config.scheme.withHashtag.${accentColour}};
|
||||
margin: 18px;
|
||||
background-color: ${alpha-background};
|
||||
background-color: rgba(${alpha-background});
|
||||
color: ${base05};
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -145,7 +144,7 @@
|
|||
border-radius: 10px;
|
||||
border: 1px solid ${config.scheme.withHashtag.${accentColour}};
|
||||
margin: 18px;
|
||||
background-color: ${alpha-background};
|
||||
background-color: rgba(${alpha-background});
|
||||
color: ${base05};
|
||||
padding: 14px;
|
||||
}
|
||||
|
|
Reference in a new issue