restore missing file: dwmc

This commit is contained in:
Ray Elliott 2020-03-25 17:14:13 +00:00
parent d21492cbea
commit 23dfb55033
2 changed files with 40 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,4 +2,3 @@ drw.o
dwm.o
dwm
util.o
dwmc

40
dwmc Executable file
View File

@ -0,0 +1,40 @@
#!/usr/bin/env sh
signal() {
xsetroot -name "fsignal:$*"
}
case $# in
1)
case $1 in
setlayout | view | viewall | togglebar | togglefloating | zoom | killclient | quit)
signal $1
;;
*)
echo "Unknown command or missing one argument."
exit 1
;;
esac
;;
2)
case $1 in
view)
signal $1 ui $2
;;
viewex | toggleviewex | tagex | toggletagex | setlayoutex | focusstack | incnmaster | focusmon | tagmon)
signal $1 i $2
;;
setmfact)
signal $1 f $2
;;
*)
echo "Unknown command or one too many arguments."
exit 1
;;
esac
;;
*)
echo "Too many arguments."
exit 1
;;
esac