forked from timbertson/shellshape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (74 loc) · 2.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<title>Let's tile!</title>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.11.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/lib/jquery-1.5.1.js"></script>
<script type="text/javascript" src="js/lib/underscore.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript" src="js/tiling.js"></script>
<script type="text/javascript" src="js/fake_mutter.js"></script>
<style>
body {
font-family: sans-serif;
}
.window {
overflow: hidden;
}
.window h3 {
display:block;
text-align:center;
size:100%;
}
ul, ul li, h3 { margin:0; padding:0; }
ul li {
color:#888;
list-style-type: none;
}
ul li b {
font-size:1.7em;
line-height: 1em;
color:#444;
position:relative;
top:0.2em;
min-width: 2em;
text-align:center;
display:inline-block;
}
ul li.pending {
-moz-opacity: 0.4;
-webkit-opacity: 0.4;
}
</style>
</head>
<body>
<div id="screen"></div>
<div style="height:520px;"></div>
<ul style="position:absolute; left:400px">
<li><b>,</b> more windows in main area</li>
<li><b>.</b> less windows in main area</li>
<li><b>h</b> bigger main area</li>
<li><b>l</b> smaller main area</li>
<li><b>i</b> bigger tile area</li>
<li><b>u</b> smaller tile area</li>
<li><b>⇧J</b> swap with next</li>
<li><b>⇧K</b> swap with prev</li>
<li><b>⇧_</b> (shift + space) swap with main</li>
</ul>
<ul>
<li><b>j</b> next</li>
<li><b>k</b> prev</li>
<li><b><abbr title="return">↵</abbr></b> new window</li>
<li><b>q</b> close window</li>
<li><b>a</b> send to front/back</li>
<li><b>z</b> toggle maximize</li>
<li><b>t</b> tile</li>
<li><b>⇧T</b> un-tile</li>
</ul>
<h3><br /><br/><br/>Mouse motions:</h3>
<ul>
<li><b>resize</b> resize window</li>
<li><b>^ + resize</b> (ctrl + resize) resize tiling boundaries</li>
<li><b>move</b> move tile center / swap tiles</li>
</ul>
</body>
</head>