-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comment : on Wed 22 Feb 19:16:40 UTC 2017
- Loading branch information
1 parent
6acdffe
commit 2d394ce
Showing
9,968 changed files
with
661 additions
and
15 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
53 changes: 53 additions & 0 deletions
53
installation/personal/600-install-personal-settings-folders-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
echo "################################################################" | ||
echo "######### Creating folders ################" | ||
echo "################################################################" | ||
|
||
|
||
|
||
[ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" | ||
[ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" | ||
|
||
[ -d $HOME"/.config/gtk-3.0" ] || mkdir -p $HOME"/.config/gtk-3.0" | ||
|
||
[ -d $HOME"/.config/conky" ] || mkdir -p $HOME"/.config/conky" | ||
|
||
[ -d $HOME"/.config/variety" ] || mkdir -p $HOME"/.config/variety" | ||
[ -d $HOME"/.config/variety/scripts" ] || mkdir -p $HOME"/.config/variety/scripts" | ||
|
||
[ -d $HOME"/.config/sublime-text-3" ] || mkdir -p $HOME"/.config/sublime-text-3" | ||
[ -d $HOME"/.config/sublime-text-3/Packages" ] || mkdir -p $HOME"/.config/sublime-text-3/Packages" | ||
[ -d $HOME"/.config/sublime-text-3/Packages/User" ] || mkdir -p $HOME"/.config/sublime-text-3/Packages/User" | ||
|
||
[ -d $HOME"/.fonts" ] || mkdir -p $HOME"/.fonts" | ||
|
||
[ -d $HOME"/.gimp-2.8" ] || mkdir -p $HOME"/.gimp-2.8" | ||
[ -d $HOME"/.gimp-2.8/scripts" ] || mkdir -p $HOME"/.gimp-2.8/scripts" | ||
[ -d $HOME"/.gimp-2.8/themes" ] || mkdir -p $HOME"/.gimp-2.8/themes" | ||
|
||
[ -d $HOME"/Desktop" ] || mkdir -p $HOME"/Desktop" | ||
[ -d $HOME"/Documents" ] || mkdir -p $HOME"/Documents" | ||
[ -d $HOME"/Downloads" ] || mkdir -p $HOME"/Downloads" | ||
[ -d $HOME"/DATA" ] || mkdir -p $HOME"/DATA" | ||
#[ -d $HOME"/Dropbox" ] || mkdir -p $HOME"/Dropbox" will be created by dropbox | ||
[ -d $HOME"/Insync" ] || mkdir -p $HOME"/Insync" | ||
[ -d $HOME"/Music" ] || mkdir -p $HOME"/Music" | ||
[ -d $HOME"/Pictures" ] || mkdir -p $HOME"/Pictures" | ||
[ -d $HOME"/Videos" ] || mkdir -p $HOME"/Videos" | ||
|
||
|
||
echo "################################################################" | ||
echo "######### folders created ################" | ||
echo "################################################################" |
25 changes: 25 additions & 0 deletions
25
installation/personal/605-install-personal-settings-bookmarks-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
|
||
echo "################################################################" | ||
echo "######### Installing bookmarks ################" | ||
echo "################################################################" | ||
|
||
|
||
cp settings/bookmarks/bookmarks ~/.config/gtk-3.0/ | ||
|
||
|
||
echo "################################################################" | ||
echo "######### personal settings installed ################" | ||
echo "################################################################" |
22 changes: 22 additions & 0 deletions
22
installation/personal/610-install-personal-settings-keyboard-shortcuts-v3.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
echo "loading all shortcuts" | ||
|
||
cd settings/keyboard-shortcuts | ||
sh dconf_load.sh | ||
|
||
echo "################################################################" | ||
echo "######### keyboard shortcuts set ################" | ||
echo "################################################################" | ||
|
25 changes: 25 additions & 0 deletions
25
installation/personal/615-install-personal-settings-screenshot-to-jpg-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
echo "################################################################" | ||
echo "######### Screenshot settings ################" | ||
echo "################################################################" | ||
|
||
echo "Making sure gnome-screenshot saves in jpg - smaller in kb" | ||
|
||
sh settings/gnome-screenshot/set-gnome-screenshot-to-save-as-jpg.sh | ||
|
||
|
||
echo "################################################################" | ||
echo "######### screenshot settings installed ################" | ||
echo "################################################################" |
31 changes: 31 additions & 0 deletions
31
installation/personal/620-install-personal-settings-gimp-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
echo "################################################################" | ||
echo "######### gimp settings ################" | ||
echo "################################################################" | ||
|
||
[ -d $HOME"/.gimp-2.8" ] || mkdir -p $HOME"/.gimp-2.8" | ||
[ -d $HOME"/.gimp-2.8/scripts" ] || mkdir -p $HOME"/.gimp-2.8/scripts" | ||
[ -d $HOME"/.gimp-2.8/themes" ] || mkdir -p $HOME"/.gimp-2.8/themes" | ||
|
||
echo "Copy/pasting gimp scripts and themes" | ||
|
||
cp settings/gimp/scripts/* ~/.gimp-2.8/scripts/ | ||
cp -r settings/gimp/themes/* ~/.gimp-2.8/themes/ | ||
|
||
|
||
|
||
echo "################################################################" | ||
echo "######### gimp settings installed ################" | ||
echo "################################################################" |
24 changes: 24 additions & 0 deletions
24
installation/personal/625-install-personal-settings-sublime-text-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
[ -d $HOME"/.config/sublime-text-3" ] || mkdir -p $HOME"/.config/sublime-text-3" | ||
[ -d $HOME"/.config/sublime-text-3/Packages" ] || mkdir -p $HOME"/.config/sublime-text-3/Packages" | ||
[ -d $HOME"/.config/sublime-text-3/Packages/User" ] || mkdir -p $HOME"/.config/sublime-text-3/Packages/User" | ||
|
||
cp settings/sublimetext/* ~/.config/sublime-text-3/Packages/User/ | ||
|
||
|
||
echo "################################################################" | ||
echo "######### sublime text settings copied ################" | ||
echo "################################################################" | ||
|
25 changes: 25 additions & 0 deletions
25
installation/personal/630-install-personal-settings-variety-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
[ -d $HOME"/.config/variety" ] || mkdir -p $HOME"/.config/variety" | ||
[ -d $HOME"/.config/variety/scripts" ] || mkdir -p $HOME"/.config/variety/scripts" | ||
|
||
echo "Copy/pasting scripts for feh/variety to work" | ||
|
||
cp settings/variety/* ~/.config/variety/ | ||
|
||
|
||
|
||
echo "################################################################" | ||
echo "######### variety installed ################" | ||
echo "################################################################" |
23 changes: 23 additions & 0 deletions
23
installation/personal/635-install-personal-settings-arc-colora-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
|
||
echo "Copy/pasting Arc Colora themes to ~/.themes" | ||
|
||
cp -r Arc\ Colora/* ~/.themes/ | ||
|
||
|
||
echo "################################################################" | ||
echo "######### arc colora themes copied ################" | ||
echo "################################################################" | ||
|
33 changes: 33 additions & 0 deletions
33
installation/personal/690-install-personal-settings-root-v1.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
set -e | ||
################################################################################################################## | ||
# 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. | ||
# | ||
################################################################################################################## | ||
|
||
echo "################################################################" | ||
echo "######### root files ################" | ||
echo "################################################################" | ||
|
||
|
||
|
||
#cp settings/.bashrc ~/ | ||
#cp settings/.gtkrc-2.0 ~/ | ||
#cp settings/.xinitrc ~/ | ||
#cp settings/.zlogin ~/ | ||
#cp settings/.zshrc ~/ | ||
#cp settings/bookmarks ~/.config/gtk-3.0/ | ||
#cp settings/settings.ini ~/.config/gtk-3.0/ | ||
#cp settings/sublimetext/* ~/.config/sublime-text-3/Packages/User/ | ||
|
||
|
||
|
||
echo "################################################################" | ||
echo "######### root files installed ################" | ||
echo "################################################################" |
Oops, something went wrong.