🔧 (home/wayland/kanshi) replace deprecated config

This commit is contained in:
Laureηt 2024-05-25 17:22:06 +02:00
parent 88b8388f2a
commit a725909395
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

View file

@ -3,9 +3,10 @@
enable = true; enable = true;
systemdTarget = "hyprland-session.target"; systemdTarget = "hyprland-session.target";
profiles = { settings = [
office = { {
outputs = [ profile.name = "office";
profile.outputs = [
{ {
criteria = "DP-3"; criteria = "DP-3";
status = "enable"; status = "enable";
@ -15,15 +16,16 @@
status = "disable"; status = "disable";
} }
]; ];
}; }
home = { {
outputs = [ profile.name = "home";
profile.outputs = [
{ {
criteria = "eDP-1"; criteria = "eDP-1";
status = "enable"; status = "enable";
} }
]; ];
}; }
}; ];
}; };
} }