summaryrefslogtreecommitdiff
path: root/sigils/home/services/hyprland.scm
diff options
context:
space:
mode:
authorSisiutl <sisiutl@egregore.fun>2024-11-16 13:21:06 +0100
committerSisiutl <sisiutl@egregore.fun>2024-11-16 13:21:06 +0100
commitb145f49e502abef18053d35c3be5c70bf983aca2 (patch)
tree6307b3761936da9637df6fdabfa16f6915c27149 /sigils/home/services/hyprland.scm
parent6bc2d129406a80b98cee2ef1b8726665dc3951f5 (diff)
update default config
Diffstat (limited to 'sigils/home/services/hyprland.scm')
-rw-r--r--sigils/home/services/hyprland.scm53
1 files changed, 35 insertions, 18 deletions
diff --git a/sigils/home/services/hyprland.scm b/sigils/home/services/hyprland.scm
index 5c2dc89..645c60c 100644
--- a/sigils/home/services/hyprland.scm
+++ b/sigils/home/services/hyprland.scm
@@ -90,14 +90,16 @@
;;; Hyprland
(define %default-hyprland-config
- '(($terminal kitty)
+ '((autogenerated 0)
+ ;; monitors
+ (monitor () preferred auto auto)
+ ;; vars
+ ($terminal kitty)
($fileManager dolphin)
($menu (wofi --show drun))
+ (env XCURSOR_SIZE 24)
+ (env HYPRCURSOR_SIZE 24)
($mainMod SUPER)
- ;; autogenerated
- (autogenerated 0)
- ;; monitors
- (monitor () preferred auto auto)
;; general
(general ((gaps_in 5)
(gaps_out 20)
@@ -111,23 +113,38 @@
(decoration ((rounding 10)
(active_opacity 1.0)
(inactive_opacity 1.0)
- (drop_shadow #t)
- (shadow_range 4)
- (shadow_render_power 3)
- (col.shadow (rgba 1a1a1aee))
+ (shadow ((enabled #t)
+ (range 4)
+ (render_power 3)
+ (color (rgba 1a1a1aee))))
(blur ((enabled #t)
(size 3)
(passes 1)
(vibrancy 0.1696)))))
;; animations
- (animations ((enabled #t)
- (bezier myBezier 0.05 0.9 0.1 1.05)
- (animation windows 1 7 myBezier)
- (animation windowsOut 1 7 default (popin 80%))
- (animation border 1 10 default)
- (animation borderangle 1 8 default)
- (animation fade 1 7 default)
- (animation workspaces 1 6 default)))
+ (animations ((enabled "yes, please :)")
+ (bezier easeOutQuint 0.23.1 0.32 1)
+ (bezier easeInOutCubic 0.65 0.05 0.36 1)
+ (bezier linear 0 0 1 1)
+ (bezier almostLinear 0.5 0.5 0.75 1.0)
+ (bezier quick 0.15 0 0.1 1)
+
+ (animation global 1 10 default)
+ (animation border 1 5.39 easeOutQuint)
+ (animation windows 1 4.79 easeOutQuint)
+ (animation windowsIn 1 4.1 easeOutQuint (popin 87%))
+ (animation windowsOut 1 1.49 linear (popin 87%))
+ (animation fadeIn 1 1.73 almostLinear)
+ (animation fadeOut 1 1.46 almostLinear)
+ (animation fade 1 3.03 quick)
+ (animation layers 1 3.81 easeOutQuint)
+ (animation layersIn 1 4 easeOutQuint fade)
+ (animation layersOut 1 1.5 linear fade)
+ (animation fadeLayersIn 1 1.79 almostLinear)
+ (animation fadeLayersOut 1 1.39 almostLinear)
+ (animation workspaces 1 1.94 almostLinear fade)
+ (animation workspacesIn 1 1.21 almostLinear fade)
+ (animation workspacesOut 1 1.94 almostLinear fade)))
;; dwindle
(dwindle ((pseudotile #t)
(preserve_split #t)))
@@ -189,7 +206,7 @@
(bind $mainMod mouse_up workspace e-1)
(bindm $mainMod mouse:272 movewindow)
(bindm $mainMod mouse:273 resizewindow)
- (bindel () XF86AudioRaiseVolume exec (wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+))
+ (bindel () XF86AudioRaiseVolume exec (wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+))
(bindel () XF86AudioLowerVolume exec (wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-))
(bindel () XF86AudioMute exec (wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle))
(bindel () XF86AudioMicMute exec (wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle))