From 9503561e1903a3b0b0d4fe29755eaf2a816fad68 Mon Sep 17 00:00:00 2001 From: developomp Date: Tue, 12 Oct 2021 14:44:01 +0900 Subject: [PATCH] added steam setup --- setup.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.sh b/setup.sh index d9e9cae..d09162d 100755 --- a/setup.sh +++ b/setup.sh @@ -513,6 +513,12 @@ setup_rust() { } +setup_steam() { + package_install \ + steam \ + +} + setup_timeshift() { package_install \ timeshift `# backup and restore system` \ @@ -721,6 +727,7 @@ options=( "pip" "" off "piper" "" off "rust" "" off + "steam" "" off "timeshift" "" off "torrential" "" off "unity" "" off @@ -769,6 +776,7 @@ for choice in $choices; do "pip") setup_pip;; "piper") setup_piper;; "rust") setup_rust;; + "steam") setup_steam;; "timeshift") setup_timeshift;; "torrential") setup_torrential;; "unity") setup_unity;;