Installed Oh-My-Zsh, slight polybar change (brightness)

This commit is contained in:
2017-08-15 01:39:00 -05:00
parent 4ba9563c43
commit dd7aa6f5db
586 changed files with 45683 additions and 31 deletions

69
.zshrc
View File

@@ -1,4 +1,45 @@
# Lines configured by zsh-newuser-install
export PATH=$HOME/.bin:$HOME/.local/bin:/usr/local/bin:$PATH
export ZSH=/home/salt/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
#ZSH_THEME="powerlevel9k/powerlevel9k"
ZSH_THEME="theunraveler"
#CASE_SENSITIVE="true"
#HYPHEN_INSENSITIVE="true"
#DISABLE_AUTO_UPDATE="true"
#export UPDATE_ZSH_DAYS=13
#DISABLE_LS_COLORS="true"
#DISABLE_AUTO_TITLE="true"
#ENABLE_CORRECTION="true"
#COMPLETION_WAITING_DOTS="true"
#DISABLE_UNTRACKED_FILES_DIRTY="true"
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
#HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
#ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
POWERLEVEL9K_DIR_HOME_FOREGROUND='0'
POWERLEVEL9K_DIR_HOME_BACKGROUND='13'
POWERLEVEL9K_DIR_HOME_SUBFOLDER_FOREGROUND='0'
POWERLEVEL9K_DIR_HOME_SUBFOLDER_BACKGROUND='5'
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='0'
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='5'
POWERLEVEL9K_DIR_WRITABLE_FOREGROUND='13'
POWERLEVEL9K_DIR_WRITABLE_BACKGROUND='0'
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh dir dir_writable root_indicator)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status vcs vi_mode)
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
@@ -10,9 +51,6 @@ zstyle :compinstall filename '/home/salt/.zshrc'
autoload -Uz compinit
compinit
# Append folders to PATH
export PATH="$PATH:$HOME/.bin:$HOME/.local/bin"
# Aliases
## ls
alias l='ls --color=auto --file-type'
@@ -28,22 +66,9 @@ if [[ "$(which emerge)" ]]; then
alias e-depclean='sudo emerge -a --depclean'
fi
## neofetch
alias fetch='neofetch --disable model resolution --block_range 0 15 --image wall --xoffset 4 --yoffset 4'
# Powerline-Shell
function powerline_precmd() {
PS1="$(~/.bin/powerline-shell.py $? --shell zsh 2> /dev/null)"
}
function install_powerline_precmd() {
for s in "${precmd_functions[@]}"; do
if [ "$s" = "powerline_precmd" ]; then
return
fi
done
precmd_functions+=(powerline_precmd)
}
if [ "$TERM" != "linux" ]; then
install_powerline_precmd
if [[ "$(which neofetch)" ]]; then
alias fetch='neofetch --disable model resolution --block_range 0 15 --image wall --xoffset 4 --yoffset 4 --scrot ~/Pictures/neofetch.png'
alias fetch-up='neofetch --disable model resolution --block_range 0 15 --image wall --xoffset 4 --yoffset 4 --upload --image_host imgur'
fi
source $ZSH/oh-my-zsh.sh