Skip to content

Instantly share code, notes, and snippets.

@Dazage
Created May 22, 2020 17:24
Show Gist options
  • Save Dazage/b6734e87c05071f7aa0fade42beb09b6 to your computer and use it in GitHub Desktop.
Save Dazage/b6734e87c05071f7aa0fade42beb09b6 to your computer and use it in GitHub Desktop.
Get me up and running on a minimal fedora install.
# 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
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