imv: add default Ctrl+P binding to print current image via CUPS (#2872)

* imv: add default Ctrl+P binding to print current image via CUPS

* Add imv config migration with backup

---------

Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
ctarx 2025-10-27 13:55:14 +00:00 committed by GitHub
parent d128833e7b
commit e0e71a34fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

2
config/imv/config Normal file
View File

@ -0,0 +1,2 @@
[binds]
<Ctrl+p> = exec lp $imv_current_file

9
migrations/1761569743.sh Normal file
View File

@ -0,0 +1,9 @@
echo "Add default Ctrl+P binding for imv; backup existing config if present"
if [ -f ~/.config/imv/config ]; then
cp ~/.config/imv/config ~/.config/imv/config.bak.$(date +%s)
else
mkdir -p ~/.config/imv
fi
cp ~/.local/share/omarchy/config/imv/config ~/.config/imv/config