From 7757ff2416c2556526bd6793c239f16db1864106 Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 23 Oct 2021 10:40:08 +0900 Subject: [PATCH] added a gnome extension and shfmt --- setup.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.sh b/setup.sh index 4bb4196..f4b15d7 100755 --- a/setup.sh +++ b/setup.sh @@ -398,6 +398,7 @@ setup_gnome_extensions() { 355 # status-area-horizontal-spacing 841 # freon 906 # sound-output-device-chooser + 1078 # twitchlive-panel 1082 # cpufreq 2741 # remove-alttab-delay-v2 2890 # tray-icons-reloaded @@ -551,6 +552,12 @@ setup_rust() { rustup install stable } +setup_shfmt() { + package_install \ + shfmt \ + +} + setup_steam() { package_install \ steam \ @@ -769,6 +776,7 @@ options=( "pip" "" off "piper" "" off "rust" "" off + "shfmt" "" off "steam" "" off "timeshift" "" off "torrential" "" off @@ -820,6 +828,7 @@ for choice in $choices; do "pip") setup_pip;; "piper") setup_piper;; "rust") setup_rust;; + "shfmt") setup_shfmt;; "steam") setup_steam;; "timeshift") setup_timeshift;; "torrential") setup_torrential;;