tons of theme tweaks, +gruvbox

This commit is contained in:
Reid 2026-04-22 21:32:27 -07:00
parent 80d22a470a
commit 2ad77494b2
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
30 changed files with 410 additions and 371 deletions

View file

@ -65,7 +65,7 @@ in {
};
layout = {
gaps = 6;
gaps = config.modules.desktop.themes.padding;
center-focused-column = "on-overflow";
@ -229,7 +229,7 @@ in {
# TODO: configure popups
window-rules = [
{
geometry-corner-radius = allCorners 10.0;
geometry-corner-radius = allCorners (config.modules.desktop.themes.rounding * 1.0);
clip-to-geometry = true;
}
{
@ -310,7 +310,6 @@ in {
];
# TODO: add shadows onto notifications. weird geometry beware !!!
# TODO: rounded vicinae
layer-rules = [
{
matches = [
@ -318,13 +317,11 @@ in {
# obliterate all dmenu-like things--too dangerous to stream (clipboard history, passwords)
{ namespace = "^rofi$"; }
{ namespace = "^vicinae$"; }
{ namespace = "^launcher$"; }
];
block-out-from = "screen-capture";
}
{
matches = [
{ namespace = "^launcher$"; }
{ namespace = "^rofi$"; }
{ namespace = "^vicinae$"; }
{ namespace = "^wob$"; }
@ -339,13 +336,12 @@ in {
}
# shadow rounded corner cases...
# defined in program config but we need to edit geometry too for shadows!!
# monospace
{
matches = [
{ namespace = "^launcher$"; }
{ namespace = "^rofi$"; }
{ namespace = "^vicinae$"; }
];
geometry-corner-radius = allCorners (config.modules.desktop.fonts.fonts.monospace.size * 1.0); # its 1em, so
geometry-corner-radius = allCorners (config.modules.desktop.themes.rounding * 1.0);
}
];
@ -354,7 +350,6 @@ in {
in {
"Mod+Shift+Slash".action = show-hotkey-overlay;
# "Mod+D".action = spawn "fuzzel";
"Mod+D".action = spawn "vicinae" "vicinae://toggle";
"Mod+Q".action = close-window;
@ -431,7 +426,7 @@ in {
"Mod+Shift+Minus".action = set-window-height "-10%";
"Mod+Shift+Equal".action = set-window-height "+10%";
"Print".action.screenshot = { show-pointer = false; };
"Print".action.screenshot-screen = { show-pointer = false; };
"Mod+Grave".action = toggle-overview;
@ -457,7 +452,6 @@ in {
"XF86AudioNext".action = sh "${lib.getExe pkgs.playerctl} next";
"Mod+Shift+C".action = sh "${lib.getExe pkgs.hyprpicker} -a";
# "Mod+V".action = sh "${config.modules.desktop.cliphist.summonScript}";
"Mod+V".action = spawn "vicinae" "vicinae://extensions/vicinae/clipboard/history";
"Mod+Shift+Control+T".action = toggle-debug-tint;