Merge branch 'alex2844-removeNonSteamGame' into devel
This commit is contained in:
commit
14c03a4d85
@ -41,19 +41,22 @@ generateShortcutVDFHexAppId() {
|
||||
}
|
||||
|
||||
# Takes an signed 32bit integer and converts it to an unsigned 32bit integer
|
||||
generateShortcutGridAppId() {
|
||||
extractSteamId32() {
|
||||
# STUID32=$((STUID64 - 76561197960265728))
|
||||
echo $(($1 & 0xFFFFFFFF))
|
||||
}
|
||||
## ----------
|
||||
### END MAGIC APPID FUNCTIONS
|
||||
|
||||
getSteamShortcutsVdfFileHex() {
|
||||
if [[ -z "${STCFGPATH}" ]]; then
|
||||
STCFGPATH="$(getUserPath)"
|
||||
if [[ -n "${STCFGPATH}" ]]; then
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
if [[ -f "${SCPATH}" ]]; then
|
||||
LC_ALL=C perl -0777 -ne 'print unpack("H*", $_)' "${SCPATH}"
|
||||
fi
|
||||
if [[ -n "${STCFGPATH}" ]] && [[ -z "${SCPATH}" ]]; then
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
fi
|
||||
if [[ -n "${SCPATH}" ]] && [[ -f "${SCPATH}" ]]; then
|
||||
LC_ALL=C perl -0777 -ne 'print unpack("H*", $_)' "${SCPATH}"
|
||||
fi
|
||||
}
|
||||
|
||||
@ -71,10 +74,14 @@ getSteamShortcutEntryHex() {
|
||||
printf "%s" "${SHORTCUTSVDFINPUTHEX}" | grep -oP "${SHORTCUTSVDFMATCHPATTERN}\K.*?(?=${SHORTCUTVDFENDPAT})"
|
||||
}
|
||||
|
||||
getAppExe() {
|
||||
[[ -n "$1" ]] && listNonSteamGames | jq -r --arg id "$1" 'map(select(.id == $id)) | first(.[].exe)'
|
||||
}
|
||||
|
||||
getAppTarget() {
|
||||
exe=$(listNonSteamGames | jq -r --arg id "$1" 'map(select(.id == $id)) | first(.[].exe)')
|
||||
exe=$(getAppExe "$1")
|
||||
if [[ -n "${exe}" ]]; then
|
||||
if [[ "${exe}" =~ .sh$ ]] ; then
|
||||
if [[ "${exe}" =~ .sh$ ]]; then
|
||||
parseSteamTargetExe "${exe}"
|
||||
else
|
||||
echo "${exe}";
|
||||
@ -87,7 +94,7 @@ getSteamGameId() {
|
||||
}
|
||||
|
||||
getAppId() {
|
||||
listNonSteamGames | jq -r --arg exe "$1" 'map(select(.exe == $exe)) | first(.[]?.id)'
|
||||
[[ -n "$1" ]] && listNonSteamGames | jq -r --arg exe "$1" 'map(select(.exe == $exe)) | first(.[]?.id)'
|
||||
}
|
||||
|
||||
getSteamId() {
|
||||
@ -138,32 +145,57 @@ getSteamGridDBId() {
|
||||
fi
|
||||
}
|
||||
|
||||
getUserPath() {
|
||||
getUserIds() {
|
||||
SLUF="${HOME}/.local/share/Steam/config/loginusers.vdf"
|
||||
if [[ -f "${SLUF}" ]]; then
|
||||
STUIDS=()
|
||||
while read -r line; do
|
||||
if [[ "${line}" =~ ^[[:space:]]*\"([0-9]+)\"$ ]]; then
|
||||
STUIDS+=("$(extractSteamId32 "${BASH_REMATCH[1]}")")
|
||||
fi
|
||||
done < "${SLUF}"
|
||||
if [[ ${#STUIDS[@]} -gt 0 ]]; then
|
||||
echo "${STUIDS[@]}"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
getUserId() {
|
||||
SLUF="${HOME}/.local/share/Steam/config/loginusers.vdf"
|
||||
if [[ -f "${SLUF}" ]]; then
|
||||
SLUFUB=false
|
||||
STUID64=""
|
||||
STUID=""
|
||||
while read -r line; do
|
||||
if [[ "${line}" =~ ^[[:space:]]*\"([0-9]+)\"$ ]]; then
|
||||
STUIDCUR="${BASH_REMATCH[1]}"
|
||||
SLUFUB=true
|
||||
elif [[ "${line}" == *'"MostRecent"'*'"1"' && ${SLUFUB} = true ]]; then
|
||||
STUID64="${STUIDCUR}"
|
||||
STUID=$(extractSteamId32 "${STUIDCUR}")
|
||||
break
|
||||
elif [[ "${line}" == "}" ]]; then
|
||||
SLUFUB=false
|
||||
fi
|
||||
done < "${SLUF}"
|
||||
if [ -n "${STUID64}" ]; then
|
||||
STUID32=$((STUID64 - 76561197960265728))
|
||||
STUIDPATH="${HOME}/.local/share/Steam/userdata/${STUID32}"
|
||||
fi
|
||||
if [ -n "${STUID}" ]; then
|
||||
echo "${STUID}"
|
||||
fi
|
||||
}
|
||||
|
||||
getUserPath() {
|
||||
if [[ -n "${1:-}" ]]; then
|
||||
STUID="$1"
|
||||
else
|
||||
STUID="$(getUserId)"
|
||||
fi
|
||||
if [ -n "${STUID}" ]; then
|
||||
STUIDPATH="${HOME}/.local/share/Steam/userdata/${STUID}"
|
||||
if [[ -d "${STUIDPATH}" ]]; then
|
||||
if [[ -f "${STUIDPATH}/config/shortcuts.vdf" ]]; then
|
||||
echo "${STUIDPATH}/config"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
listInstalledSteamGames() {
|
||||
@ -189,14 +221,17 @@ listNonSteamGames() {
|
||||
--arg id "$(parseSteamShortcutEntryAppID "${SCVDFE}")" \
|
||||
--arg name "$(parseSteamShortcutEntryAppName "${SCVDFE}")" \
|
||||
--arg exe "$(parseSteamShortcutEntryExe "${SCVDFE}")" \
|
||||
'{id: $id, name: $name, exe: $exe}'
|
||||
--arg dir "$(parseSteamShortcutEntryStartDir "${SCVDFE}")" \
|
||||
--arg icon "$(parseSteamShortcutEntryIcon "${SCVDFE}")" \
|
||||
--arg args "$(parseSteamShortcutEntryLaunchOptions "${SCVDFE}")" \
|
||||
'{id: $id, name: $name, exe: $exe, dir: $dir, icon: $icon, args: $args}'
|
||||
done | jq -s '.'
|
||||
}
|
||||
|
||||
listSteamGames() {
|
||||
(
|
||||
jq -r 'map({AppId: .id, SteamAppId: .id, SteamGameId: .id, Name: .name}) | .[] | tostring' <<< "$(listInstalledSteamGames)"
|
||||
jq -r '.[] | tostring' <<< "$(listNonSteamGames)" | while read game; do
|
||||
jq -r '.[] | tostring' <<< "$(listNonSteamGames)" | while read -r game; do
|
||||
id=$(jq -r '.id' <<< "${game}")
|
||||
name=$(jq -r '.name' <<< "${game}")
|
||||
jq -r \
|
||||
@ -214,19 +249,22 @@ convertSteamShortcutAppID() {
|
||||
}
|
||||
|
||||
convertSteamShortcutHex() {
|
||||
# printf "%s" "$1" | xxd -r -p | tr -d '\0'
|
||||
LC_ALL=C perl -le 'print pack "H*", $ARGV[0]' "$1" | tr -d '\0'
|
||||
}
|
||||
|
||||
convertStringToSteamShortcutHex() {
|
||||
LC_ALL=C perl -e 'print unpack "H*", "$ARGV[0]" . "\x00"' "$(echo "$1" | tr -cd '[:alpha:]')"
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryHex() {
|
||||
SHORTCUTSVDFINPUTHEX="$1" # The hex block representing the shortcut
|
||||
SHORTCUTSVDFMATCHPATTERN="$2" # The pattern to match against in the block
|
||||
convertSteamShortcutHex "$(getSteamShortcutEntryHex "${SHORTCUTSVDFINPUTHEX}" "${SHORTCUTSVDFMATCHPATTERN}")"
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryExe() {
|
||||
SHORTCUTVDFEXEHEXPAT="000145786500" # 'Exe' ('exe' is 6578650a if we ever need it)
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFEXEHEXPAT}" | tr -d '"'
|
||||
parseSteamShortcutEntryAppID() {
|
||||
SHORTCUTVDFAPPIDHEXPAT="617070696400" # 'appid'
|
||||
convertSteamShortcutAppID "$(printf "%s" "$1" | grep -oP "${SHORTCUTVDFAPPIDHEXPAT}\K.{8}")"
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryAppName() {
|
||||
@ -234,9 +272,24 @@ parseSteamShortcutEntryAppName() {
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFNAMEHEXPAT}"
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryAppID() {
|
||||
SHORTCUTVDFAPPIDHEXPAT="617070696400" # 'appid'
|
||||
convertSteamShortcutAppID "$(printf "%s" "$1" | grep -oP "${SHORTCUTVDFAPPIDHEXPAT}\K.{8}")"
|
||||
parseSteamShortcutEntryExe() {
|
||||
SHORTCUTVDFEXEHEXPAT="000145786500" # 'Exe' ('exe' is 6578650a if we ever need it)
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFEXEHEXPAT}" | tr -d '"'
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryStartDir() {
|
||||
SHORTCUTVDFSTARTDIRHEXPAT="0001537461727444697200"
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFSTARTDIRHEXPAT}" | tr -d '"'
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryIcon() {
|
||||
SHORTCUTVDFICONHEXPAT="000169636f6e00"
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFICONHEXPAT}"
|
||||
}
|
||||
|
||||
parseSteamShortcutEntryLaunchOptions() {
|
||||
SHORTCUTVDFARGHEXPAT="00014c61756e63684f7074696f6e7300" # echo "0001$(convertStringToSteamShortcutHex "LaunchOptions")"
|
||||
parseSteamShortcutEntryHex "$1" "${SHORTCUTVDFARGHEXPAT}" | tr '\002' '\n' | head -n 1 | tr -d '\000'
|
||||
}
|
||||
|
||||
parseSteamTargetExe() {
|
||||
@ -312,39 +365,9 @@ addGrids() {
|
||||
fi
|
||||
}
|
||||
|
||||
addNonSteamGame() {
|
||||
NOSTAPPNAME="${name_desktop}"
|
||||
NOSTSHPATH="${STEAM_SCRIPTS}/${name_desktop}.sh"
|
||||
NOSTEXEPATH="\"${NOSTSHPATH}\""
|
||||
NOSTICONPATH="${PORT_WINE_PATH}/data/img/${name_desktop_png}.png"
|
||||
if [[ -z "${NOSTSTDIR}" ]]; then
|
||||
NOSTSTDIR="\"${STEAM_SCRIPTS}\""
|
||||
fi
|
||||
STCFGPATH="$(getUserPath)"
|
||||
if [[ -n "${STCFGPATH}" ]]; then
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
fi
|
||||
addEntry() {
|
||||
if [[ -n "${SCPATH}" ]]; then
|
||||
NOSTAIDGRID=$(getAppId "${NOSTSHPATH}")
|
||||
if [[ -z "${NOSTAIDGRID}" ]]; then
|
||||
NOSTAIDVDF="$(generateShortcutVDFAppId "${NOSTAPPNAME}${NOSTEXEPATH}")" # signed integer AppID, stored in the VDF as hexidecimal - ex: -598031679
|
||||
NOSTAIDVDFHEX="$(generateShortcutVDFHexAppId "$NOSTAIDVDF")" # 4byte little-endian hexidecimal of above 32bit signed integer, which we write out to the binary VDF - ex: c1c25adc
|
||||
NOSTAIDVDFHEXFMT="\x$(awk '{$1=$1}1' FPAT='.{2}' OFS="\\\x" <<< "$NOSTAIDVDFHEX")" # binary-formatted string hex of the above which we actually write out - ex: \xc1\xc2\x5a\xdc
|
||||
NOSTAIDGRID="$(generateShortcutGridAppId "$NOSTAIDVDF")" # unsigned 32bit ingeger version of "$NOSTAIDVDF", which is used as the AppID for Steam artwork ("grids"), as well as for our shortcuts
|
||||
|
||||
create_new_dir "${STEAM_SCRIPTS}"
|
||||
echo "#!/usr/bin/env bash" > "${NOSTSHPATH}"
|
||||
echo "export START_FROM_STEAM=1" >> "${NOSTSHPATH}"
|
||||
echo "export LD_PRELOAD=" >> "${NOSTSHPATH}"
|
||||
if check_flatpak; then
|
||||
echo "flatpak run ru.linux_gaming.PortProton \"${portwine_exe}\" " >> "${NOSTSHPATH}"
|
||||
else
|
||||
echo "\"${PORT_SCRIPTS_PATH}/start.sh\" \"${portwine_exe}\" " >> "${NOSTSHPATH}"
|
||||
fi
|
||||
chmod u+x "${NOSTSHPATH}"
|
||||
|
||||
if [[ -f "${SCPATH}" ]] ; then
|
||||
cp "${SCPATH}" "${SCPATH//.vdf}_${PROGNAME}_backup.vdf" 2>/dev/null
|
||||
truncate -s-2 "${SCPATH}"
|
||||
OLDSET="$(grep -aPo '\x00[0-9]\x00\x02appid' "${SCPATH}" | tail -n1 | tr -dc '0-9')"
|
||||
NEWSET=$((OLDSET + 1))
|
||||
@ -352,16 +375,17 @@ addNonSteamGame() {
|
||||
printf '\x00%s\x00' "shortcuts" > "${SCPATH}"
|
||||
NEWSET=0
|
||||
fi
|
||||
NOSTAIDVDFHEXFMT="\x$(awk '{$1=$1}1' FPAT='.{2}' OFS="\\\x" <<< "$NOSTAIDVDFHEX")" # binary-formatted string hex of the above which we actually write out - ex: \xc1\xc2\x5a\xdc
|
||||
|
||||
{
|
||||
printf '\x00%s\x00' "${NEWSET}"
|
||||
printf '\x02%s\x00%b' "appid" "${NOSTAIDVDFHEXFMT}"
|
||||
printf '\x01%s\x00%s\x00' "AppName" "${NOSTAPPNAME}"
|
||||
printf '\x01%s\x00%s\x00' "Exe" "${NOSTEXEPATH}"
|
||||
printf '\x01%s\x00%s\x00' "StartDir" "${NOSTSTDIR}"
|
||||
printf '\x01%s\x00%s\x00' "Exe" "\"${NOSTEXEPATH}\""
|
||||
printf '\x01%s\x00%s\x00' "StartDir" "\"${NOSTSTDIR}\""
|
||||
printf '\x01%s\x00%s\x00' "icon" "${NOSTICONPATH}"
|
||||
printf '\x01%s\x00%s\x00' "ShortcutPath" ""
|
||||
printf '\x01%s\x00%s\x00' "LaunchOptions" ""
|
||||
printf '\x01%s\x00%s\x00' "LaunchOptions" "${NOSTARGS:-}"
|
||||
|
||||
printf '\x02%s\x00%b\x00\x00\x00' "IsHidden" "\x00"
|
||||
printf '\x02%s\x00%b\x00\x00\x00' "AllowDesktopConfig" "\x00"
|
||||
@ -382,6 +406,91 @@ addNonSteamGame() {
|
||||
printf '\x00%s\x00' "tags"
|
||||
printf '\x08\x08\x08\x08'
|
||||
} >> "${SCPATH}"
|
||||
fi
|
||||
}
|
||||
|
||||
removeNonSteamGame() {
|
||||
[[ -n "$1" ]] && appid="$1"
|
||||
[[ -n "$2" ]] && NOSTSHPATH="$2"
|
||||
[[ -z "${STUID}" ]] && STUID=$(getUserId)
|
||||
[[ -z "${STCFGPATH}" ]] && STCFGPATH="$(getUserPath ${STUID})"
|
||||
if [[ -n "${STCFGPATH}" ]] && [[ -z "${SCPATH}" ]]; then
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
fi
|
||||
if [[ -n "${appid}" ]]; then
|
||||
games=$(listNonSteamGames)
|
||||
[[ -z "${NOSTSHPATH}" ]] && NOSTSHPATH=$(jq -r --arg id "${appid}" 'map(select(.id == $id)) | first(.[].exe)' <<< "${games}")
|
||||
if [[ -n "${NOSTSHPATH}" ]]; then
|
||||
mv "${SCPATH}" "${SCPATH//.vdf}_${PROGNAME}_backup.vdf" 2>/dev/null
|
||||
jq --arg id "${appid}" 'map(select(.id != $id))' <<< "${games}" | jq -c '.[]' | while read -r game; do
|
||||
NOSTAIDGRID=$(jq -r '.id' <<< "${game}")
|
||||
NOSTAPPNAME=$(jq -r '.name' <<< "${game}")
|
||||
NOSTEXEPATH=$(jq -r '.exe' <<< "${game}")
|
||||
NOSTSTDIR=$(jq -r '.dir' <<< "${game}")
|
||||
NOSTICONPATH=$(jq -r '.icon' <<< "${game}")
|
||||
NOSTARGS=$(jq -r '.args' <<< "${game}")
|
||||
NOSTAIDVDFHEX=$(bigToLittleEndian $(printf '%08x' "${NOSTAIDGRID}"))
|
||||
addEntry
|
||||
done
|
||||
rm -f "${STCFGPATH}/grid/${appid}.jpg" "${STCFGPATH}/grid/${appid}p.jpg" "${STCFGPATH}/grid/${appid}_hero.jpg" "${STCFGPATH}/grid/${appid}_logo.png"
|
||||
if [[ -f "${NOSTSHPATH}" ]]; then
|
||||
isInstallGame=false
|
||||
for STUIDCUR in $(getUserIds); do
|
||||
[[ "${STUIDCUR}" == "${STUID}" ]] && continue
|
||||
STCFGPATH="$(getUserPath ${STUIDCUR})"
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
if [[ -n "$(getAppId "${NOSTSHPATH}")" ]]; then
|
||||
isInstallGame=true
|
||||
break
|
||||
fi
|
||||
done
|
||||
unset STCFGPATH SCPATH
|
||||
if [[ ${isInstallGame} == false ]]; then
|
||||
rm "${NOSTSHPATH}"
|
||||
fi
|
||||
fi
|
||||
restartSteam
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
addNonSteamGame() {
|
||||
if [[ -z "${STCFGPATH}" ]]; then
|
||||
STCFGPATH="$(getUserPath)"
|
||||
fi
|
||||
if [[ -n "${STCFGPATH}" ]] && [[ -z "${SCPATH}" ]]; then
|
||||
SCPATH="${STCFGPATH}/shortcuts.vdf"
|
||||
fi
|
||||
if [[ -n "${SCPATH}" ]]; then
|
||||
[[ -z "${NOSTSHPATH}" ]] && NOSTSHPATH="${STEAM_SCRIPTS}/${name_desktop}.sh"
|
||||
NOSTAPPNAME="${name_desktop}"
|
||||
NOSTAIDGRID=$(getAppId "${NOSTSHPATH}")
|
||||
if [[ -z "${NOSTAIDGRID}" ]]; then
|
||||
NOSTEXEPATH="${NOSTSHPATH}"
|
||||
if [[ -z "${NOSTSTDIR}" ]]; then
|
||||
NOSTSTDIR="${STEAM_SCRIPTS}"
|
||||
fi
|
||||
NOSTICONPATH="${PORT_WINE_PATH}/data/img/${name_desktop_png}.png"
|
||||
NOSTAIDVDF="$(generateShortcutVDFAppId "${NOSTAPPNAME}${NOSTEXEPATH}")" # signed integer AppID, stored in the VDF as hexidecimal - ex: -598031679
|
||||
NOSTAIDVDFHEX="$(generateShortcutVDFHexAppId "$NOSTAIDVDF")" # 4byte little-endian hexidecimal of above 32bit signed integer, which we write out to the binary VDF - ex: c1c25adc
|
||||
NOSTAIDGRID="$(extractSteamId32 "$NOSTAIDVDF")" # unsigned 32bit ingeger version of "$NOSTAIDVDF", which is used as the AppID for Steam artwork ("grids"), as well as for our shortcuts
|
||||
|
||||
create_new_dir "${STEAM_SCRIPTS}"
|
||||
echo "#!/usr/bin/env bash" > "${NOSTSHPATH}"
|
||||
echo "export START_FROM_STEAM=1" >> "${NOSTSHPATH}"
|
||||
echo "export LD_PRELOAD=" >> "${NOSTSHPATH}"
|
||||
if check_flatpak; then
|
||||
echo "flatpak run ru.linux_gaming.PortProton \"${portwine_exe}\" " >> "${NOSTSHPATH}"
|
||||
else
|
||||
echo "\"${PORT_SCRIPTS_PATH}/start.sh\" \"${portwine_exe}\" " >> "${NOSTSHPATH}"
|
||||
fi
|
||||
chmod u+x "${NOSTSHPATH}"
|
||||
|
||||
if [[ -f "${SCPATH}" ]] ; then
|
||||
cp "${SCPATH}" "${SCPATH//.vdf}_${PROGNAME}_backup.vdf" 2>/dev/null
|
||||
fi
|
||||
|
||||
addEntry
|
||||
|
||||
if [[ "${DOWNLOAD_STEAM_GRID}" == "1" ]] ; then
|
||||
pw_start_progress_bar_block "${translations[Please wait. downloading covers for]} ${NOSTAPPNAME}"
|
||||
|
@ -6308,7 +6308,18 @@ portwine_change_shortcut () {
|
||||
then PW_SHORTCUT_DESKTOP="TRUE"
|
||||
else PW_SHORTCUT_DESKTOP="FALSE"
|
||||
fi
|
||||
if [[ -n $PW_DELETE_STEAM ]]; then
|
||||
source "${PORT_SCRIPTS_PATH}/add_in_steam.sh"
|
||||
NOSTSHPATH="${PW_DELETE_SHORTCUT_STEAM[0]//#@_@#/ }"
|
||||
NOSTAIDGRID=$(getAppId "${NOSTSHPATH}")
|
||||
if [[ -n "${NOSTSHPATH}" ]] && [[ -n "${NOSTAIDGRID}" ]]; then
|
||||
PW_SHORTCUT_STEAM="TRUE"
|
||||
else
|
||||
PW_SHORTCUT_STEAM="FALSE"
|
||||
fi
|
||||
else
|
||||
PW_SHORTCUT_STEAM="FALSE"
|
||||
fi
|
||||
|
||||
unset name_desktop
|
||||
create_name_desktop
|
||||
@ -6334,6 +6345,7 @@ portwine_change_shortcut () {
|
||||
PORTWINE_CHANGE_SHORTCUT=1
|
||||
if [[ $PW_YAD_OUT == 1 ]] ; then
|
||||
[[ "$PW_GUI_START" == "NOTEBOOK" ]] && unset PW_YAD_FORM_TAB
|
||||
PW_SHORTCUT_STEAM="FALSE"
|
||||
portwine_delete_shortcut
|
||||
restart_pp
|
||||
fi
|
||||
@ -6341,13 +6353,17 @@ portwine_change_shortcut () {
|
||||
}
|
||||
|
||||
portwine_search_shortcut () {
|
||||
unset PW_DELETE_SHORTCUT_MENU PW_DELETE_SHORTCUT_DESKTOP
|
||||
unset PW_DELETE_SHORTCUT_MENU PW_DELETE_SHORTCUT_STEAM PW_DELETE_SHORTCUT_DESKTOP
|
||||
if [[ -n "${portwine_exe}" ]]; then
|
||||
PW_DELETE_MENU="$(grep -il "${portwine_exe}" "${HOME}/.local/share/applications"/*.desktop 2>/dev/null)"
|
||||
read -r -d '' -a PW_DELETE_SHORTCUT_MENU <<< "${PW_DELETE_SHORTCUT_MENU[*]} ${PW_DELETE_MENU// /#@_@#}"
|
||||
|
||||
PW_DELETE_PP="$(grep -il "${portwine_exe}" "${PORT_WINE_PATH}"/*.desktop 2>/dev/null)"
|
||||
read -r -d '' -a PW_DELETE_SHORTCUT_MENU <<< "${PW_DELETE_SHORTCUT_MENU[*]} ${PW_DELETE_PP// /#@_@#}"
|
||||
|
||||
PW_DELETE_STEAM="$(grep -il "${portwine_exe}" "${STEAM_SCRIPTS}"/*.sh 2>/dev/null)"
|
||||
read -r -d '' -a PW_DELETE_SHORTCUT_STEAM <<< "${PW_DELETE_SHORTCUT_STEAM[*]} ${PW_DELETE_STEAM// /#@_@#}"
|
||||
|
||||
if [[ -d "${HOME}/Desktop" ]] ; then
|
||||
PW_DELETE_DESKTOP="$(grep -il "${portwine_exe}" "${HOME}/Desktop"/*.desktop 2>/dev/null)"
|
||||
read -r -d '' -a PW_DELETE_SHORTCUT_DESKTOP <<< "${PW_DELETE_SHORTCUT_DESKTOP[*]} ${PW_DELETE_DESKTOP// /#@_@#}"
|
||||
@ -6360,6 +6376,7 @@ portwine_search_shortcut () {
|
||||
PW_DELETE_DESKTOP="$(grep -il "${portwine_exe}" "$(xdg-user-dir DESKTOP)"/*.desktop 2>/dev/null)"
|
||||
read -r -d '' -a PW_DELETE_SHORTCUT_DESKTOP <<< "${PW_DELETE_SHORTCUT_DESKTOP[*]} ${PW_DELETE_DESKTOP// /#@_@#}"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
portwine_delete_shortcut () {
|
||||
@ -6371,6 +6388,11 @@ portwine_delete_shortcut () {
|
||||
for delete_shortcut in "${PW_DELETE_SHORTCUT_MENU[@]}" "${PW_DELETE_SHORTCUT_DESKTOP[@]}" ; do
|
||||
rm -f "${delete_shortcut//#@_@#/ }"
|
||||
done
|
||||
|
||||
if [[ "${PW_SHORTCUT_STEAM}" == "FALSE" ]] && [[ -n "${NOSTSHPATH}" ]] && [[ -n "${NOSTAIDGRID}" ]]; then
|
||||
source "${PORT_SCRIPTS_PATH}/add_in_steam.sh"
|
||||
removeNonSteamGame "${NOSTAIDGRID}" "${NOSTSHPATH}"
|
||||
fi
|
||||
}
|
||||
|
||||
portwine_missing_shortcut () {
|
||||
|
Loading…
Reference in New Issue
Block a user