AlexisBRENON / ewmh_m2m

EWMH-compliant move to monitor utility
https://pypi.org/project/ewmh-m2m/
MIT License
90 stars 5 forks source link

binding command to a keyboard shortcut #21

Closed negishubham closed 1 year ago

negishubham commented 1 year ago

Hi,

After the pip installation how to bind the move-to-monitor command to a keyboard shortcut?

Thanks

AlexisBRENON commented 1 year ago

Hi. This depends of your distro and/or desktop environment. Here is an example for Xfce: https://unix.stackexchange.com/questions/44643/change-global-keyboard-shortcuts

negishubham commented 1 year ago

Alexis,

I know how to add a command to the shortcut. But I am not sure how to bring move-to-monitor command (that I installed using this repo) in the image below.

One way I read about doing this was to add the command to a script and add it as I have done in the image. But it doesn't seem to work.

Screenshot_2023-01-26_12-19-00

Thanks

AlexisBRENON commented 1 year ago

You don’t need to use a intermediate script. You probably have to specify the full absolute path to the move-to-monitor script. You say that you installed it with the repo, how did you do ? pip install ewmh-m2m ? I don’t know exactly where it is installed by default. Either something like /usr/local/bin or similar.

negishubham commented 1 year ago

Yes, I installed it using pip command. I couldn't find it in /usr/local/bin. Will try to find it or maybe look in the code as to where it saves the script

AlexisBRENON commented 1 year ago

In the code, you will find nothing more than the entrypoint definition. Installation location is more related to your own Python/pip installation.

  1. Can you run move-to-monitor from your terminal ?
  2. If yes, what’s the output of which move-to-monitor ?
  3. Take a look at the output of pip show ewmh-m2m -v, there should be a Location field, giving you some hints on where to find the move-to-monitor script.
  4. Finally, what’s the output of which pip ?
negishubham commented 1 year ago

I found it. Thanks for the help Alexis