mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
279 B
Bash
10 lines
279 B
Bash
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
|