@techee you could distribute a `keybindings.conf` file with the
platform-specific shortcuts. IIRC you already have a shell script that launches
the Geany executable, maybe you could add a line like:
```bash
if [ ! -f ~/.config/geany/keybindings.conf ]
then
cp theBundle/wherever/keybindings.conf ~/.config/geany/
fi
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1324#issuecomment-263470777