1
0
Fork 0

better POST_INSTALL instruction

added wireshark
This commit is contained in:
Kim, Jimin 2021-07-11 16:16:31 +09:00
parent fe88a00890
commit 08d65d4a96

View file

@ -221,8 +221,8 @@ setup_firefox() {
# DNS https cloudflare # DNS https cloudflare
POST_INSTALL+=( POST_INSTALL+=(
"log in to firefox" "firefox: log in"
"restore onetab" "firefox: restore onetab"
) )
} }
@ -323,7 +323,7 @@ setup_gnome() {
log "Restarting gnome shell" log "Restarting gnome shell"
killall -3 gnome-shell killall -3 gnome-shell
POST_INSTALL+=("enable gnome extensions") POST_INSTALL+=("gnome: enable gnome extensions")
} }
setup_go() { setup_go() {
@ -362,7 +362,7 @@ setup_keyboard() {
package_install \ package_install \
ibus-hangul \ ibus-hangul \
POST_INSTALL+=("setup korean keyboard and reboot") POST_INSTALL+=("keyboard: setup korean keyboard and reboot")
} }
setup_local() { setup_local() {
@ -527,7 +527,7 @@ setup_vscode() {
package_install \ package_install \
visual-studio-code-bin `# programming & text editing` \ visual-studio-code-bin `# programming & text editing` \
POST_INSTALL+=("log in to vscode") POST_INSTALL+=("vscode: log in")
} }
setup_vlc() { setup_vlc() {
@ -548,9 +548,12 @@ setup_wine() {
# - `winetricks settings fontsmooth=rgb` # - `winetricks settings fontsmooth=rgb`
} }
setup_wireshart() { setup_wireshark() {
package_install wireshark-gtk2 package_install \
wireshark-gtk2 \
sudo usermod -a -G wireshark $USER sudo usermod -a -G wireshark $USER
POST_INSTALL+=("wireshark: reboot")
} }
setup_wps_office() { setup_wps_office() {
@ -577,6 +580,7 @@ setup() {
# setup_gnome # setup_gnome
# setup_kdenlive # setup_kdenlive
# setup_virtualbox # setup_virtualbox
# setup_wireshark
# setup_wps_office # setup_wps_office
# setup_zoom # setup_zoom
} }