1
0
Fork 0

added steam setup

This commit is contained in:
Kim, Jimin 2021-10-12 14:44:01 +09:00
parent a403f64ce3
commit 9503561e19

View file

@ -513,6 +513,12 @@ setup_rust() {
} }
setup_steam() {
package_install \
steam \
}
setup_timeshift() { setup_timeshift() {
package_install \ package_install \
timeshift `# backup and restore system` \ timeshift `# backup and restore system` \
@ -721,6 +727,7 @@ options=(
"pip" "" off "pip" "" off
"piper" "" off "piper" "" off
"rust" "" off "rust" "" off
"steam" "" off
"timeshift" "" off "timeshift" "" off
"torrential" "" off "torrential" "" off
"unity" "" off "unity" "" off
@ -769,6 +776,7 @@ for choice in $choices; do
"pip") setup_pip;; "pip") setup_pip;;
"piper") setup_piper;; "piper") setup_piper;;
"rust") setup_rust;; "rust") setup_rust;;
"steam") setup_steam;;
"timeshift") setup_timeshift;; "timeshift") setup_timeshift;;
"torrential") setup_torrential;; "torrential") setup_torrential;;
"unity") setup_unity;; "unity") setup_unity;;