OSDN Git Service

instantupdate auto repairs repos
[instantos/instantOS.git] / programs / instantpicklayout
1 #!/bin/bash
2
3 LAYOUT="$(echo "tile
4 grid
5 float
6 monocle
7 tcl
8 deck
9 overview
10 bstack
11 bstackhoriz" | imenu -l "choose layout")"
12
13 if [ -z "$LAYOUT" ]
14 then
15     exit
16 fi
17
18 instantwmctrl layout "$LAYOUT"
19