diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-22 15:35:32 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-22 15:35:32 -0400 |
commit | 981445aa983313b4655a950146e889b8523c9aa4 (patch) | |
tree | daa475464de319d452c921f80278aca56352ce4c /programs | |
parent | change wallpaper (again) (diff) | |
download | dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.tar.gz dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.tar.bz2 dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.zip |
add 10 bit color depth to shinji
Diffstat (limited to '')
-rw-r--r-- | programs/hypr/hyprland.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/programs/hypr/hyprland.nix b/programs/hypr/hyprland.nix index f339f8e..a37be7f 100644 --- a/programs/hypr/hyprland.nix +++ b/programs/hypr/hyprland.nix @@ -85,7 +85,7 @@ in { # Monitors monitor = map ( - monitor: "${monitor.name}, highres, auto, ${toString monitor.scale}" + monitor: "${monitor.name}, highres, auto, ${toString monitor.scale}, bitdepth, ${toString monitor.bitdepth}" ) config.monitors; @@ -337,6 +337,11 @@ in { no_update_news = true; no_donation_nag = true; }; + + # Experimental + experimental = { + xx_color_management_v4 = true; + }; }; # end settings }; # end hyprland }; # end home-manager |