Last active
May 17, 2016 11:43
-
-
Save di3goleite/bc3a9e29ee4d01625963 to your computer and use it in GitHub Desktop.
Utilities for Fedora 22
This file contains 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
# installation list: | |
## rpmfusion repo | |
## vim, tmux, zsh, ack, npm, vlc, gimp, inkscape | |
## spotify-client | |
## flash plugin | |
## synaptic driver | |
# install rpm fusion repo | |
su -c 'dnf install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm' | |
# install utilities | |
sudo dnf update | |
sudo dnf install vim tmux zsh git the_silver_searcher ctags ncurses npm vlc gimp inkscape | |
sudo npm install -g jshint | |
# install oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# install spotify-client | |
sudo dnf config-manager --add-repo=http://negativo17.org/repos/fedora-spotify.repo | |
sudo dnf install spotify-client | |
# install flash-plugin | |
sudo dnf config-manager --add-repo=http://negativo17.org/repos/fedora-flash-plugin.repo | |
sudo dnf install flash-plugin | |
sudo setsebool -P unconfined_mozilla_plugin_transition=off | |
# install multimedia | |
sudo dnf install gstreamer-plugins-bad gstreamer-plugins-bad-free-extras gstreamer-ffmpeg gstreamer1-libav gstreamer1-plugins-bad-free-extras gstreamer1-plugins-bad-freeworld gstreamer-plugins-base-tools gstreamer1-plugins-good-extras gstreamer1-plugins-bad-free gstreamer1-plugins-good gstreamer1-plugins-base gstreamer1 | |
# install synaptic driver for touchpad | |
su | |
dnf install xorg-x11-drv-synaptics | |
cd /usr/share/X11/xorg.conf.d/ | |
ln -s 50-synaptics.conf 99-synaptics.conf | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment