Created
May 22, 2020 17:24
-
-
Save Dazage/b6734e87c05071f7aa0fade42beb09b6 to your computer and use it in GitHub Desktop.
Get me up and running on a minimal fedora install.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# base | |
ansible | |
bash-completion | |
emacs | |
git | |
htop | |
neovim | |
pass | |
sshfs | |
stow | |
tmux | |
weechat | |
# media | |
ffmpeg | |
mpc | |
mpd | |
mpdscribble | |
mpv | |
ncmpcpp | |
youtube-dl | |
# programming | |
cargo | |
golang | |
rust | |
ShellCheck | |
# laptop | |
brightnessctl | |
NetworkManager-wifi | |
tlp | |
## bluetooth | |
bluez-tools | |
pulseaudio-module-bluetooth | |
# work | |
chromium | |
flatpak | |
openconnect | |
openfortivpn | |
podman | |
xfreerdp | |
# x11 | |
@base-x | |
xterm | |
i3 | |
firefox | |
sxhkd | |
dunst | |
libnotify | |
sxiv | |
zathura-pdf-mupdf | |
terminus-fonts | |
# optional | |
#netstat-monitor | |
#network-manager-applet | |
#wget |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Would you like to automatically install all of dmt's dependencies and must-have software? [y/n] " | |
read -rp autoinstdep | |
case $autoinstdep in | |
[Yy]* ) sudo dnf install $(sed '/^\s*#/d;/^$/d' ~/packages.txt) ;; | |
[Nn]* ) echo "Goodbye!" ;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment