Files
dotfiles/dot_local/bin/executable_owlry-screenshot-menu
mpuchstein 345ee2b608 owlry: migrate config to Lua and refresh for 2.2
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'.
2026-06-01 22:10:13 +02:00

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"; }