Skip to content
This repository was archived by the owner on Oct 25, 2022. It is now read-only.

Commit 2ebc1e6

Browse files
first commit
0 parents  commit 2ebc1e6

File tree

111 files changed

+2382
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+2382
-0
lines changed

.misc/dark-decay.png

42.3 KB
Loading

.misc/decay.png

41.7 KB
Loading

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<h2 align="center"> ━━━━━━ ❖ ━━━━━━ </h2>
2+
3+
<div align="center">
4+
<code>decay theme for gtk3</code> ~ this is modification of <a href="https://github.com/janleigh/gtk3">janleigh's fork</a> of elkowar's fork of phocus but using the decay palette xD.
5+
</div>
6+
7+
<img src="./.misc/decay.png" align="left" width="400px"/>
8+
<img src="./.misc/dark-decay.png" align="right" width="400px"/>
9+
10+
### — Installation
11+
12+
<br />
13+
14+
```sh
15+
# First, clone the repository.
16+
$ git clone https://github.com/decaycs/gtk3 decay-gtk3
17+
18+
# Then go to the decay version you want
19+
cd decay-gtk3/decay # or decay-gtk3/dark-decay
20+
21+
# Then, install sass compiler.
22+
$ npm install -g sass
23+
24+
# Compile and install the theme.
25+
$ make && sudo make install
26+
```
27+
28+
### Applying
29+
30+
Then set it in your `~/.config/gtk-3/settings.ini` using the `gtk-theme-name` key:
31+
32+
```ini
33+
gtk-theme-name=decay # or dark_decay
34+
```
35+
36+
### Enjoy
37+
38+
I hope you enjoy with this!

dark-decay/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.yarn
2+
dist/
3+
node_modules/
4+
/gtk-3.0/
5+
.idea/
6+
.sass-cache/

dark-decay/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Philipp Schaffrath
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

dark-decay/Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
PREFIX = /usr
2+
DESTDIR ?=
3+
INSTALL_DIR ?= $(DESTDIR)$(PREFIX)/share/themes/dark_decay
4+
5+
all:
6+
mkdir -p gtk-3.0
7+
sass src/gtk-3.0/gtk.scss dist/gtk-3.0/gtk.css
8+
9+
install:
10+
@install -v -d "$(INSTALL_DIR)"
11+
@install -m 0644 -v index.theme "$(INSTALL_DIR)"
12+
@cp -rv assets dist/gtk-3.0 "$(INSTALL_DIR)"
13+
14+
uninstall:
15+
@rm -vrf "$(INSTALL_DIR)"
16+
17+
.PHONY: all install uninstall

dark-decay/assets/svg/check.svg

Lines changed: 101 additions & 0 deletions
Loading

dark-decay/assets/svg/radio.svg

Lines changed: 91 additions & 0 deletions
Loading
192 Bytes
Loading
228 Bytes
Loading

0 commit comments

Comments
 (0)