1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-14 21:11:08 +01:00

kanshi: fix exec configuration

Also add a test case for the exec option.

PR #1446
This commit is contained in:
Nicolas Berbiche 2020-08-18 18:49:15 -04:00 committed by Robert Helgesson
parent a063b73d5c
commit 182454fe6b
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@ 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"
}
profile nomad {

View file

@ -11,6 +11,7 @@
}];
};
desktop = {
exec = ''echo "1 two 3"'';
outputs = [
{
criteria = "eDP-1";