summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <rafa99@protonmail.com>2020-08-23 13:32:20 +0100
committerrafa_99 <rafa99@protonmail.com>2020-08-23 13:32:20 +0100
commitc4c2a2d1b2bb6c9fde8214892805476387e4e1d3 (patch)
tree306a751f26e22ae78045dc3f30734cc4147a107f
parent9cde330443607b8ad5132f2d1457c1578e070371 (diff)
Added Tabbed to Suckless Color Script
-rwxr-xr-x.local/bin/colorset3
-rw-r--r--.local/src/suck/colors/BW/tabbed/colors.h11
-rw-r--r--.local/src/suck/colors/Cyan/tabbed/colors.h11
-rw-r--r--.local/src/suck/colors/Green/tabbed/colors.h11
-rw-r--r--.local/src/suck/colors/Red/tabbed/colors.h11
-rwxr-xr-x.local/src/suck/sucklessUpdate17
6 files changed, 49 insertions, 15 deletions
diff --git a/.local/bin/colorset b/.local/bin/colorset
index 51b9670..2ab39e4 100755
--- a/.local/bin/colorset
+++ b/.local/bin/colorset
@@ -10,6 +10,7 @@ fi
! [ -f "$SUCK"/colors/wal/dmenu ] && mkdir -p "$SUCK"/colors/wal/dmenu
! [ -f "$SUCK"/colors/wal/dwm ] && mkdir -p "$SUCK"/colors/wal/dwm
! [ -f "$SUCK"/colors/wal/st ] && mkdir -p "$SUCK"/colors/wal/st
+! [ -f "$SUCK"/colors/wal/tabbed ] && mkdir -p "$SUCK"/colors/wal/tabbed
# Purging previous colorscheme files
convert "$1" "$SUCK"/colors/wal/wallpaper.png
@@ -18,6 +19,7 @@ convert "$1" "$SUCK"/colors/wal/wallpaper.png
cp ~/.cache/wal/colors-wal-dmenu.h "$SUCK"/colors/wal/dmenu/colors.h
cp ~/.cache/wal/colors-wal-st.h "$SUCK"/colors/wal/st/colors.h
head -7 ~/.cache/wal/colors-wal-dwm.h > "$SUCK"/colors/wal/dwm/colors.h
+cp ~/.cache/wal/colors-wal-tabbed.h "$SUCK"/colors/wal/tabbed/colors.h
# Recompiling Suckless Programs with new colorscheme
cp -rf "$SUCK"/colors/wal/* "$SUCK"
@@ -28,6 +30,7 @@ cd "$SUCK"/dwm && git pull ; doas make clean install ; make clean
cd "$SUCK"/slstatus && git pull ; doas make clean install ; make clean
cd "$SUCK"/dmenu && git pull ; doas make clean install ; make clean
cd "$SUCK"/st && git pull ; doas make clean install ; make clean
+cd "$SUCK"/tabbed && git pull ; doas make clean install ; make clean
cd "$SUCK"/farbfeld && git pull ; doas make clean install ; make clean
cd "$SUCK"/sent && git pull ; doas make clean install ; make clean
cd "$SUCK"/slock && git pull ; doas make clean install ; make clean
diff --git a/.local/src/suck/colors/BW/tabbed/colors.h b/.local/src/suck/colors/BW/tabbed/colors.h
new file mode 100644
index 0000000..7de36d7
--- /dev/null
+++ b/.local/src/suck/colors/BW/tabbed/colors.h
@@ -0,0 +1,11 @@
+/* Norm Colors */
+static const char* normbgcolor = "#676767";
+static const char* normfgcolor = "#e3e3e3";
+
+/* Sel Colors */
+static const char* selbgcolor = "#040404";
+static const char* selfgcolor = "#e3e3e3";
+
+/* Urg Colors */
+static const char* urgbgcolor = "#575757";
+static const char* urgfgcolor = "#e3e3e3";
diff --git a/.local/src/suck/colors/Cyan/tabbed/colors.h b/.local/src/suck/colors/Cyan/tabbed/colors.h
new file mode 100644
index 0000000..559a7c4
--- /dev/null
+++ b/.local/src/suck/colors/Cyan/tabbed/colors.h
@@ -0,0 +1,11 @@
+/* Norm Colors */
+static const char* normbgcolor = "#396087";
+static const char* normfgcolor = "#a2e9d0";
+
+/* Sel Colors */
+static const char* selbgcolor = "#040A33";
+static const char* selfgcolor = "#a2e9d0";
+
+/* Urg Colors */
+static const char* urgbgcolor = "#C1355D";
+static const char* urgfgcolor = "#a2e9d0";
diff --git a/.local/src/suck/colors/Green/tabbed/colors.h b/.local/src/suck/colors/Green/tabbed/colors.h
new file mode 100644
index 0000000..1f3edc9
--- /dev/null
+++ b/.local/src/suck/colors/Green/tabbed/colors.h
@@ -0,0 +1,11 @@
+/* Norm Colors */
+static const char* normbgcolor = "#4DA779";
+static const char* normfgcolor = "#c0e5c7";
+
+/* Sel Colors */
+static const char* selbgcolor = "#0A1515";
+static const char* selfgcolor = "#c0e5c7";
+
+/* Urg Colors */
+static const char* urgbgcolor = "#20936F";
+static const char* urgfgcolor = "#c0e5c7";
diff --git a/.local/src/suck/colors/Red/tabbed/colors.h b/.local/src/suck/colors/Red/tabbed/colors.h
new file mode 100644
index 0000000..6532880
--- /dev/null
+++ b/.local/src/suck/colors/Red/tabbed/colors.h
@@ -0,0 +1,11 @@
+/* Norm Colors */
+static const char* normbgcolor = "#6D384A";
+static const char* normfgcolor = "#db9c9a";
+
+/* Sel Colors */
+static const char* selbgcolor = "#0f1014";
+static const char* selfgcolor = "#db9c9a";
+
+/* Urg Colors */
+static const char* urgbgcolor = "#7C274D";
+static const char* urgfgcolor = "#db9c9a";
diff --git a/.local/src/suck/sucklessUpdate b/.local/src/suck/sucklessUpdate
index b9695d9..4ccd965 100755
--- a/.local/src/suck/sucklessUpdate
+++ b/.local/src/suck/sucklessUpdate
@@ -14,6 +14,7 @@ git clone https://gitlab.com/rafa_99/dwm
git clone https://gitlab.com/rafa_99/slstatus
git clone https://gitlab.com/rafa_99/dmenu
git clone https://gitlab.com/rafa_99/st
+git clone https://gitlab.com/rafa_99/tabbed
git clone https://gitlab.com/rafa_99/farbfeld
git clone https://gitlab.com/rafa_99/sent
git clone https://gitlab.com/rafa_99/slock
@@ -21,6 +22,7 @@ cd "$SUCK"/dwm && git pull && git checkout . ;
cd "$SUCK"/slstatus && git pull && git checkout . ;
cd "$SUCK"/dmenu && git pull && git checkout . ;
cd "$SUCK"/st && git pull && git checkout . ;
+cd "$SUCK"/tabbed && git pull && git checkout . ;
cd "$SUCK"/farbfeld && git pull && git checkout . ;
cd "$SUCK"/sent && git pull && git checkout . ;
cd "$SUCK"/slock && git pull && git checkout .
@@ -51,25 +53,10 @@ esac
# Recompiling Programs #
########################
-if [ "$DISTRO" == "openbsd" ]; then
- cd "SUCK"/dwm && sed -i s:"FREETYPEINC = /usr/include/freetype2"::g config.mk && sed -i s:"#FREETYPEINC":"FREETYPEINC":g config.mk
-fi
cd "$SUCK"/dwm && git pull ; doas make clean install ; make clean
-
cd "$SUCK"/slstatus && git pull ; doas make clean install ; make clean
-
-if [ "$DISTRO" == "openbsd" ]; then
- cd "SUCK"/dmenu && sed -i s:"FREETYPEINC = /usr/include/freetype2"::g config.mk && sed -i s:"#FREETYPEINC":"FREETYPEINC":g config.mk
-fi
cd "$SUCK"/dmenu && git pull ; doas make clean install ; make clean
-
-if [ "$DISTRO" == "openbsd" ]; then
- cd "SUCK"/st && sed -i s:"#CPPFLAGS":"CPPFLAGS":g config.mk && sed -i s:"LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender\":"LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \":g config.mk
-fi
cd "$SUCK"/st && git pull ; doas make clean install ; make clean
-
cd "$SUCK"/farbfeld && git pull ; doas make clean install ; make clean
-
cd "$SUCK"/sent && git pull ; doas make clean install ; make clean
-
cd "$SUCK"/slock && git pull ; doas make clean install ; make clean