Fail to configure Linux custom shortcuts to flameshot 10.2 #2163
-
I downloaded an How can I fix this?
bash: /home/eladb/usr/local/bin/flameshot: No such file or directory
bash: /home/eladb/Applications/Flameshot/flameshot: No such file or directory
Flameshot-0.10.2.x86_64.AppImage` I must be missing something:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
You should use the full name: ${HOME}/Applications/Flameshot/Flameshot-0.10.2.x86_64.AppImage gui If you want to avoid typing the full path in terminal, perhaps the best way is to create an alias. Open you alias flameshot="${HOME}/Applications/Flameshot/Flameshot-0.10.2.x86_64.AppImage" And then save the file, close your terminal and open again. For creating a keyboard shortcut you should use the full path. |
Beta Was this translation helpful? Give feedback.
-
Thanks
|
Beta Was this translation helpful? Give feedback.
-
I mentioned in the last line of my comment that "For creating a keyboard shortcut you should use the full path". What I meant is that you cannot use the These are Linux knowledge and has nothing to do with Flameshot. Your might want to read a bit about variables in bash: https://www.howtogeek.com/668503/how-to-set-environment-variables-in-bash-on-linux/ Note that to get the value of variables, conventionally you Would put the variable name in between |
Beta Was this translation helpful? Give feedback.
I mentioned in the last line of my comment that "For creating a keyboard shortcut you should use the full path". What I meant is that you cannot use the
${HOME}
when creating the keyboard shortcut. I don't know your username so I had to use environmental variable. In terminal runecho ${HOME}
to get the value of theHOME
variable and replace the${HOME}
in your shortcut with the value.These are Linux knowledge and has nothing to do with Flameshot. Your might want to read a bit about variables in bash:
https://www.howtogeek.com/668503/how-to-set-environment-variables-in-bash-on-linux/
Note that to get the…