31 lines
363 B
Plaintext
31 lines
363 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# cortilectl - helper script for cortile tiling manager
|
||
|
|
||
|
# Cortile config file
|
||
|
CONFFILE="$HOME/.config/cortile/config.toml"
|
||
|
|
||
|
start() {
|
||
|
cortile &
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
pkill cortile
|
||
|
}
|
||
|
|
||
|
toggle() {
|
||
|
:
|
||
|
}
|
||
|
editconf() {
|
||
|
xdg-open ${CONFFILE}
|
||
|
}
|
||
|
|
||
|
|
||
|
case "$1" in
|
||
|
start) start;;
|
||
|
stop) stop;;
|
||
|
toggle) toggle;;
|
||
|
editconf) editconf;;
|
||
|
*):;;
|
||
|
esac
|