mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
095f3e32ae
kanshi configurations can have more than one exec statement in a profile. This change allows services.kanshi.profiles.<name>.exec to be a list of strings rather than a single string.
21 lines
447 B
Text
21 lines
447 B
Text
profile backwardsCompat {
|
|
output "LVDS-1" enable
|
|
exec echo "7 eight 9"
|
|
}
|
|
|
|
profile desktop {
|
|
output "eDP-1" disable
|
|
output "Iiyama North America PLE2483H-DP" enable position 0,0
|
|
output "Iiyama North America PLE2483H-DP 1158765348486" enable mode 1920x1080 position 1920,0 scale 2.100000 transform flipped-270
|
|
exec echo "1 two 3"
|
|
exec echo "4 five 6"
|
|
}
|
|
|
|
profile nomad {
|
|
output "eDP-1" enable
|
|
}
|
|
|
|
profile test {
|
|
output "*" enable
|
|
}
|
|
|