feature: clock and ashtonished emoji (#207)
This commit is contained in:
parent
3f72b7cc0d
commit
6b3e9e4676
|
|
@ -12,6 +12,7 @@ logLevel: "INFO"
|
|||
actions:
|
||||
- title: date
|
||||
shell: date
|
||||
icon: clock
|
||||
popupOnStart: true
|
||||
|
||||
# This will run a simple script that you create.
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
package config
|
||||
|
||||
var emojis = map[string]string{
|
||||
"": "😀", // default icon
|
||||
"poop": "💩",
|
||||
"smile": "😀",
|
||||
"ping": "📡",
|
||||
"backup": "💾",
|
||||
"reboot": "⏻",
|
||||
"restart": "⏻",
|
||||
"": "😀", // default icon
|
||||
"poop": "💩",
|
||||
"smile": "😀",
|
||||
"ping": "📡",
|
||||
"backup": "💾",
|
||||
"reboot": "⏻",
|
||||
"restart": "⏻",
|
||||
"ashtonished": "😲",
|
||||
"clock": "🕒",
|
||||
}
|
||||
|
||||
func lookupHTMLIcon(keyToLookup string) string {
|
||||
|
|
|
|||
Loading…
Reference in New Issue