Skip to content

Commit ea99cc3

Browse files
author
Livanh
committed
Initial commit
0 parents  commit ea99cc3

File tree

23 files changed

+1182
-0
lines changed

23 files changed

+1182
-0
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Copyright (C) 2015 Livanh <[email protected]>

COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

INSTALL

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
To install gcs, simply run
2+
3+
$ make install
4+
5+
from the source directory. At the moment, gcs can only be installed under your $HOME directory because some
6+
paths are hard-coded. This will probably change in the future.
7+
You may need to add $HOME/bin to your $PATH. The easiest way is to add the following code at the end of
8+
your .bashrc file, then open a new shell:
9+
10+
if [ -d "$HOME/bin" ] ; then
11+
PATH="$HOME/bin:$PATH"
12+
fi

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
all install:
2+
install -D src/gcs ${HOME}/bin/gcs
3+
install -d ${HOME}/.config/gcs/colorthemes
4+
install -d ${HOME}/.config/gcs/modules
5+
cp -r src/config/colorthemes/* ${HOME}/.config/gcs/colorthemes
6+
cp -r -n src/config/modules/* ${HOME}/.config/gcs/modules
7+
install -d ${HOME}/.local/share/gcs
8+
cp -r src/share/* ${HOME}/.local/share/gcs

README

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Global Color Scheme (GCS) is a tool to change the color scheme of your Linux desktop.
2+
It can take care of general purpose toolkits (like GTK) as well as specific applications
3+
which have their own color settings. The purpose of GCS is to configure every configurable
4+
color in your desktop in a consistent manner and with a single command.
5+
6+
GCS is easily extensible, so if some program you use is not supported, you can easily
7+
create a module for it (and if you send it to me, I'll consider adding it to
8+
the codebase).
9+
10+
11+
*** ALPHA STAGE WARNING!!! ***
12+
CURRENTLY THIS PROGRAM IS IN A VERY EARLY DEVELOPMENT STAGE! EXPECT IT TO BREAK SOMETHING
13+
UNLESS YOU KNOW HOW IT WORKS! I'M NOT KIDDING!
14+
15+
BEFORE ATTEMPTING TO DO ANY EXPERIMENT, BACKUP THE FOLLOWING FILES:
16+
$HOME/.xsettingsd
17+
$HOME/.config/terminator/config
18+
$HOME/.config/i3/config
19+
$HOME/.config/gtk-3.0/colors.css
20+
$HOME/.config/gpicview/gpicview.conf
21+
$HOME/.config/geany/geany.conf
22+
$HOME/.config/cherrytree/config.cfg
23+
$HOME/.config/nitrogen/bg-saved.cfg
48.5 KB
Loading
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# gtk color theme
2+
base_color=#000000
3+
text_color=#9694D3
4+
bg_color=#333333
5+
fg_color=#BBBBBB
6+
selected_bg_color=#205FC6
7+
selected_fg_color=#FFFFFF
8+
tooltip_bg_color=#A35D39
9+
tooltip_fg_color=#ffffff
10+
link_color=#4a90d9
11+
visited_link_color=#551a8b
12+
13+
# error/warning
14+
error_color=#cc0000
15+
warning_bg_color=#faad3d
16+
17+
# gtk3 core colors
18+
core_color_a=$selected_bg_color
19+
core_color_b=$bg_color
20+
21+
# i3 colors
22+
urgent_color=#BA0000
23+
unfocused_color=#001644
24+
25+
# icon theme
26+
icon_theme=gnome-brave
27+
28+
# background
29+
wallpaper_image=background.png
30+
wallpaper_mode=center
31+
wallpaper_bg_color=#000000
36.1 KB
Loading
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# gtk color theme
2+
base_color=#853F10
3+
text_color=#FFF285
4+
bg_color=#542303
5+
fg_color=#FFF285
6+
selected_bg_color=#4C942D
7+
selected_fg_color=#FFFFFF
8+
tooltip_bg_color=#A35D39
9+
tooltip_fg_color=#000000
10+
link_color=#4a90d9
11+
visited_link_color=#551a8b
12+
13+
# error/warning
14+
error_color=#cc0000
15+
warning_bg_color=#faad3d
16+
17+
# gtk3 core colors
18+
core_color_a=$selected_bg_color
19+
core_color_b=$bg_color
20+
21+
# i3 colors
22+
urgent_color=#BA0000
23+
unfocused_color=#2B5618
24+
25+
# icon theme
26+
icon_theme=gnome-wise
27+
28+
# background
29+
wallpaper_image=background.png
30+
wallpaper_mode=center
31+
wallpaper_bg_color=#542303

src/config/modules/conky

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
CONKY_CONFIG_FILES=("$HOME/.conkyrc")
3+
conky_color0=${selected_bg_color}

0 commit comments

Comments
 (0)