aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conky/.conkyrc9
-rw-r--r--shell/bash/.bashrc2
-rw-r--r--shell/zsh/.zshrc2
3 files changed, 9 insertions, 4 deletions
diff --git a/conky/.conkyrc b/conky/.conkyrc
index 7b39c8e..410002e 100644
--- a/conky/.conkyrc
+++ b/conky/.conkyrc
@@ -68,10 +68,11 @@ conky.config = {
68 own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it 68 own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
69 69
70 --Colors (Gruvbox Dark) 70 --Colors (Gruvbox Dark)
71 color0 = '#b16286', 71 color0 = '#AB9DF2',
72 color1 = '#ebdbb2', 72 color1 = '#FCFCFA',
73 color2 = '#458588', 73 color2 = '#78DCE8',
74 color3 = '#b8bb26', 74 color3 = '#A9DC76',
75
75 76
76}; 77};
77 78
diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc
index 289d237..b921287 100644
--- a/shell/bash/.bashrc
+++ b/shell/bash/.bashrc
@@ -98,3 +98,5 @@ esac
98. "$HOME/.cargo/env" 98. "$HOME/.cargo/env"
99# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin 99# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin
100# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin 100# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin
101
102export GPG_TTY=$(tty)
diff --git a/shell/zsh/.zshrc b/shell/zsh/.zshrc
index 0aaaf8f..f52f762 100644
--- a/shell/zsh/.zshrc
+++ b/shell/zsh/.zshrc
@@ -16,6 +16,7 @@ precmd_functions+=(update_prompt)
16update_prompt 16update_prompt
17 17
18HISTFILE="$XDG_CACHE_HOME"/zsh-histfile 18HISTFILE="$XDG_CACHE_HOME"/zsh-histfile
19GNUPGHOME="~/.gnupg/"
19HISTSIZE=2500 20HISTSIZE=2500
20SAVEHIST=2000 21SAVEHIST=2000
21setopt INC_APPEND_HISTORY 22setopt INC_APPEND_HISTORY
@@ -29,6 +30,7 @@ compinit
29setopt autocd 30setopt autocd
30eval "$(zoxide init zsh)" 31eval "$(zoxide init zsh)"
31 32
33export GPG_TTY=$(tty)
32export XDG_DATA_HOME="$HOME"/.local/share 34export XDG_DATA_HOME="$HOME"/.local/share
33export XDG_CONFIG_HOME="$HOME"/.config 35export XDG_CONFIG_HOME="$HOME"/.config
34export XDG_STATE_HOME="$HOME"/.local/state 36export XDG_STATE_HOME="$HOME"/.local/state