Display the list of unknown directories
This commit is contained in:
parent
7b2cdb7b86
commit
cc1473e28c
|
@ -15,7 +15,7 @@
|
||||||
## 2. If a directory doesn't exist, check if a remote one is
|
## 2. If a directory doesn't exist, check if a remote one is
|
||||||
## available and symlink it.
|
## available and symlink it.
|
||||||
##
|
##
|
||||||
## TODO : 3. List directories without symlinks.
|
## 3. List directories without symlinks.
|
||||||
##
|
##
|
||||||
## KISS : Only manage save directories from Steam userdata. For other
|
## KISS : Only manage save directories from Steam userdata. For other
|
||||||
## paths ($XDG_DATA_HOME,…) check other scripts.
|
## paths ($XDG_DATA_HOME,…) check other scripts.
|
||||||
|
@ -42,6 +42,7 @@ steam_userdata=".steam/steam/userdata/${steam_id}"
|
||||||
steam_games="760 35700 35720 204360 206420 218820 247080 255870 312530 359840"
|
steam_games="760 35700 35720 204360 206420 218820 247080 255870 312530 359840"
|
||||||
## }}}
|
## }}}
|
||||||
## Ids without backups in userdata {{{
|
## Ids without backups in userdata {{{
|
||||||
|
### 7 − Unknown
|
||||||
### 620 − Portal 2 − https://pcgamingwiki.com/wiki/Portal_2
|
### 620 − Portal 2 − https://pcgamingwiki.com/wiki/Portal_2
|
||||||
### 49520 − Borderlands 2 − https://pcgamingwiki.com/wiki/Borderlands_2
|
### 49520 − Borderlands 2 − https://pcgamingwiki.com/wiki/Borderlands_2
|
||||||
### 55230 − Saints Row: The Third − https://pcgamingwiki.com/wiki/Saints_Row:_The_Third
|
### 55230 − Saints Row: The Third − https://pcgamingwiki.com/wiki/Saints_Row:_The_Third
|
||||||
|
@ -61,6 +62,7 @@ steam_games="760 35700 35720 204360 206420 218820 247080 255870 312530 359840"
|
||||||
### 686200 − Door Kickers: Action Squad − https://pcgamingwiki.com/wiki/Door_Kickers:_Action_Squad
|
### 686200 − Door Kickers: Action Squad − https://pcgamingwiki.com/wiki/Door_Kickers:_Action_Squad
|
||||||
### 697660 − Jump Gunners − https://pcgamingwiki.com/wiki/Jump_Gunners
|
### 697660 − Jump Gunners − https://pcgamingwiki.com/wiki/Jump_Gunners
|
||||||
### 728880 − Overcooked! 2 − https://pcgamingwiki.com/wiki/Overcooked!_2
|
### 728880 − Overcooked! 2 − https://pcgamingwiki.com/wiki/Overcooked!_2
|
||||||
|
ignore_pattern_steam_id="(7|620|49520|55230|213670|219150|241100|242680|251470|255870|268990|274190|295790|416600|474210|480490|686200|697660|728880|config|ugc|ugcmsgcache|\.)$"
|
||||||
## }}}
|
## }}}
|
||||||
## }}}
|
## }}}
|
||||||
|
|
||||||
|
@ -68,6 +70,8 @@ remote_dir="${HOME}/Nextcloud/games/linux.sgl.script"
|
||||||
remote_steam_userdata="${remote_dir}/${steam_userdata}"
|
remote_steam_userdata="${remote_dir}/${steam_userdata}"
|
||||||
|
|
||||||
local_steam_userdata="${HOME}/${steam_userdata}"
|
local_steam_userdata="${HOME}/${steam_userdata}"
|
||||||
|
|
||||||
|
local_unmanaged_games_list="/tmp/unmanaged_games_list"
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
# Functions {{{
|
# Functions {{{
|
||||||
|
@ -156,3 +160,17 @@ for game_id in ${steam_games}; do
|
||||||
|
|
||||||
done
|
done
|
||||||
# }}}
|
# }}}
|
||||||
|
# List unmanage game id {{{
|
||||||
|
cd -- "${local_steam_userdata}" || exit 1
|
||||||
|
rm -f -- "${local_unmanaged_games_list}"
|
||||||
|
printf '\e[1;35m%-6s\e[m\n' "Data of ${game_id} − ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort"
|
||||||
|
find . -maxdepth 1 -type d | grep -vE "${ignore_pattern_steam_id}" > "${local_unmanaged_games_list}"
|
||||||
|
if [ -s "${local_unmanaged_games_list}" ]; then
|
||||||
|
printf '\e[1;35m%-6s\e[m\n' "List of unmanaged directories :"
|
||||||
|
cat "${local_unmanaged_games_list}"
|
||||||
|
fi
|
||||||
|
rm -f -- "${local_unmanaged_games_list}"
|
||||||
|
cd -- - > /dev/null || exit 1
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue