Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
2017-05-03 16:10:13 +03:00
commit c78cb78ff0
72 changed files with 3570 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# A simple dwm session
PATH+=":$HOME/.config/bspwm/bin"
start_session() {
exec bspwm
}

View File

@@ -0,0 +1 @@
bspwm

View File

@@ -0,0 +1,13 @@
# A simple dwm session
session.cleanup() { service dwm-status stop; }
trap session.cleanup EXIT
start_session() {
wmname LG3D
service dwm-status start
while true; do
dwm
done
}

View File

@@ -0,0 +1,5 @@
# Start nothing, the DM will start it for us
start_session() {
:
}

View File

@@ -0,0 +1,16 @@
# A simple dwm session
session.cleanup() {
service zwm-daemon stop
service sxhkd stop
}
trap session.cleanup EXIT
start_session() {
rm -r "/tmp/$USER/zwm"
service zwm-daemon start
service sxhkd start
sleep infinity
}