-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 927759a
Showing
56 changed files
with
989 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,26 @@ | ||
# Breeze Perfect | ||
|
||
The perfect Breeze theme for Yakuake | ||
|
||
![Breeze Perfect Dark - Title bar gradient - Slim add and close tab buttons](https://raw.githubusercontent.com/noahadvs/yakuake-breeze_perfect_dark/master/Yakuake-BreezePerfect-SlimAddClose-Gradient.png) | ||
|
||
![Breeze Perfect Dark - No title bar gradient - Square add and close tab buttons](https://raw.githubusercontent.com/noahadvs/yakuake-breeze_perfect_dark/master/Yakuake-BreezePerfect-SquareAddClose-NoGradient.png) | ||
|
||
## Installation | ||
|
||
KDE Store: TODO | ||
|
||
From GitHub: | ||
|
||
```bash | ||
git clone https://github.com/noahadvs/yakuake-breeze_perfect.git ~/.local/share/yakuake/kns_skins/yakuake-breeze_perfect | ||
``` | ||
|
||
If you installed from GitHub, you can update the theme with this (only works if you don't modify anything): | ||
|
||
```bash | ||
cd ~/.local/share/yakuake/kns_skins/yakuake-breeze_perfect | ||
git fetch origin && git pull | ||
``` | ||
|
||
There are scripts in the `customizations` folder that you can use to customize the theme. |
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,8 @@ | ||
#!/bin/bash | ||
# Convert add_up-slim.svg, add_over-slim.svg and add_down-slim.svg to | ||
# add_up.png, add_over.png and add_down.png. | ||
|
||
ln -srf ../tabs/add_up-slim.svg ../tabs/add_up.png | ||
ln -srf ../tabs/add_over-slim.svg ../tabs/add_over.png | ||
ln -srf ../tabs/add_down-slim.svg ../tabs/add_down.png | ||
sed -i '8s/x=[0-9]*/x=19/g' ../tabs.skin |
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,8 @@ | ||
#!/bin/bash | ||
# Convert add_up-square.svg, add_over-square.svg and add_down-square.svg to | ||
# add_up.png, add_over.png and add_down.png. | ||
|
||
ln -srf ../tabs/add_up-square.svg ../tabs/add_up.png | ||
ln -srf ../tabs/add_over-square.svg ../tabs/add_over.png | ||
ln -srf ../tabs/add_down-square.svg ../tabs/add_down.png | ||
sed -i '8s/x=[0-9]*/x=27/g' ../tabs.skin |
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,8 @@ | ||
#!/bin/bash | ||
# Convert close_up-slim.svg, close_over-slim.svg and close_down-slim.svg to | ||
# close_up.png, close_over.png and close_down.png. | ||
|
||
ln -srf ../tabs/close_up-slim.svg ../tabs/close_up.png | ||
ln -srf ../tabs/close_over-slim.svg ../tabs/close_over.png | ||
ln -srf ../tabs/close_down-slim.svg ../tabs/close_down.png | ||
sed -i '37s/x=[0-9]*/x=20/g' ../tabs.skin |
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,8 @@ | ||
#!/bin/bash | ||
# Convert close_up-square.svg, close_over-square.svg and close_down-square.svg to | ||
# close_up.png, close_over.png and close_down.png. | ||
|
||
ln -srf ../tabs/close_up-square.svg ../tabs/close_up.png | ||
ln -srf ../tabs/close_over-square.svg ../tabs/close_over.png | ||
ln -srf ../tabs/close_down-square.svg ../tabs/close_down.png | ||
sed -i '37s/x=[0-9]*/x=28/g' ../tabs.skin |
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,4 @@ | ||
#!/bin/bash | ||
ln -srf ../title/back-gradient-no_shadow.svg ../title/back.png | ||
ln -srf ../title/left-gradient-no_shadow.svg ../title/left.png | ||
ln -srf ../title/right-gradient-no_shadow.svg ../title/right.png |
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,4 @@ | ||
#!/bin/bash | ||
ln -srf ../title/back-no_gradient-no_shadow.svg ../title/back.png | ||
ln -srf ../title/left-no_gradient-no_shadow.svg ../title/left.png | ||
ln -srf ../title/right-no_gradient-no_shadow.svg ../title/right.png |
Oops, something went wrong.