diff options
author | zachir <zachir@librem.one> | 2024-07-23 16:42:28 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-07-23 16:42:28 -0500 |
commit | e7364186505ccd713b71bd73652438b90d29ecd8 (patch) | |
tree | 26af34525a17b62a541983fe1938e58e01235e47 | |
parent | 5b70fc792f7b0cc92c5b28c59ff95984ce886db7 (diff) | |
parent | 26f7b3d0cadf0adebe9ed88f0042c049781ccb80 (diff) |
Merge branch 'master' into cas
-rw-r--r-- | hypr/hyprland.conf | 8 | ||||
-rw-r--r-- | waybar/config | 22 |
2 files changed, 10 insertions, 20 deletions
diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 4fdaeb8..1c147eb 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -97,7 +97,7 @@ misc { disable_splash_rendering = true enable_swallow = true swallow_regex = ^(kitty)$ - swallow_exception_regex = ^(.*)(ueberzug)$ + swallow_exception_regex = ^(.*ueberzug)$ vfr = false vrr = 0 } @@ -107,7 +107,7 @@ misc { decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 10 - drop_shadow = yes + drop_shadow = no shadow_range = 4 shadow_render_power = 3 col.shadow = rgba(1a1a1aee) @@ -325,8 +325,8 @@ submap = reset #}}} #{{{ Menu bindings -bind = $mainMod, R, exec, exec sh -c "$(tofi-drun -c ~/.config/tofi/themes/dmenu_vertical --prompt-text Run:)" -bind = $mainMod, D, exec, exec sh -c "$(tofi-run -c ~/.config/tofi/themes/dmenu_vertical --prompt-text Run:)" +bind = $mainMod, R, exec, sh -c "$(tofi-drun -c ~/.config/tofi/themes/dmenu_vertical --prompt-text Run:)" +bind = $mainMod, D, exec, sh -c "$(tofi-run -c ~/.config/tofi/themes/dmenu_vertical --prompt-text Run:)" bind = $mainMod $secdMod, Q, exec, qbc bind = $mainMod $secdMod, W, exec, lwc bind = $mainMod $secdMod, E, exec, mbc diff --git a/waybar/config b/waybar/config index d72fbf8..8eaff66 100644 --- a/waybar/config +++ b/waybar/config @@ -104,30 +104,20 @@ "format": "{capacity}%", "max-length": 25 }, - "battery#BAT1": { - "bat": "BAT1", - "interval": 60, - "state": { - "warning": 30, - "critical": 15 - }, - "format": "{capacity}%", - "max-length": 25 - }, - "temperature#0": { + "temperature#cpu": { "thermal-zone": 0, // "hwmon-path": "cat /sys/class/hwmon/hwmon5/temp1_input", "critical-threshold": 110, - // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format-critical": "{temperatureC}°C", + "format": "", "format-icons": ["", "", ""] }, - "temperature#1": { + "temperature#gpu": { "thermal-zone": 1, // "hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input", "critical-threshold": 126, - // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format-critical": "{temperatureC}°C", + "format": "", "format-icons": ["", "", ""] }, "backlight": { |