From 81948ff44ba311d05f3d96dad6177c552babb0d4 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 8 May 2025 12:44:09 -0500 Subject: adding sudo to install statements, i.e., all of them --- user_scripts/applications.sh | 105 ++++++++++++++++++++++--------------------- 1 file changed, 53 insertions(+), 52 deletions(-) mode change 100644 => 100755 user_scripts/applications.sh diff --git a/user_scripts/applications.sh b/user_scripts/applications.sh old mode 100644 new mode 100755 index 66b8038..48d1cf0 --- a/user_scripts/applications.sh +++ b/user_scripts/applications.sh @@ -1,60 +1,61 @@ #!/bin/sh # Craig Jennings # installs commonly used applications +# note sudo must be configured - #### Emacs and Dependencies -pkg install -y emacs # everything is ultimately to run or assist Emacs -pkg install -y ImageMagick7 # image processing -pkg install -y aspell # spell checker -pkg install -y en-aspell # english dictionary -pkg install -y fd-find # faster find alternative -pkg install -y ffmpegthumbnailer # video thumbnailer -pkg install -y gnutls # gnu transport layer security -pkg install -y gtar # gnu version of tar -pkg install -y isync # manage local copy of remote IMAP folders -pkg install -y mediainfo # tag information for video and audio files -pkg install -y mpv # video player -pkg install -y mu # mail searching front-end (used with isync) -pkg install -y multimarkdown # markdown processor -pkg install -y pkgconf # configure compiler and linker flags -pkg install -y png # manipulate png files -pkg install -y poppler # pdf rendering library -pkg install -y poppler-glib # glib bindings for poppler -pkg install -y sdcv # utility to work with dictionaries in StarDict's format + #### Emacs and Dependencies +sudo pkg install -y emacs # everything is ultimately to run or assist Emacs +sudo pkg install -y ImageMagick7 # image processing +sudo pkg install -y aspell # spell checker +sudo pkg install -y en-aspell # english dictionary +sudo pkg install -y fd-find # faster find alternative +sudo pkg install -y ffmpegthumbnailer # video thumbnailer +sudo pkg install -y gnutls # gnu transport layer security +sudo pkg install -y gtar # gnu version of tar +sudo pkg install -y isync # manage local copy of remote IMAP folders +sudo pkg install -y mediainfo # tag information for video and audio files +sudo pkg install -y mpv # video player +sudo pkg install -y mu # mail searching front-end (used with isync) +sudo pkg install -y multimarkdown # markdown processor +sudo pkg install -y pkgconf # configure compiler and linker flags +sudo pkg install -y png # manipulate png files +sudo pkg install -y poppler # pdf rendering library +sudo pkg install -y poppler-glib # glib bindings for poppler +sudo pkg install -y sdcv # utility to work with dictionaries in StarDict's format - #### Miscellaneous -pkg install -y calibre # ebook management application -pkg install -y neofetch # system info script -pkg install -y py311-ranger # file manager with VI key bindings + #### Miscellaneous +sudo pkg install -y calibre # ebook management application +sudo pkg install -y neofetch # system info script +sudo pkg install -y py311-ranger # file manager with VI key bindings - #### Developer Tools -pkg install -y autoconf # generate gnu configure scripts -pkg install -y autotools # gnu autotools meta-port -pkg install -y cmake # cross-platform make generator -pkg install -y cmake-man # cmake documentation files -pkg install -y gcc # gnu compiler collection metapackage -pkg install -y gdb # the gnu debugger -pkg install -y go # go programming language metapackage -pkg install -y go-tools # go tools, duh -pkg install -y gopls # go language server -pkg install -y hs-ShellCheck # shell script static analysis tool -pkg install -y meson # high performance build system -pkg install -y ninja # small build system akin to make -pkg install -y py311-pyright # command line wrapper for pyright -pkg install -y ripgrep # command line search tools -pkg install -y rust # language with focus on memory safety and concurrency -pkg install -y shfmt # shell script formatter -pkg install -y valgrind # memory debuging and profiling -pkg install -y vim # improved vi + #### Developer Tools +sudo pkg install -y autoconf # generate gnu configure scripts +sudo pkg install -y autotools # gnu autotools meta-port +sudo pkg install -y cmake # cross-platform make generator +sudo pkg install -y cmake-man # cmake documentation files +sudo pkg install -y gcc # gnu compiler collection metapackage +sudo pkg install -y gdb # the gnu debugger +sudo pkg install -y go # go programming language metapackage +sudo pkg install -y go-tools # go tools, duh +sudo pkg install -y gopls # go language server +sudo pkg install -y hs-ShellCheck # shell script static analysis tool +sudo pkg install -y meson # high performance build system +sudo pkg install -y ninja # small build system akin to make +sudo pkg install -y py311-pyright # command line wrapper for pyright +sudo pkg install -y ripgrep # command line search tools +sudo pkg install -y rust # language with focus on memory safety and concurrency +sudo pkg install -y shfmt # shell script formatter +sudo pkg install -y valgrind # memory debuging and profiling +sudo pkg install -y vim # improved vi - #### Privacy and Password Utilities -pkg install -y gnupg # free pgp implementation -pkg install -y gpgme # library to make gnupg easier + #### Privacy and Password Utilities +sudo pkg install -y gnupg # free pgp implementation +sudo pkg install -y gpgme # library to make gnupg easier - #### Desktop Applications -pkg install -y firefox # web browser -pkg install -y zathura # lightweight pdf viewer -pkg install -y zathura-cb # zathura comic book plugin -pkg install -y zathura-djvu # zathura djvu plugin -pkg install -y zathura-pdf-mupdf # mupdf pdf renderer -pkg install -y zathura-ps # zathura postscript plugin + #### Desktop Applications +sudo pkg install -y firefox # web browser +sudo pkg install -y zathura # lightweight pdf viewer +sudo pkg install -y zathura-cb # zathura comic book plugin +sudo pkg install -y zathura-djvu # zathura djvu plugin +sudo pkg install -y zathura-pdf-mupdf # mupdf pdf renderer +sudo pkg install -y zathura-ps # zathura postscript plugin -- cgit v1.2.3