-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
68 lines (55 loc) · 1.31 KB
/
config.toml
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
[browse.ui]
exec = "rofi -dmenu -theme venture.rasi -markup-rows"
format = "{icon} {name}"
supports.pango = true
[browse.profiles.home]
exec = "xdg-open {path}"
paths = [
"~/Documents",
"~/Downloads/*",
"~/Pictures/**/*",
"~/Videos/*",
]
exclude = ["*.mobi", "*.zip", "*/Screenshots/*"]
show.directories = false
[browse.profiles.code]
exec = "code -r {path}"
paths = [
"~/sourcecode/*",
"~/sourcecode/school/**/*",
"~/sourcecode/atomicjolt/*",
"~/sourcecode/atomicjolt/otc/*"
]
exclude = ["school", "*.zip", "*otc"]
show.files = false
[browse.profiles.stress]
exec = "code -r {path}"
paths = ["./files/**/*"]
show.files = false
[quicklaunch]
exec = "code -r {path}"
[quicklaunch.ui]
exec = "rofi -dmenu -theme venture.rasi -markup-rows -sep '|' -eh 2"
format = "{icon} {name}\n<span size='smaller' weight='light'>{details}</span>"
seperator = "|"
supports.pango = true
[[quicklaunch.entries]]
name = "arc"
path = "~/sourcecode/arc"
icon = ":py:"
details = ":py: python"
[[quicklaunch.entries]]
name = "Comic Site"
path = "~/sourcecode/comic-site"
icon = ""
details = ":js: javascript, svelte"
[[quicklaunch.entries]]
name = "Sway"
path = "~/.config/sway/config"
icon = "\uF2D2"
details = ":config: config"
[[quicklaunch.entries]]
name = "Venture"
path = "~/sourcecode/venture"
icon = "\uE771"
details = ":py: python"