-
Notifications
You must be signed in to change notification settings - Fork 12
/
layouts.lua
47 lines (47 loc) · 1.07 KB
/
layouts.lua
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
return {
{
name = 'Standard Dev',
cells = {
{ '0,0 7x20', '0,0 7x20' },
{ '7,0 21x20', '7,0 30x20' },
{ '28,0 32x20', '37,0 23x20' },
{ '42,2 16x16', '42,2 16x16' },
{ '30,3 20x14', '39,3 16x14' },
},
apps = {
Ray = { cell = 1, open = true },
Brave = { cell = 2, open = true },
Linear = { cell = 2 },
Obsidian = { cell = 2 },
WezTerm = { cell = 3, open = true },
Tower = { cell = 3 },
Slack = { cell = 4 },
Discord = { cell = 5 },
},
},
{
name = 'No Ray',
cells = {
{ '0,0 21x20' },
{ '21,0 39x20' },
},
apps = {
Brave = { cell = 1, open = true },
WezTerm = { cell = 2, open = true },
Tower = { cell = 2 },
},
},
{
name = 'Code Focused',
cells = {
{ '0,0 7x20', positions.sixths.left },
{ '7,0 53x20', positions.fiveSixths.right },
},
apps = {
Ray = { cell = 1, open = true },
WezTerm = { cell = 2, open = true },
Brave = { cell = 2, open = true },
Tower = { cell = 2 },
},
},
}