12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- ##### My (demuredemeanor) bashrc sub source install check script
- # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{}}};
- # https://notabug.org/demure/dotfiles/
- # legacy repo http://github.com/demure/dotfiles
- # vim:set syntax=sh:
- ## NOTE: not using ',' as I want to be able to:
- # $(sudo aptitude install $MISSING_PROGRAMS)
- # or more reasonably:
- # $(for i in $MISSING_PROGRAMS; do sudo aptitude install $i; done)
- MISSING_CLI=""
- MISSING_GUI=""
- ### CLI ### {{{
- CLI_LIST=(docker pinfo qmv vim w3m neomutt tmux ncdu pass stow notmuch msmtp \
- mbsync urlview htop aircrack-ng mosh nmap fusermount exfatfsck fzf qemu-io \
- cacaview scanmem hexcurse lsof pidof tomb xset pinentry-curses pinentry-tty \
- ranger rfkill sshfs tree unar wget iotop parted caff fail2ban-client rsync \
- weechat diff file find gpg gpg2 nc lnav cheat dfc newsboat task redshift git \
- xdotool clamscan iftop syncthing wireshark hwmon bc entr gpm tlp sfill vit \
- curl lshw parallel minicom khal scdaemon grep less cmus mpv tmuxinator iw \
- dmidecode gawk bvi pandoc djmount openvpn resolvconf borg iptraf-ng make jq \
- acpi termdown cgdb ttyd trash-put udiskie mtr tsp fwupdmgr exiv2 z.sh unzip \
- pdfunite rubber epy tuir urlscan rlwrap)
- for i in "${CLI_LIST[@]}"; do
- if [[ ! $(command -v ${i}) ]]; then
- MISSING_CLI+="${i} "
- fi
- done
- ### End CLI ### }}}
- ### GUI ### {{{
- GUI_LIST=(rofi mcomix zathura feh scrot calibre i3lock xbacklight xfd \
- libreoffice chromium gparted xss-lock urxvt zeal i3 font-manager gimp \
- baobab gvim nitrogen touchegg unclutter autorandr srandrd neato compton xrdb \
- notify-send qtpass youtube-dl screenkey inkscape qutebrowser clipster xcalib \
- pinentry-gtk2 sgt-signpost polybar kitty conky firefox rofi-pass speedcrunch \
- setxkbmap)
- for i in "${GUI_LIST[@]}"; do
- if [[ ! $(command -v ${i}) ]]; then
- MISSING_GUI+="${i} "
- fi
- done
- ### End GUI ### }}}
- ### Font ### {{{
- ### End Font ### }}}
|