From 10dfc30f42ff96292d96df6a57c9c73593d27d44 Mon Sep 17 00:00:00 2001 From: oxypomme Date: Sun, 6 Jul 2025 12:02:06 +0200 Subject: [PATCH] revert: removing sherlock config --- .config/sherlock/config.toml | 13 ---- .config/sherlock/fallback.json | 106 --------------------------------- 2 files changed, 119 deletions(-) delete mode 100644 .config/sherlock/config.toml delete mode 100644 .config/sherlock/fallback.json diff --git a/.config/sherlock/config.toml b/.config/sherlock/config.toml deleted file mode 100644 index c672aa4..0000000 --- a/.config/sherlock/config.toml +++ /dev/null @@ -1,13 +0,0 @@ -[default_apps] -terminal="kitty" -browser="vivaldi" - -[appearance] -width=800 -height=600 -opacity=0.97 -status_bar=false - -[behavior] -caching=true -daemonize=false diff --git a/.config/sherlock/fallback.json b/.config/sherlock/fallback.json deleted file mode 100644 index e77b3ac..0000000 --- a/.config/sherlock/fallback.json +++ /dev/null @@ -1,106 +0,0 @@ -[ - { - "name": "Weather", - "type": "weather", - "args": { - "location": "nancy, france", - "update_interval": 60 - }, - "priority": 1, - "home": true, - "only_home": true, - "async": true, - "shortcut": false, - "spawn_focus": false - }, - { - "name": "Tidal", - "type": "audio_sink", - "args": {}, - "async": true, - "priority": 1, - "home": true, - "only_home": true, - "spawn_focus": false, - "actions": [ - { - "name": "Skip", - "icon": "media-seek-forward", - "exec": "playerctl next", - "method": "command" - }, - { - "name": "Previous", - "icon": "media-seek-backward", - "exec": "playerctl previous", - "method": "command" - } - ] - }, - { - "name": "Spotify", - "type": "audio_sink", - "args": {}, - "async": true, - "priority": 1, - "home": true, - "spawn_focus": false - }, - { - "name": "Calculator", - "type": "calculation", - "alias": "=", - "args": {}, - "priority": 1 - }, - { - "name": "App Launcher", - "alias": "app", - "type": "app_launcher", - "args": {}, - "priority": 2, - "home": true - }, - { - "name": "Power Management", - "alias": "!", - "type": "command", - "args": { - "commands": { - "Shutdown": { - "icon": "system-shutdown", - "exec": "systemctl poweroff", - "search_string": "Poweroff;Shutdown" - }, - "Sleep": { - "icon": "system-suspend", - "exec": "systemctl suspend", - "search_string": "Sleep;" - }, - "Reboot": { - "icon": "system-reboot", - "exec": "systemctl reboot", - "search_string": "reboot" - }, - "Logout": { - "icon": "system-logout", - "exec": "uwsm exit", - "search_string": "logout" - } - } - }, - "priority": 4 - }, - { - "name": "Web Search", - "display_name": "Startpage", - "tag_start": "{keyword}", - "alias": "?", - "type": "web_launcher", - "args": { - "search_engine": "startpage", - "icon": "google" - }, - "priority": 100 - } -]