1234567891011121314151617 |
- #!/bin/bash
- # GNU GPL
- # wminizer
- # runs wmrotate where wmrotate ran window managers
- # this enables killing the current wmrotate, to
- # cycle to the next wmrotate., thus enabling changing
- # the wm list, without having to restart your x session.
- #
- # in theory^
- while true
- do
- wmrotate1
- wmrotate2
- done
|