-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
84 lines (78 loc) · 2.67 KB
/
settings.py
File metadata and controls
84 lines (78 loc) · 2.67 KB
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
79
80
81
82
83
84
appsPath = {
"chrome": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"anki": "C:\\Program Files\\Anki\\anki.exe"
}
sizePositionDic = {
"full": [1, 1, 1, 1],
"leftHalf": [2, 2, 1, 3],
"rightHalf": [2, 2, 2, 4],
"topHalf": [2, 2, 1, 2],
"bottomHalf": [2, 2, 3, 4],
"topLeft": [2, 2, 1, 1],
"topRight": [2, 2, 2, 2],
"bottomLeft": [2, 2, 3, 3],
"bottomRight": [2, 2, 4, 4],
}
virtualDesktop = {
"Living Room": {
"window1": {
"appName": "chrome",
"sizePosition": "full",
"tabs": {
"calendar": "https://calendar.google.com/calendar/u/0/r?tab=lc",
"gmail": "https://mail.google.com/mail/u/0/#inbox",
"yt-subscribe-page": "https://www.youtube.com/feed/subscriptions",
"lofi": "https://www.youtube.com/watch?v=jfKfPfyJRdk",
"discord": "https://discord.com/channels/818124696822349834/818124696989335553"
}
}
},
"Biology": {
"window1": {
"appName": "chrome",
"sizePosition": "topLeft",
"tabs": {
"vipin-sharma-one-shot": "https://www.youtube.com/playlist?list=PLrHjxIp47OtXNUs3WPR_eYT_KPDe1Wau6"
}
},
"window2": {
"appName": "chrome",
"sizePosition": "rightHalf",
"tabs": {
"notion-bio-section": "https://www.notion.so/drmanab/1cf0b83eb42c45b1ae0817a3ee4d6dea?v"
"=c105e1f562424ad8a715ab9773a1847a"
}
},
"window3": {
"appName": "anki",
"sizePosition": "bottomLeft"
}
},
"Physics": {
"window1": {
"appName": "chrome",
"sizePosition": "full",
"tabs": {
"notion-mechanical-phy": "https://www.notion.so/drmanab/1cf0b83eb42c45b1ae0817a3ee4d6dea?v=907b1a0100ce4978aaac46ede35b3c3b"
}
}
},
"Chemistry": {
"window1": {
"appName": "chrome",
"sizePosition": "leftHalf",
"tabs": {
"chem-previous-year-question": "https://www.youtube.com/playlist?list=PLnqKSeTNhltFGSYHv8b26zht8eJSN17HV",
""
"full-chem-nitesh-devnani": "https://www.youtube.com/playlist?list=PLrHjxIp47OtWO4k0UUkKN7prnBKYABgPl"
}
},
"window2": {
"appName": "chrome",
"sizePosition": "rightHalf",
"tabs": {
"notion-physical-chem": "https://www.notion.so/drmanab/1cf0b83eb42c45b1ae0817a3ee4d6dea?v=8846bf306e594b59937d941d34a3d795"
}
}
}
}