-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapplication.conf
executable file
·175 lines (163 loc) · 5.42 KB
/
application.conf
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
general: {
debounceDelay: "150ms"
}
keyboard: {
# Global shortcut to open the command search dialog and bring it to the front.
openShortcut: "alt SPACE"
openShortcut_MacOS: "meta SPACE"
}
globalActions: [
# Note: Window actions currently only supported for Windows
// { id: "minimizeWindow", shortcut: "meta alt Q" }
// { id: "maximizeWindow", shortcut: "" }
// { id: "toggleMaximizeWindow", shortcut: "meta alt ENTER" }
// { id: "centerWindow", shortcut: "meta alt C" }
// { id: "moveToPreviousScreen", shortcut: "control meta alt UP" }
// { id: "moveToNextScreen", shortcut: "control meta alt DOWN" }
// { id: "resizeToScreenSize", shortcut: "meta alt A" }
// { id: "resizeFullHeightMaintainAspectRatio", shortcut: "" }
// { id: "cycleWindowSizeLeft", shortcut: "meta alt LEFT" }
// { id: "cycleWindowSizeRight", shortcut: "meta alt RIGHT" }
// { id: "cycleWindowSizeTop", shortcut: "meta alt UP" }
// { id: "cycleWindowSizeBottom", shortcut: "meta alt DOWN" }
]
display: {
width: 1600
maxHeight: 500
opacity: 0.95
fonts: [
{name: "Fira Code", size: 22}
{name: "Cascadia Code", size: 22}
{name: "Consolas", size: 22}
]
}
commands: [
{type: "HashCommand", algorithm: "MD5"}
{type: "HashCommand", algorithm: "SHA-1"}
{type: "HashCommand", algorithm: "SHA-256"}
{type: "HashCommand", algorithm: "SHA-512"}
{type: "EpochUnixCommand"}
{type: "EpochMillisCommand"}
{type: "LocalIPCommand"}
{type: "ExternalIPCommand"}
{type: "TemperatureCommand"}
{type: "OpenBrowserCommand"}
{type: "ITunesCommand"}
{type: "Foobar2000Command"}
{type: "EncodeBase64Command"}
{type: "EncodeUrlCommand"}
{type: "DecodeBase64Command"}
{type: "DecodeUrlCommand"}
{type: "UUIDCommand"}
{type: "OpacityCommand"}
{type: "RadixCommand"}
{type: "ResizeCommand"}
{type: "ReloadCommand"}
{type: "LoremIpsumCommand"}
# Valid date/time format values: `short`, `medium`, `long`, `full`, or customize it yourself with Java's
# DateTimeFormatter symbols. Refer to:
# https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/time/format/DateTimeFormatter.html
{type: "WorldTimesCommand",
dateTimeFormat: "medium",
dateTimeDetailedFormat: "long",
dateTimeWithZoneFormat: "long",
zones: [
{zoneId: "Asia/Tokyo", displayName: "Tokyo"}
{zoneId: "America/Los_Angeles", displayName: "Los Angeles"}
{zoneId: "America/New_York", displayName: "New York"}
{zoneId: "Europe/London", displayName: "London"}
{zoneId: "Europe/Berlin", displayName: "Berlin"}
{zoneId: "UTC", displayName: "UTC"}
]}
{type: "FindFileCommand"}
{type: "FindInFileCommand"}
{type: "FileNavigationCommand"}
{type: "TimerCommand"}
{type: "ToggleHiddenFilesCommand"}
{type: "ToggleDesktopIconsCommand"}
{type: "LockCommand"}
{type: "ExitCommand"}
{type: "RebootCommand"}
{type: "SwitchWindowCommand"}
{type: "SystemCommand"}
{type: "SnippetsCommand", snippets: [
{keyword: "shrug", value: "¯\\_(ツ)_/¯"}
{keyword: "flip table", value: "(╯°□°)╯︵ ┻━┻"}
{keyword: "finger guns", value: "(☞゚∀゚)☞"}
{keyword: "lenny", value: "( ͡° ͜ʖ ͡°)"}
]}
# `suspendShortcut` is a global shortcut to suspend/resume the frontmost application.
# Note: Currently only avabilable for macOS
{type: "SuspendProcessCommand", suspendShortcut: null}
{type: "ProcessIdCommand"}
{
type: "SearchUrlCommand"
title: "Google"
urlTemplate: "https://www.google.com/search?hl=en&q={query}"
commandNames: ["g", "google"]
shortcuts: ["meta G"]
}
{
type: "SearchUrlCommand"
title: "Google Images"
urlTemplate: "https://www.google.com/search?hl=en&tbm=isch&q={query}"
commandNames: ["i", "image"]
shortcuts: ["meta I"]
}
{
type: "SearchUrlCommand"
title: "Google Maps"
urlTemplate: "https://maps.google.com/maps?hl=en&q={query}"
commandNames: ["map"]
shortcuts: ["meta M"]
}
{
type: "SearchUrlCommand"
title: "Wikipedia"
urlTemplate: "https://en.wikipedia.org/w/index.php?search={query}"
commandNames: ["w", "wiki"]
shortcuts: ["meta W"]
}
{
type: "SearchUrlCommand"
title: "DuckDuckGo"
urlTemplate: "https://duckduckgo.com/?q={query}"
commandNames: ["ddg", "duckduckgo"]
shortcuts: ["meta D"]
}
{
type: "SearchUrlCommand"
title: "YouTube"
urlTemplate: "https://www.youtube.com/results?search_query={query}"
commandNames: ["y", "youtube"]
shortcuts: ["meta Y"]
}
{type: "SearchCratesCommand"}
{type: "SearchMavenCommand"}
{type: "HoogleCommand"}
{type: "CalculatorCommand"}
]
aliases = {
"track" = ["itunes", "foobar"]
"music" = ["itunes", "foobar"]
"play" = ["itunes play", "foobar play"]
"pause" = ["itunes pause", "foobar pause"]
"stop" = ["itunes stop", "foobar stop"]
"next" = ["itunes next", "foobar next"]
"skip" = ["itunes next", "foobar next"]
"previous" = ["itunes previous", "foobar previous"]
"rewind" = ["itunes rewind", "foobar rewind"]
"tobinary" = ["radix" "--to" "2"]
"tooctal" = ["radix" "--to" "8"]
"tohex" = ["radix" "--to" "16"]
"frombinary" = ["radix" "--from" "2"]
"fromoctal" = ["radix" "--from" "8"]
"fromhex" = ["radix" "--from" "16"]
"encode" = ["encodeurl", "encodebase64"]
"decode" = ["decodeurl", "decodebase64"]
"ip" = ["localip", "externalip"]
"epoch" = ["epochunix", "epochmillis"]
"sleep" = ["system sleep"]
"monitoroff" = ["system monitoroff"]
"screensaver" = ["system screensaver"]
}