Mon Jun 3 06:06:35 PM CEST 2024
This commit is contained in:
parent
03f89ffbda
commit
4e7e951cb3
|
@ -9,6 +9,7 @@
|
|||
./alacritty
|
||||
./firefox
|
||||
./ssh
|
||||
./mpv
|
||||
];
|
||||
services.hyprpaper = {
|
||||
settings = {
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
config = {
|
||||
osc = "no";
|
||||
save-position-on-quit = "yes";
|
||||
sub-auto = "fuzzy";
|
||||
profile = "gpu-hq";
|
||||
scale = "ewa_lanczossharp";
|
||||
cscale = "ewa_lanczossharp";
|
||||
video-sync = "display-resample";
|
||||
interpolation = "true";
|
||||
tscale = "oversample";
|
||||
hwdec = "auto";
|
||||
force-window = "yes";
|
||||
Idle = {
|
||||
profile-cond = "p[\"idle-active\"]";
|
||||
profile-restore = "copy-equal";
|
||||
title = "' '";
|
||||
keepaspect = "no";
|
||||
background = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue