diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2015-12-07 16:19:36 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2015-12-07 16:19:36 -0300 |
commit | 69f8194da778a692b6b0c14f43d9611c2072e8ba (patch) | |
tree | 8d9f252bf7a6db515a05800a73b35b21d1692cfb /autostart | |
parent | 12faa87415d91820503b6b1c98ebabbddc50d665 (diff) | |
download | dotwm-69f8194da778a692b6b0c14f43d9611c2072e8ba.tar.gz |
Implement desktops.
It's somewhat buggy. But works :). There're 2 desktops only for now, maybe later
I will implement something more dynamic
Diffstat (limited to 'autostart')
-rwxr-xr-x | autostart | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,6 +5,8 @@ dot() { printf "%s " $@ | netcat -U dotwm.sock } +nitrogen --restore & + dot bind Mod4 p exec dmenu_run dot bind Mod4 Return exec xterm dot bind Mod4 f fullscreen @@ -29,11 +31,12 @@ dot bind Mod4 j move-win 0 10 dot bind Mod4 k move-win 0 -10 dot bind Mod4 l move-win 10 0 - dot bind Mod4-Shift c close-win - dot bind Mod4 Tab focus-next +dot bind Mod4 1 change-desktop 0 +dot bind Mod4 2 change-desktop 1 + #netcat -U dotwm.sock <<EOF #bind Mod4 p exec dmenu_run #bind Mod4 Return exec xterm |