mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-10 02:59:37 +01:00
13 lines
184 B
Bash
Executable File
13 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$1" in
|
|
switch) qtile cmd-obj -o group $2 -f toscreen
|
|
;;
|
|
restart) qtile cmd-obj -o cmd -f restart
|
|
;;
|
|
shutdown) qtile cmd-obj -o cmd -f shutdown
|
|
;;
|
|
esac
|
|
|
|
|