|
#!/bin/bash |
|
|
|
## After Xfce is installed, these are some general purpose theme that feel good to my eyes |
|
|
|
function themesFromGithub { |
|
|
|
## /McOS-MJV-XFCE-Edition |
|
myDownloads=~/Downloads/ |
|
|
|
giturl="https://github.com/paullinuxthemer/McOS-MJV-XFCE-Edition.git" |
|
git clone $giturl $myDownloads/McOS-MJV-XFCE-Edition |
|
sudo cp -rf $myDownloads/McOS-MJV-XFCE-Edition/* /usr/share/themes/ |
|
|
|
giturl="https://github.com/paullinuxthemer/McOS-MJV-Dark-XFCE-Edition.git" |
|
git clone $giturl $myDownloads/McOS-MJV-Dark-XFCE-Edition |
|
sudo cp -rf $myDownloads/McOS-MJV-Dark-XFCE-Edition/* /usr/share/themes/ |
|
|
|
echo " |
|
Installed themes from Github |
|
" |
|
} |
|
|
|
function themesFromXfceLook { |
|
## https://www.xfce-look.org |
|
|
|
myDownloads=~/Downloads |
|
|
|
zipUrl="https://www.xfce-look.org/p/1255374/startdownload?file_id=1536244428&file_name=Arctodon-Xfwm.tar.gz&file_type=application/x-gzip&file_size=49178" |
|
wget -P $myDownloads/ $zipUrl |
|
unzip "$myDownloads/Arctodon-Xfwm.tar.gz" -d $myDownloads/ |
|
sudo cp -rf $myDownloads/Arctodon-Xfwm/* /usr/share/themes/ |
|
|
|
zipUrl="https://www.xfce-look.org/p/1149875/startdownload?file_id=1470015356&file_name=Win10-dark\(small\).tar.gz&file_type=application/x-gzip&file_size=3432" |
|
wget -P $myDownloads/ $zipUrl |
|
unzip "$myDownloads/Win10-dark(small).tar.gz" -d $myDownloads/ |
|
sudo cp -rf "$myDownloads/Win10-dark(small).tar.gz/*" /usr/share/themes/ |
|
|
|
echo " |
|
Installed themes from xfce-look.org |
|
" |
|
|
|
} |
|
|
|
function wallpapers { |
|
# wget -P ~/Pictures/ "./misc-wallpapers.tar.gz" |
|
# unzip misc-wallpapers.zip -d ~/Pictures/ |
|
echo " |
|
- |
|
" |
|
|
|
} |
|
|
|
function macbuntuTheme { |
|
sudo add-apt-repository ppa:noobslab/macbuntu |
|
|
|
## Macbuntu Wallpapers |
|
wget -P ~/Pictures/ "http://drive.noobslab.com/data/Mac/MacBuntu-Wallpapers.zip" |
|
unzip ~/Pictures/MacBuntu-Wallpapers.zip -d ~/Pictures/ |
|
|
|
## MacBuntu OS Y Theme, Icons and cursors: |
|
sudo apt-get update |
|
sudo apt-get install macbuntu-os-icons-v1804 |
|
sudo apt-get install macbuntu-os-ithemes-v1804 |
|
|
|
## Uninstall icons and themes |
|
# sudo apt-get remove macbuntu-os-icons-v1804 macbuntu-os-ithemes-v1804 |
|
|
|
sudo apt-get update |
|
# sudo apt-get install slingscold ## Slingscold (Alternative to Launchpad) |
|
# sudo apt-get install albert ## Albert Spotlight (Alternative to Mac Spotlight) |
|
sudo apt-get install macbuntu-os-plank-theme-v1804 ## Plank Dock |
|
## killall xfce4-panel |
|
|
|
## Uninstall plank |
|
# sudo apt-get autoremove plank macbuntu-os-plank-theme-v1804 |
|
|
|
## Tweak Tools to change Themes & Icons: |
|
# sudo apt-get install gnome-tweak-tool |
|
# sudo apt-get install libreoffice-style-sifr |
|
|
|
## (Optional) Mac fonts: |
|
|
|
wget -O mac-fonts.zip http://drive.noobslab.com/data/Mac/macfonts.zip |
|
sudo unzip mac-fonts.zip -d /usr/share/fonts; rm mac-fonts.zip |
|
sudo fc-cache -f -v |
|
|
|
echo " |
|
Installed themes from noobslab |
|
" |
|
|
|
debugVar=$debugVar" macbuntuTheme" |
|
|
|
} |
|
|
|
function generalSoftware { |
|
sudo apt-get update |
|
sudo apt-get install build-essential |
|
sudo apt-get install git gcc xterm geany geany-plugins tree nano mc |
|
|
|
## Geany themes |
|
git clone https://github.com/codebrainz/geany-themes.git ~/Downloads/geany-themes |
|
sh ~/Downloads/geany-themes/install.sh |
|
|
|
## Nano themes |
|
# sudo cp /etc/nanorc ~/ |
|
# mv ~/nanorc ~/.nanorc |
|
# sudo chmod +x ~/.nanorc |
|
echo "include /usr/share/nano/*" >> ~/.nanorc |
|
|
|
echo " |
|
Installed general software |
|
" |
|
|
|
debugVar=$debugVar" generalSoftware" |
|
|
|
} |
|
|
|
function githubUser { |
|
## Define Github user |
|
|
|
## clear |
|
|
|
echo " |
|
|
|
|
|
Enter your Github user profile. |
|
You need this in order to commit/push to Github |
|
--------------------------------------------------- |
|
" |
|
echo "# git config --global user.name |
|
" |
|
read -p " github user name: " githubusername |
|
echo "" |
|
echo "# git config --global user.email |
|
" |
|
read -p " github user email: " githubuseremail |
|
|
|
echo "---" |
|
git config --global user.name $githubusername |
|
git config --global user.email $githubuseremail |
|
|
|
echo " |
|
Done. |
|
# git config --global user.name $githubusername |
|
# git config --global user.email $githubuseremail |
|
" |
|
|
|
} |
|
|
|
function installThemes { |
|
|
|
themesFromGithub; sleep 1s |
|
|
|
themesFromXfceLook; sleep 1s |
|
|
|
# macbuntuTheme |
|
|
|
# wallpapers |
|
|
|
generalSoftware; sleep 1s |
|
|
|
githubUser |
|
|
|
echo " |
|
$debugVar |
|
Done. |
|
" |
|
|
|
} |
|
|
|
## Run |
|
# sudo apt-get update |
|
installThemes |