diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2021-09-22 23:28:48 +0100 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2021-09-22 23:28:48 +0100 |
| commit | dae3ae1dba800f80f36d79075a2330b2035c1bf3 (patch) | |
| tree | d16df345f59897fe06d77a3cfb3c2842ea74c91d | |
| parent | 83e992b9178393ce458b87687b5a61f2afa2b134 (diff) | |
| download | tabbed-dae3ae1dba800f80f36d79075a2330b2035c1bf3.tar.gz tabbed-dae3ae1dba800f80f36d79075a2330b2035c1bf3.zip | |
Relative new position, and colours
| -rw-r--r-- | config.h | 14 | ||||
| -rw-r--r-- | tabbed.desktop | 2 |
2 files changed, 8 insertions, 8 deletions
@@ -2,11 +2,11 @@ /* appearance */ static const char font[] = "Liga Agave:size=12"; -static const char* normbgcolor = "#222222"; -static const char* normfgcolor = "#cccccc"; -static const char* selbgcolor = "#555555"; -static const char* selfgcolor = "#ffffff"; -static const char* urgbgcolor = "#111111"; +static const char* normbgcolor = "#EBDBB2"; +static const char* normfgcolor = "#ABABAB"; +static const char* selbgcolor = "#EBDBB2"; +static const char* selfgcolor = "#849900"; +static const char* urgbgcolor = "#EBDBB2"; static const char* urgfgcolor = "#cc0000"; static const char before[] = "<"; static const char after[] = ">"; @@ -20,8 +20,8 @@ static Bool urgentswitch = False; * then the current position is changed + newposition. If npisrelative * is False, then newposition is an absolute position. */ -static int newposition = 0; -static Bool npisrelative = False; +static int newposition = 1; +static Bool npisrelative = True; #define SETPROP(p) { \ .v = (char *[]){ "/bin/sh", "-c", \ diff --git a/tabbed.desktop b/tabbed.desktop index cd35917..17f24b2 100644 --- a/tabbed.desktop +++ b/tabbed.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Name=st Comment=Run st simple terminal inside a tabbed session -Exec=tabbed -p 1 -c -r 2 st -w '' -e /bin/bash --login +Exec=tabbed -c -r 2 st -w '' -e /bin/bash --login Icon=utilities-terminal Terminal=false Type=Application |
