#1418·nekoray

Request for keybinds to toggle configuration

Author: tomarovskyCreated Sep 3, 2024Updated Mar 5, 2025

Hello everyone,

I would like to set up a key combination to turn on and off the configuration in Nekoray. As far as I understand, Nekoray does not currently support this feature.

On my Linux (i use Arch btw), I've managed to start and stop the process using a script bound to Alt+Home:

bash
if pgrep -x "nekoray" > /dev/null
then
    killall nekoray
else
    nekoray -appdata &
fi

However, this doesn't seem to be the most optimal solution. Is there a way to turn on and off the configuration in Nekoray using a key combination or command line?