home: wm: i3: bigger 'htop' window
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
It seems like one cannot use multiple commands in a `for_window` directive. So use two different ones.
This commit is contained in:
parent
e551c44748
commit
e568b85781
|
@ -370,6 +370,20 @@ in
|
||||||
# FIXME
|
# FIXME
|
||||||
# { commdand; always; notification; }
|
# { 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";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue