-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.lua
More file actions
33 lines (33 loc) · 745 Bytes
/
settings.lua
File metadata and controls
33 lines (33 loc) · 745 Bytes
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
_G.data:extend({
{
type = "bool-setting",
name = "folk-shuttle-dot-to-go",
setting_type = "runtime-per-user",
default_value = true,
},
{
type = "string-setting",
name = "folk-shuttle-ignore-stations",
setting_type = "runtime-per-user",
default_value = "",
allow_blank = true,
},
{
type = "color-setting",
name = "folk-shuttle-color",
setting_type = "runtime-per-user",
default_value = { r = 0.07, g = 0.92, b = 0, a = 0.5, },
},
{
type = "bool-setting",
name = "folk-shuttle-clear-filter-on-confirm",
setting_type = "runtime-per-user",
default_value = true,
},
{
type = "bool-setting",
name = "folk-shuttle-focus-filter-on-show",
setting_type = "runtime-per-user",
default_value = true,
},
})