Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?
ForynGilnith @ ForynGilnith @lemmy.world 帖子 15评论 24加入于 2 yr. ago
ForynGilnith @ ForynGilnith @lemmy.world
帖子
15
评论
24
加入于
2 yr. ago
If that's the case, it's a bit of an ugly hack but you could make a wrapper script placed in
/usr/local/bin/inkscapelike this:#!/bin/bash flatpack run org.inkscape.Inkscape ${*}(the
${*}will pass along all the arguments that the wrapper script was called with)