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
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;;