Skip to content

Commit

Permalink
Merge pull request #727 from deftdawg/patch-1
Browse files Browse the repository at this point in the history
Fix install on Arch-based systems
  • Loading branch information
rbreaves authored Jul 7, 2022
2 parents 7b3aba9 + 64995d4 commit 6aa5cc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xkeysnail_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,9 @@ if ! [ -x "$(command -v xhost)" ] || ! [ -x "$(command -v gcc)" ]; then
fi

if [[ $dename == "kde" ]]; then
if [[ $distro == "manjarolinux" ]]; then
if [[ $distro == "manjarolinux" ]] || cat /etc/os-release | grep -E "^ID(_LIKE)?" | grep -q arch; then # Manjario or other arch-like distros: SteamOS3,HoloISO
sudo ./linux/system-config/unipkg.sh vte3
sudo ./linux/system-config/unipkg.sh python-pip
else
sudo ./linux/system-config/unipkg.sh libvte-2.91-dev
fi
Expand Down

0 comments on commit 6aa5cc5

Please sign in to comment.