diff options
author | Thanos Apollo <[email protected]> | 2025-01-29 11:21:29 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2025-01-29 11:21:29 +0200 |
commit | 04ec6064591ab95e75c4cc396cc5bd7084fca5dd (patch) | |
tree | 65bdbd08c55ca9a6abae4eae38157a4ac3e0403b /.config | |
parent | 3e932a916d0c9799053425679dc76aaacdecf741 (diff) |
Update hyprland theming.
Diffstat (limited to '.config')
-rw-r--r-- | .config/hypr/hyprland.conf | 24 | ||||
-rw-r--r-- | .config/waybar/style.css | 9 |
2 files changed, 18 insertions, 15 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 91e3e22..164c754 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -31,6 +31,7 @@ $menu = fuzzel exec-once = nm-applet exec-once = waybar exec-once = emacs +exec-once = dunst # exec-once = waybar & hyprpaper & firefox @@ -52,10 +53,10 @@ env = HYPRCURSOR_SIZE,24 # https://wiki.hyprland.org/Configuring/Variables/#general general { - gaps_in = 5 - gaps_out = 10 + gaps_in = 2 + gaps_out = 5 - border_size = 2 + border_size = 1 # https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg @@ -72,7 +73,7 @@ general { # https://wiki.hyprland.org/Configuring/Variables/#decoration decoration { - rounding = 10 + rounding = 20 # Change transparencny of focused and unfocused windows active_opacity = 1.0 @@ -87,10 +88,10 @@ decoration { # https://wiki.hyprland.org/Configuring/Variables/#blur blur { - enabled = true - size = 3 + enabled = false + size = 1 passes = 1 - vibrancy = 0.1696 + vibrancy = 0.42 } } @@ -161,7 +162,7 @@ input { kb_layout = us,gr kb_variant = kb_model = - kb_options = grp:win_space_toggle ctrl:nocaps + kb_options = grp:win_space_toggle, ctrl:nocaps kb_rules = follow_mouse = 1 @@ -197,14 +198,13 @@ bind = $mainMod, RETURN, exec, emacsclient -c bind = $mainMod, R, exec, fuzzel bind = $mainMod, Q, killactive, bind = $mainMod, M, exit, -bind = $mainMod, V, togglefloating, +bind = $mainMod, cc, togglefloating, bind = $mainMod, R, exec, $menu -bind = $mainMod, P, pseudo, # dwindle -bind = $mainMod, J, togglesplit, # dwindle bind = $mainMod SHIFT, f, fullscreen, bind = $mainMod, comma, exec, grimshot save area bind = $mainMod, l, exec, swaylock +bind = $mainMod, w, exec, emacsclient -e '(thanos/pass-launcher)' # Move focus with mainMod + arrow keys # bind = $mainMod, b, movefocus, l @@ -275,6 +275,8 @@ bindl = , XF86AudioPrev, exec, playerctl previous # Example windowrule v2 # windowrulev2 = float,class:^(kitty)$,title:^(kitty)$ +windowrulev2 = float,class:^(mpv)$ + # Ignore maximize requests from apps. You'll probably like this. windowrulev2 = suppressevent maximize, class:.* diff --git a/.config/waybar/style.css b/.config/waybar/style.css index c98ace6..4ac3adf 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -51,7 +51,7 @@ window#waybar { box-shadow: none; text-shadow: none; padding: 3px; - border-radius: 9px; + border-radius: 100%; padding-left: 4px; padding-right: 4px; animation: border-pulse 20s ease-in infinite; @@ -60,8 +60,8 @@ window#waybar { #workspaces button.active { color: #338fff; - border-radius: 50%; - background-color: black; + border-radius: 100%; + background-color: #171717; padding-left: 8px; padding-right: 8px; animation: border-pulse 20s ease-in infinite; @@ -78,7 +78,8 @@ window#waybar { } #workspaces button:hover { - color: #9CCFD8; + color: #338fff; + /* background-color: #1c1e1f; */ border-radius: 15px; padding-left: 2px; padding-right: 2px; |