Skip to content

Commit

Permalink
Commit comment : on Fri Oct 14 07:16:47 CEST 2016
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubois committed Oct 14, 2016
1 parent a5d9368 commit 781c208
Show file tree
Hide file tree
Showing 1,241 changed files with 48,852 additions and 6 deletions.
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Source can be found at https://github.com/linuxmint/mint-y-theme. Creator Horst3
###These scripts can also be run on other systems then Linux Mint. Scroll down to the bottom to see on which distro's.


Each time I run these scripts, I renamed the result for example from
Each time I run these scripts, I renamed the result for example from

Mint-Y to Mint-Y-Sun
Mint-Dark to Mint-Dark-Sun
Expand All @@ -42,7 +42,7 @@ Building takes approx. 20 minutes.
# What is the inital look of Mint-Y theme


The green colours of Mint-y theme
The green colours of Mint-y theme

- 9ab87c
- 8fa876
Expand Down Expand Up @@ -180,6 +180,15 @@ All themes are sorted alphabetically.



# This is the Mint-Y-Matrix theme.

## Mint-Y-Dark-Matrix

![Screenshots](http://i.imgur.com/I2V1JzQ.jpg)




# This is the Mint-Y-Oranchelo theme.

## Mint-Y-Dark-Oranchelo
Expand Down Expand Up @@ -238,7 +247,7 @@ Started with Sardi Ghost Flexible script to change the colour, then conky aureol

##0. Get the source

First install git
First install git

sudo apt-get install git

Expand All @@ -250,13 +259,13 @@ Get the latest version from Mint-Y-Colora, clone the repository with

git clone https://github.com/erikdubois/Mint-Y-Colora-Theme

<b>Copy/paste the scripts</b> inside
<b>Copy/paste the scripts</b> inside


Mint-Y-Colora-Theme


to the folder
to the folder


mint-y-theme
Expand Down Expand Up @@ -294,7 +303,7 @@ If all went well you will find the result in the directory (you just downloaded)

We will run the last script nr 4

- to rename the folders
- to rename the folders
- to move the folders to ~/.themes
- to change the content of the three index.themes

Expand Down
93 changes: 93 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
#!/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.
#
##################################################################################################################

# changing the assets from colour

# Mint-Y Theme
# Light green - 9ab87c
# Dark green - 8fa876
# but there are some minor green variations to consider as well

##################################################################################################################
##################################################################################################################
##################################################################################################################
# put your colour codes in here and do not change the rest
# Never put a hashtag or # in front of the colour code if copy/pasting from gpick
# Never put "FF" at the end if copy/pasting from inkscape
# Always 6 letters or numbers
# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED

personaldarkcolour=90A4AE
personallightcolour=90A4AE

# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED
# THESE CODES MUST BE CHANGED
##################################################################################################################
##################################################################################################################
##################################################################################################################


echo "All colours in the folder src are still the original green ones from github!!!"
echo "Choose your colour that will replace the green online or with tools like gpick."
echo "e.g. sudo apt-get install gpick"
echo "Changing ....."
echo "Wait for it ...."

##################################################################################################################

## DO NOT CHANGE THESE LINES
## DO NOT CHANGE THESE LINES
## DO NOT CHANGE THESE LINES

# converting your personaldarkcolour into an rgba for the rubberband

hex2rgba_convert(){
hex = hex.replace('#','');
r = parseInt(hex.substring(0,2), 16);
g = parseInt(hex.substring(2,4), 16);
b = parseInt(hex.substring(4,6), 16);

result = 'rgba('+r+', '+g+', '+b+', '+opacity/100+')';
return result;
}

newcolour8=function hex2rgba_convert($personaldarkcolour,0.2)
echo $newcolour8



oldcolour1=9ab87c
oldcolour2=8fa876
oldcolour3=779559
oldcolour4=9abe76
oldcolour5=9ab87d
oldcolour6=88a66a
#Rubberband
oldcolour7=76905b
#oldcolour8="rgba(118, 144, 91, 0.2)"

newcolour1=$personallightcolour
newcolour2=$personaldarkcolour
newcolour3=$personaldarkcolour
newcolour4=$personallightcolour
newcolour5=$personallightcolour
newcolour6=$personallightcolour
newcolour7=$personaldarkcolour
#newcolour8="rgba(253, 66, 77, 0.2)"


Loading

0 comments on commit 781c208

Please sign in to comment.