123456789101112131415161718192021222324252627282930313233343536 |
- ##### 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)
- MISSING_CLI=""
- MISSING_GUI=""
- ### CLI ### {{{
- CLI_LIST=(docker pinfo qmv vim w3m mutt mpv tmux ncdu pass stow notmuch msmtp offlineimap urlview htop aircrack-ng mosh nmap sshuttle fusermount exfatfsck qemu-io pianobar cacaview conky encfs scanmem hexcurse lsof pidof pinentry-curses pinentry-tty ranger rfkill sshfs tree unar wget iotop parted caff fail2ban-client wicd-curses rsync weechat diff file find gpg gpg2 mc lnav cheat dfc lemonbar newsbeuter task redshift xdotool git clamscan iftop wireshark aptitude hwmon)
- for i in "${CLI_LIST[@]}"; do
- if [[ ! $(command -v ${i}) ]]; then
- MISSING_CLI+="${i} "
- fi
- done
- ### End CLI ### }}}
- ### GUI ### {{{
- GUI_LIST=(rofi mcomix zathura xombrero terminator feh scrot volumeicon calibre redshift-gtk stalonetray i3lock xclip xnest xpra xbacklight spacefm spectrwm libreoffice clipit nm-applet chromium icedove cryptkeeper gparted xss-lock nvpy uzbl urxvt zeal i3 font-manager gimp baobab gvim)
- for i in "${GUI_LIST[@]}"; do
- if [[ ! $(command -v ${i}) ]]; then
- MISSING_GUI+="${i} "
- fi
- done
- ### End GUI ### }}}
- ### Font ### {{{
- ### End Font ### }}}
|