- Checking for updates!
- Fix boot splash and it's script to home folder
- Removing guest session at login
- Modify settings!
- Installing Lantern
- Installing Google Chrome
- Installing git
- Installing node and npm
- Installing Atom
- Installing Telegram
- Installing VLC
- Installing uGet
- Installing aria2
- Installing Audacity
- Installing Persian fonts
- Installing Pencil
- Install Go
Last active
April 23, 2016 20:36
-
-
Save mahdavipanah/67e92d3c5a27cca2360ecd1eb3c0ade9 to your computer and use it in GitHub Desktop.
Ubuntu After Installation Todos
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
#! /bin/bash | |
# Fix Ubuntu Plymouth Boot Splash | |
# if entry exists for $vt_handoff use sed to search and replace | |
# write to tmp file - move to original | |
checkVT=$(grep -c "\$vt_handoff" /boot/grub/grub.cfg) | |
if [ ! "$checkVT" -eq "0" ] | |
then | |
echo "> Found vt_handoff removing ..." | |
sudo sed 's/$vt_handoff//g' /boot/grub/grub.cfg > /tmp/.grub.cfg | |
sudo mv /boot/grub/grub.cfg /boot/grub/grub.cfg.backup | |
sudo mv /tmp/.grub.cfg /boot/grub/grub.cfg | |
fi | |
echo "> Done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment