1
0
Fork 0

added a gnome extension and shfmt

This commit is contained in:
Kim, Jimin 2021-10-23 10:40:08 +09:00
parent dd069e4ad8
commit 7757ff2416

View file

@ -398,6 +398,7 @@ setup_gnome_extensions() {
355 # status-area-horizontal-spacing 355 # status-area-horizontal-spacing
841 # freon 841 # freon
906 # sound-output-device-chooser 906 # sound-output-device-chooser
1078 # twitchlive-panel
1082 # cpufreq 1082 # cpufreq
2741 # remove-alttab-delay-v2 2741 # remove-alttab-delay-v2
2890 # tray-icons-reloaded 2890 # tray-icons-reloaded
@ -551,6 +552,12 @@ setup_rust() {
rustup install stable rustup install stable
} }
setup_shfmt() {
package_install \
shfmt \
}
setup_steam() { setup_steam() {
package_install \ package_install \
steam \ steam \
@ -769,6 +776,7 @@ options=(
"pip" "" off "pip" "" off
"piper" "" off "piper" "" off
"rust" "" off "rust" "" off
"shfmt" "" off
"steam" "" off "steam" "" off
"timeshift" "" off "timeshift" "" off
"torrential" "" off "torrential" "" off
@ -820,6 +828,7 @@ for choice in $choices; do
"pip") setup_pip;; "pip") setup_pip;;
"piper") setup_piper;; "piper") setup_piper;;
"rust") setup_rust;; "rust") setup_rust;;
"shfmt") setup_shfmt;;
"steam") setup_steam;; "steam") setup_steam;;
"timeshift") setup_timeshift;; "timeshift") setup_timeshift;;
"torrential") setup_torrential;; "torrential") setup_torrential;;