Skip to content

Commit

Permalink
Merge pull request rbreaves#774 from rbreaves/hotfix
Browse files Browse the repository at this point in the history
Adds python3-tk/tkinter dependencies to Ubuntu & Fedora based installs
  • Loading branch information
rbreaves authored Dec 3, 2022
2 parents e102f63 + 6cf7ded commit d2c3b1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xkeysnail_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,9 @@ if ! [ -x "$(command -v pip3)" ]; then
fi
if ! [ -x "$(command -v python3-config)" ]; then
if [ "$distro" == "ubuntu" ] || [ "${distro::6}" == "debian" ] || [ "$distro" == 'linuxmint' ]; then
pydev="python3-dev"
pydev="python3-dev python3-tk"
elif [ "$distro" == "fedora" ] || [ "$distro" == "fedoralinux" ]; then
pydev="python3-devel"
pydev="python3-devel python3-tkinter"
fi
if [ "$distro" == "gnome" ] || [ "$distro" == "fedora" ] || [ "$distro" == "fedoralinux" ] || [ "${distro::6}" == "debian" ] || [ "$distro" == 'linuxmint' ] ; then
echo "Will need to install $pydev..."
Expand Down

0 comments on commit d2c3b1e

Please sign in to comment.