home: wm: i3: bigger 'htop' window

It seems like one cannot use multiple commands in a `for_window`
directive. So use two different ones.
This commit is contained in:
Bruno BELANYI 2022-03-29 15:42:19 +02:00
parent 15602412c8
commit 7334a84a77
1 changed files with 14 additions and 0 deletions

View File

@ -370,6 +370,20 @@ in
# FIXME
# { commdand; always; notification; }
];
window = {
commands = [
# Make htop window bigger
{
criteria = { title = "^htop$"; };
command = "resize set 80 ppt 80 ppt";
}
{
criteria = { title = "^htop$"; };
command = "move position center";
}
];
};
};
};
};