9

I have tried a number of options to reload xbindkeys after changing the configuration file (my configuration file is located at ~/.xbindkeysrc). Nothing seems to work. The configuration file should be reloading automatically after a change according to the man page. How can I force a reload of the file? In Arch Linux it appears you can use xbindkeys --poll-rc to reload the configuration but this is not working for me in Ubuntu.

Snap Shot
  • 571

2 Answers2

9

If xbindkeys is not reloading automatically after a change you can force it to reload the configuration by using the following command:

killall -HUP xbindkeys

Snap Shot
  • 571
1

xbindkeys reload its configuration file each time it has changed. But if you want to force it reloading its configuration file, you can send a HUP signal:

killall -HUP xbindkeys

When HUP signal is send to xbindkeys, changes in $HOME/.xbindkeysrc takes effect only after moving mouse.

https://linux.die.net/man/1/xbindkeys

ExistMe
  • 121