Skip to content

Instantly share code, notes, and snippets.

@FerreiraRaphael
Last active August 19, 2016 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FerreiraRaphael/7fa1554a121560e27f525382a70ea920 to your computer and use it in GitHub Desktop.
Save FerreiraRaphael/7fa1554a121560e27f525382a70ea920 to your computer and use it in GitHub Desktop.
Shells com meus apps favoritos do fedora
#!/bin/sh
#update fedora
sudo dnf upgrade
#dmenu
sudo dnf install dmenu
#Gnome Tweak Tools
sudo dnf install gnome-tweak-tool
#spotify
sudo dnf config-manager --add-repo=http://negativo17.org/repos/fedora-spotify.repo
sudo dnf install spotify-client
#fedy
bash -c 'su -c "curl http://folkswithhats.org/fedy-installer -o fedy-installer && chmod +x fedy-installer && ./fedy-installer"'
#stremio
wget http://dl.strem.io/Stremio3.5.9.linux.tar.gz -O ~/stremio.tar.gz
sudo wget http://www.strem.io/3.0/stremio-white-small.png -O /usr/share/icons/hicolor/256x256/apps/stremio.png
sudo mkdir /opt/stremio
sudo tar -vzxf ~/stremio.tar.gz -C /opt/stremio/
sudo ln -sf /opt/stremio/Stremio-runtime /usr/bin/stremio
su -c "echo -e '[Desktop Entry]\nVersion=1.0\nType=Application\nTerminal=false\nName=stremio\nExec=/opt/stremio/Stremio-runtime\nIcon=stremio\nCategories=Application' >> /usr/share/applications/stremio.desktop"
#oh-my-zsh
sudo dnf install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
#plank
sudo dnf install plank
#plank themer
cd ~ && mkdir -p ~/.temp-plank-themer && cd ~/.temp-plank-themer && wget https://github.com/rhoconlinux/plank-themer/archive/master.zip && unzip master.zip && cd plank-themer-master/ && rm -fR ~/.config/plank/dock1/theme_index; rm -fR ~/.config/plank/dock1/themes-repo; cp -a theme_index/ ~/.config/plank/dock1 && cp -a themes-repo/ ~/.config/plank/dock1 && cd ~ && rm -R ~/.temp-plank-themer && sh ~/.config/plank/dock1/theme_index/plank-on-dock-themer.sh
#!/bin/sh
#stremio
wget http://dl.strem.io/Stremio3.6.5.linux.tar.gz -O ~/stremio.tar.gz
sudo wget http://www.strem.io/3.0/stremio-white-small.png -O /usr/share/icons/hicolor/256x256/apps/stremio.png
sudo mkdir /opt/stremio
sudo tar -vzxf ~/stremio.tar.gz -C /opt/stremio/
sudo ln -sf /opt/stremio/Stremio-runtime /usr/bin/stremio
su -c "echo -e '[Desktop Entry]\nVersion=1.0\nType=Application\nTerminal=false\nName=stremio\nExec=/opt/stremio/Stremio-runtime\nIcon=stremio\nCategories=Application' >> /usr/share/applications/stremio.desktop"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment