345ee2b608
Replace the deprecated config.toml with an explicit, self-documenting owlry.lua. Drop config.toml (ignored once owlry.lua exists; removed in owlry 3.0). Disable the ssh provider (SSH is done from a terminal) and keep filesearch out of the global set, enabling it only in a new dev profile scoped to ~/Dev. Bump frecency_weight to 0.5, set tabs to app/clipboard/emoji. Modernize the dmenu scripts to 'owlry dmenu'.
13 lines
357 B
Bash
13 lines
357 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
printf '%s\n' \
|
|
"grimblast --notify copy screen" \
|
|
"grimblast --notify copy output" \
|
|
"grimblast --notify copy area" \
|
|
"grimblast --notify edit screen" \
|
|
"grimblast --notify edit output" \
|
|
"grimblast --notify edit area" \
|
|
| owlry dmenu -p "Screenshot" \
|
|
| { read -r cmd && sleep 0.2 && sh -c "$cmd"; }
|