commit 2f1c6507496ca739808132b65f85f793f54c0260
parent 043abd8f466fca2c2fa2bc30f1170c24f2914896
Author: josuah <mail@josuah.net>
Date: Fri, 18 Nov 2016 21:06:29 -0500
Updated themes
Diffstat:
3 files changed, 5 insertions(+), 30 deletions(-)
diff --git a/.config/themes/coal b/.config/themes/coal
@@ -19,8 +19,8 @@
*.color12: #aaddff
! magenta
-*.color5: #888888
-*.color13: #aaaaaa
+*.color5: #85678f
+*.color13: #b294bb
! cyan
*.color6: #55ee99
diff --git a/.profile b/.profile
@@ -41,7 +41,7 @@ export PS1='$(
printf "\033[?6c"
# prompt character
- printf "\n \033[3%s;1m──────\033[0m " "$color"
+ printf "\n \033[3%s;1m───\033[0m " "$color"
)'
export PS2=' > '
export PS3=' > '
@@ -59,7 +59,7 @@ alias f='find . -type f ! -path "*/.git/*" | sed "s/^\\.\\///" | iomenu'
alias d='find . -type d ! -path "*/.git/*" | sed "s/^\\.\\///" | iomenu'
alias c='cd "$(d)"'
alias g='grep --color=always'
-alias cl='clear; printf "\n\n"'
+alias cl='clear'
alias bh='busybox --help'
alias myip='curl icanhazip.com'
alias lines='find . -name "*.[ch]" | xargs wc -l'
@@ -214,11 +214,9 @@ main()
{
if [ "$TERM" = 'linux' ]
then
- theme pink
+ theme coal
setfont "$CONFIG/fonts/terminus/ter-v16n.psf.gz"
fi
-
- printf '\n\n'
}
diff --git a/abduco/config.h b/abduco/config.h
@@ -1,23 +0,0 @@
-/* default command to execute if non is given and $ABDUCO_CMD is unset */
-#define ABDUCO_CMD "dvtm-status"
-
-/* default detach key, can be overriden at run time using -e option */
-static char KEY_DETACH = CTRL('z');
-
-/* redraw key to send a SIGWINCH signal to underlying process
- * (set to 0 to disable the redraw key) */
-static char KEY_REDRAW = 0;
-
-/* Where to place the "abduco" directory storing all session socket files.
- * The first directory to succeed is used. */
-static struct Dir {
- char *path; /* fixed (absolute) path to a directory */
- char *env; /* environment variable to use if (set) */
- bool personal; /* if false a user owned sub directory will be created */
-} socket_dirs[] = {
- { .env = "ABDUCO_SOCKET_DIR", false },
- { .env = "XDG_CACHE_DIR", true },
- { .env = "HOME", true },
- { .env = "TMPDIR", false },
- { .path = "/tmp", false },
-};