refactor(sherlock): update config structure, theme and fixes
- config.toml: Wechsel auf Rose Pine v3 Theme. - config.toml: Typos bei Einheiten (meter) und Keybinds (ctrl-h) korrigiert. - fallback.json: Emoji-Typ auf 'emoji_picker' aktualisiert. - fallback.json: Power-Menü von 'custom' zu 'command' refactored. Struktur vereinfacht und search_strings hinzugefügt.
This commit is contained in:
@@ -5,7 +5,7 @@ terminal = "kitty"
|
|||||||
browser = "/usr/lib/firefox/firefox %u"
|
browser = "/usr/lib/firefox/firefox %u"
|
||||||
|
|
||||||
[units]
|
[units]
|
||||||
lengths = "meters"
|
lengths = "meter"
|
||||||
weights = "kg"
|
weights = "kg"
|
||||||
volumes = "l"
|
volumes = "l"
|
||||||
temperatures = "C"
|
temperatures = "C"
|
||||||
@@ -36,7 +36,7 @@ use_lr_nav = false
|
|||||||
[binds]
|
[binds]
|
||||||
up = "control-k"
|
up = "control-k"
|
||||||
down = "control-j"
|
down = "control-j"
|
||||||
left = "control-ih"
|
left = "control-h"
|
||||||
right = "control-l"
|
right = "control-l"
|
||||||
context = "control-i"
|
context = "control-i"
|
||||||
modifier = "control"
|
modifier = "control"
|
||||||
@@ -44,7 +44,7 @@ exec_inplace = "control-return"
|
|||||||
|
|
||||||
[files]
|
[files]
|
||||||
config = "/home/mpuchstein/.config/sherlock/config.toml"
|
config = "/home/mpuchstein/.config/sherlock/config.toml"
|
||||||
css = "/home/mpuchstein/.config/sherlock/main.css"
|
css = "/home/mpuchstein/.config/sherlock/themes/rose-pine_v3.css"
|
||||||
fallback = "/home/mpuchstein/.config/sherlock/fallback.json"
|
fallback = "/home/mpuchstein/.config/sherlock/fallback.json"
|
||||||
alias = "/home/mpuchstein/.config/sherlock/sherlock_alias.json"
|
alias = "/home/mpuchstein/.config/sherlock/sherlock_alias.json"
|
||||||
ignore = "/home/mpuchstein/.config/sherlock/sherlockignore"
|
ignore = "/home/mpuchstein/.config/sherlock/sherlockignore"
|
||||||
|
|||||||
@@ -209,48 +209,46 @@
|
|||||||
{
|
{
|
||||||
"name": "Emoji",
|
"name": "Emoji",
|
||||||
"alias": "em",
|
"alias": "em",
|
||||||
"type": "emoji",
|
"type": "emoji_picker",
|
||||||
"priority": 4.0,
|
"priority": 4.0,
|
||||||
"exit": true,
|
"exit": true,
|
||||||
"shortcut": false,
|
"shortcut": false,
|
||||||
"home": "Search",
|
"home": "Search",
|
||||||
"args": {
|
"args": {
|
||||||
"default_skin_tone": "Simpson"
|
"default_skin_tone": "Simpsons"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Power Menu",
|
"name": "Power Menu",
|
||||||
"alias": "pow",
|
"alias": "pow",
|
||||||
"type": "custom",
|
"type": "command",
|
||||||
"priority": 0.5,
|
"priority": 1.0,
|
||||||
"exit": true,
|
"exit": true,
|
||||||
"shortcut": true,
|
"shortcut": true,
|
||||||
"home": "Search",
|
"home": "Search",
|
||||||
"args": {
|
"args": {
|
||||||
"commands": [
|
"commands": {
|
||||||
{
|
"Shutdown": {
|
||||||
"name": "Shutdown",
|
|
||||||
"exec": "systemctl poweroff",
|
|
||||||
"icon": "system-shutdown",
|
"icon": "system-shutdown",
|
||||||
"confirm": true
|
"exec": "systemctl poweroff",
|
||||||
|
"search_string": "shutdown;poweroff"
|
||||||
},
|
},
|
||||||
{
|
"Reboot": {
|
||||||
"name": "Reboot",
|
|
||||||
"exec": "systemctl reboot",
|
|
||||||
"icon": "system-reboot",
|
"icon": "system-reboot",
|
||||||
"confirm": true
|
"exec": "systemctl reboot",
|
||||||
|
"search_string": "reboot"
|
||||||
},
|
},
|
||||||
{
|
"Sleep": {
|
||||||
"name": "Sleep",
|
"icon": "media-playback-pause",
|
||||||
"exec": "systemctl suspend",
|
"exec": "systemctl suspend",
|
||||||
"icon": "media-playback-pause"
|
"search_string": "sleep;suspend"
|
||||||
},
|
},
|
||||||
{
|
"Lock Screen": {
|
||||||
"name": "Lock Screen",
|
"icon": "system-lock-screen",
|
||||||
"exec": "hyprlock",
|
"exec": "hyprlock",
|
||||||
"icon": "system-lock-screen"
|
"search_string": "lock;screenlock"
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user