Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: Media apps hyprland rule

Tweaks vlc and mpv so that they aren't affected by VRR and more

+16
assets/wallpaper.jpg

This is a binary file and will not be displayed.

+16
nix/home/modules/de/hyprland/default.nix
··· 136 136 move = "(monitor_w-window_w-(monitor_w*0.03)) (monitor_h-window_h-(monitor_h*0.03))"; 137 137 size = "(monitor_w*0.25) (monitor_h*0.25)"; 138 138 }; 139 + mkMediaAppRule = args: 140 + args 141 + // { 142 + idle_inhibit = "focus"; 143 + immediate = "on"; 144 + no_vrr = "on"; 145 + opaque = "on"; 146 + }; 139 147 in [ 140 148 (mkAutoFloatRule { 141 149 name = "floating-discord"; ··· 150 158 name = "floating-firefox"; 151 159 "match:class" = "^(Picture-in-Picture)$"; 152 160 "match:initial_title" = "^(Picture in picture)$"; 161 + }) 162 + (mkMediaAppRule { 163 + name = "media-mpv"; 164 + "match:class" = "^(mpv)$"; 165 + }) 166 + (mkMediaAppRule { 167 + name = "media-vlc"; 168 + "match:class" = "^(vlc)$"; 153 169 }) 154 170 { 155 171 name = "steam-games";