diff options
author | Tom Barrett <spalf0@gmail.com> | 2019-09-03 07:54:01 -0500 |
---|---|---|
committer | Tom Barrett <spalf0@gmail.com> | 2019-09-03 07:54:01 -0500 |
commit | b0a3f691541903ebf8109eba968c0d4b4ba54b21 (patch) | |
tree | 20c11e7c023edcb07a95b9c2c9eb0930014c710f | |
parent | 77a4636b09d49a1c8bf1cadd57cbe4a634d61fa3 (diff) |
more paths, firefox desktop and download dirs, aerc makefile change, new src directory
-rw-r--r-- | .config/fish/config.fish | 1 | ||||
-rw-r--r-- | .config/fish/fish_variables | 3 | ||||
-rw-r--r-- | .config/fish/functions/fish_prompt.fish | 42 | ||||
-rw-r--r-- | .config/user-dirs.dirs | 2 | ||||
-rw-r--r-- | .screenlayout/set.sh (renamed from .screenlayout/setup.sh) | 0 | ||||
-rw-r--r-- | .xinitrc | 4 | ||||
-rw-r--r-- | aerc/custom.diff | 20 |
7 files changed, 69 insertions, 3 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index f6ebca8..d13dd2a 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -1,4 +1,3 @@ -#fish_vi_key_bindings function fish_user_key_bindings for mode in insert default visual bind -M $mode \cf forward-char diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index 6442ac4..12cdc2d 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables @@ -3,6 +3,9 @@ SETUVAR __fish_init_2_39_8:\x1d SETUVAR __fish_init_2_3_0:\x1d SETUVAR __fish_init_3_x:\x1d +SETUVAR --export --path GOPATH:/home/tom/src/go +SETUVAR --export --path PATH:/usr/local/sbin\x1e/usr/sbin\x1e/sbin\x1e/usr/local/bin\x1e/usr/bin\x1e/bin\x1e/usr/local/games\x1e/usr/games +SETUVAR EDITOR:nvim SETUVAR _fish_abbr_vim:nvim SETUVAR fish_color_autosuggestion:64DF85 SETUVAR fish_color_cancel:\x2dr diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish new file mode 100644 index 0000000..7f4860d --- /dev/null +++ b/.config/fish/functions/fish_prompt.fish @@ -0,0 +1,42 @@ +function fish_prompt --description 'Write out the prompt' + + set stat $status + + if not set -q __fish_prompt_normal + set -g __fish_prompt_normal (set_color normal) + end + + if not set -q __fish_color_blue + set -g __fish_color_blue (set_color -o blue) + end + + #Set the color for the status depending on the value + set __fish_color_status (set_color -o green) + if test $stat -gt 0 + set __fish_color_status (set_color -o red) + end + + switch "$USER" + + case root toor + + if not set -q __fish_prompt_cwd + if set -q fish_color_cwd_root + set -g __fish_prompt_cwd (set_color $fish_color_cwd_root) + else + set -g __fish_prompt_cwd (set_color $fish_color_cwd) + end + end + + printf '%s@%s %s%s%s# ' $USER (prompt_hostname) "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" + + case '*' + + if not set -q __fish_prompt_cwd + set -g __fish_prompt_cwd (set_color $fish_color_cwd) + end + + printf '[%s] %s%s@%s %s%s %s(%s)%s \f\r> ' (date "+%H:%M:%S") "$__fish_color_blue" $USER (prompt_hostname) "$__fish_prompt_cwd" "$PWD" "$__fish_color_status" "$stat" "$__fish_prompt_normal" + + end +end diff --git a/.config/user-dirs.dirs b/.config/user-dirs.dirs new file mode 100644 index 0000000..aab4a51 --- /dev/null +++ b/.config/user-dirs.dirs @@ -0,0 +1,2 @@ +XDG_DESKTOP_DIR="$HOME/" +XDG_DOWNLOAD_DIR="$HOME/downloads/" diff --git a/.screenlayout/setup.sh b/.screenlayout/set.sh index 31e07c4..31e07c4 100644 --- a/.screenlayout/setup.sh +++ b/.screenlayout/set.sh @@ -3,7 +3,7 @@ /home/tom/.screenlayout/set.sh while true; do - /home/tom/dwmstatus/dwmstatus & + /home/tom/src/dwmstatus/dwmstatus & nitrogen --restore - /home/tom/dwm/dwm 2> /home/tom/.dwm.log + /home/tom/src/dwm/dwm 2> /home/tom/.dwm.log done diff --git a/aerc/custom.diff b/aerc/custom.diff new file mode 100644 index 0000000..285a4e1 --- /dev/null +++ b/aerc/custom.diff @@ -0,0 +1,20 @@ +diff --git a/Makefile b/Makefile +index c2e6d1b..e18abb2 100644 +--- a/Makefile ++++ b/Makefile +@@ -5,12 +5,12 @@ + VERSION=0.2.1 + + VPATH=doc +-PREFIX?=/usr/local ++PREFIX?=/home/tom/src/aerc + _INSTDIR=$(DESTDIR)$(PREFIX) + BINDIR?=$(_INSTDIR)/bin +-SHAREDIR?=$(_INSTDIR)/share/aerc ++SHAREDIR?=/home/tom/src/aerc/config + MANDIR?=$(_INSTDIR)/share/man +-GO?=go ++GO?=/home/tom/src/go/bin/go + GOFLAGS?= + + GOSRC!=find . -name '*.go' |