forked from phc/dm-scripts
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
776 B
Bash
24 lines
776 B
Bash
#!/bin/sh
|
|
|
|
# Installs the AppImage for steam
|
|
|
|
APP=Steam-202310201446-x86_64.AppImage
|
|
NAME=steam
|
|
URL="https://github.com/ivan-hc/Steam-appimage/releases/download/continuous/Steam-202310201446-x86_64.AppImage"
|
|
|
|
mkdir -p $HOME/.local/bin
|
|
echo "export PATH=$PATH:$HOME/.local/bin" >> .bashrc
|
|
echo "export PATH=$PATH:$HOME/.local/bin" >> .bash_profile
|
|
|
|
cd /tmp
|
|
curl -LO $URL
|
|
chmod +x $APP
|
|
./$APP --appimage-extract
|
|
mv squashfs-root $HOME/$NAME
|
|
|
|
cd $HOME/$NAME
|
|
ln -sf $(realpath AppRun) $HOME/.local/bin/$NAME
|
|
desktop-file-install --dir="$HOME/.local/share/applications" $NAME.desktop
|
|
sed -i "s|Exec=$NAME|Exec=$HOME/.local/bin/$NAME|g" $HOME/.local/share/applications/$NAME.desktop
|
|
gio set "$HOME/.local/share/applications/$NAME.desktop" "metadata::trusted" true
|
|
rm -rf /tmp/$APP |