Skip to content

Commit

Permalink
Comment : on Wed Feb 1 12:20:35 CET 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubois committed Feb 1, 2017
1 parent 25e29af commit ccb9501
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 11 deletions.
44 changes: 40 additions & 4 deletions git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,45 @@
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# Remember : git push origin master --force
# Remember : git reset --hard <old-commit-id>
# git push -f <remote-name> <branch-name>

# echo "# Ultimate-Linux-Mint-18" >> README.md
# git init
# git add README.md
# git commit -m "first commit"
# git remote add origin https://github.com/erikdubois/Ultimate-Linux-Mint-18-Cinnamon.git
# git push -u origin master

# git config --global user.name x
# git config --global user.email x
# sudo git config --system core.editor nano
# git config --global credential.helper cache
# git config --global credential.helper 'cache --timeout=3600'


# Force git to overwrite local files on pull - no merge

# git fetch all

# git push --set-upstream origin master

# git reset --hard orgin/master


# checking if kernel files are present otherswise github will become too big


if [ -f linux* ]; then
echo "####################################"
echo "Stopping the script!!"
echo "Wait for the kernel update script to quit."
echo "####################################"
exit 0
fi

# checking if I have the latest files from github

git pull

# Below command will backup everything inside the project folder
git add --all .

Expand All @@ -24,7 +60,7 @@ echo "####################################"
read input

# Committing to the local repository with a message containing the time details and commit text
curtime=$(date +"%T %d-%m-%Y")
curtime=$(date)
git commit -m "Comment : $input on $curtime"

# Push the local files to github
Expand Down
2 changes: 1 addition & 1 deletion installation/020-install-fastest-arch-mirrors-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo pacman -S --noconfirm --needed reflector


echo "################################################################"
echo "#### finding fastest servers be patient in BE NL FR DE GB ###"
echo "#### finding fastest servers be patient for the world ###"
echo "################################################################"

# finding the fastest archlinux servers
Expand Down
4 changes: 4 additions & 0 deletions installation/300-install-themes-icons-cursors-conky-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ set -e
#but does not seem to hurt installations on ssd or hd.
sudo mount -o remount,size=4G,noatime /tmp

# install awesome font for conky status bar

sh install-awesome-font-v1.sh


# Conky Aureola

Expand Down
2 changes: 2 additions & 0 deletions installation/400-install-software-distro-specific-v1.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
#never use the next line in this script or pasystray will not be installed
#set -e
##################################################################################################################
# Written to be used on 64 bits computers
Expand All @@ -24,6 +25,7 @@ sudo pacman -S noto-fonts --noconfirm --needed

#file manager

#sudo pacman -S nemo --noconfirm --needed


echo "You can install samba - folder sharing over network in next script"
Expand Down
2 changes: 1 addition & 1 deletion installation/500-install-samba-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -e


sudo pacman -S --noconfirm --needed samba
sudo cp /etc/samba/smb.conf.default /etc/samba/smb.conf
sudo cp /etc/samba/smb.conf.default /etc/samba/smb.conf
sudo systemctl enable smbd.service
sudo systemctl start smbd.service
sudo systemctl enable nmbd.service
Expand Down
3 changes: 0 additions & 3 deletions installation/700-firefox-for-dark-themes-settings-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,3 @@ echo "################################################################"
echo "######### firefox settings installed ################"
echo "################################################################"

echo "################################################################"
echo "###### Budgie installation is finished. Enjoy ################"
echo "################################################################"
34 changes: 34 additions & 0 deletions installation/install-gtk-arc-flatabulous-theme--v1.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################



#https://github.com/andreisergiu98/arc-flatabulous-theme

rm -rf /tmp/arc-flatabulous-theme

#sudo apt-get install -y autoconf automake pkg-config libgtk-3-dev git
sudo eopkg it -y autoconf automake pkg-config libgtk-3-devel m4 make

git clone https://github.com/andreisergiu98/arc-flatabulous-theme /tmp/arc-flatabulous-theme
cd /tmp/arc-flatabulous-theme
./autogen.sh --prefix=/usr
sudo make install
#sudo make uninstall

# cleanup
rm -rf /tmp/arc-flatabulous-theme

echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"
9 changes: 7 additions & 2 deletions installation/install-teamviewer-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ else
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "!!!!!!!!! "$package" has NOT been installed"
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"

echo "Teamviewer needs 32 bits applications"
echo "Go to /etc/pacman.conf and edit these lines"
echo "[multilib]"
echo "Include = /etc/pacman.d/mirrorlist"
echo "Include this mirrorlist as well"
sleep 2
fi

fi
fi

0 comments on commit ccb9501

Please sign in to comment.