dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 21bb8c56f187b3725f84bef3e8f4b6785be221cd
parent 13ff82e31fc8204bd7d84b23d82df7624263440d
Author: pyratebeard <root@pyratebeard.net>
Date:   Sun, 14 Apr 2019 19:14:28 +0100

updates

Diffstat:
Mzsh/.zsh/aliases.zsh | 53++++++++++++-----------------------------------------
Mzsh/.zsh/autocompletion.zsh | 14+-------------
Mzsh/.zsh/colored-man-pages.zsh | 19++-----------------
Mzsh/.zsh/environment.zsh | 43++++++++++++++++---------------------------
Azsh/.zsh/functions/ddg | 3+++
Mzsh/.zsh/history.zsh | 17++---------------
Mzsh/.zsh/keybindings.zsh | 20++------------------
Mzsh/.zsh/keychain.zsh | 23++++++++---------------
Mzsh/.zsh/nodejs.zsh | 18++----------------
Mzsh/.zsh/prompt.zsh | 38+++++++++++---------------------------
Mzsh/.zsh/security.zsh | 16+++-------------
Dzsh/.zsh/sourcerer.zsh | 37-------------------------------------
Dzsh/.zsh/syntax.zsh | 39---------------------------------------
Azsh/.zsh/venganza.zsh | 22++++++++++++++++++++++
Mzsh/.zsh/welcome.zsh | 22+++++++++++++++++-----
Mzsh/.zshrc | 22+++++++---------------
16 files changed, 108 insertions(+), 298 deletions(-)

diff --git a/zsh/.zsh/aliases.zsh b/zsh/.zsh/aliases.zsh @@ -1,15 +1,4 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# +# ALIASES alias ll="ls -lahF --color=auto" alias ls="ls -hF --color=auto" alias lsl="ls -lhF --color=auto" @@ -29,7 +18,7 @@ alias emacs="vim" alias git="hub" alias g="hub" alias ga="git add" -alias gc="git commit -m" +alias gc="git commit -S -m" alias gs="git status" alias gd="git diff" alias gf="git fetch" @@ -37,65 +26,47 @@ alias gm="git merge" alias gr="git rebase" alias gp="git push" alias gu="git unstage" -alias gg="git graph" +alias gg="git log --graph" alias gco="git checkout" alias gpr="hub pull-request" alias ag="ag --color --color-line-number '0;35' --color-match '46;30' --color-path '4;36'" alias tree='tree -CAFa -I "CVS|*.*.package|.svn|.git|.hg|node_modules|bower_components" --dirsfirst' alias rock="mpd .mpd/mpd.conf ; ncmpcpp" alias mixer="alsamixer" -alias genplaylist="cd ~/music;find . -name '*.mp3' -o -name '*.flac'|sed -e 's%^./%%g' > ~/.mpd/playlists/all.m3u" -alias matrix="cmatrix -b" -alias tempwatch="while :; do sensors; sleep 1 && clear; done;" alias term="urxvtc -hold -e " #used for run menu -alias sprunge="curl -F 'sprunge=<-' http://sprunge.us" -alias clbin="curl -F 'clbin=<-' https://clbin.com" -alias toiletlist='for i in ${TOILET_FONT_PATH:=/usr/share/figlet}/*.{t,f}lf; do j=${i##*/}; echo ""; echo "╓───── "$j; echo "╙────────────────────────────────────── ─ ─ "; echo ""; toilet -d "${i%/*}" -f "$j" "${j%.*}"; done' -alias ascii="toilet -t -f 3d" -alias future="toilet -t -f future" -alias rusto="toilet -t -f rusto" -alias rustofat="toilet -t -f rustofat" -alias lol="base64 </dev/urandom | lolcat" alias pacman="sudo pacman" -alias update="pacman-colors && yaourt -Syua" +alias update="pacman -Syu" alias systemctl="sudo systemctl" alias :q="sudo systemctl poweroff" -alias ZZ="quit" alias disks='echo "╓───── m o u n t . p o i n t s"; echo "╙────────────────────────────────────── ─ ─ "; lsblk -a; echo ""; echo "╓───── d i s k . u s a g e"; echo "╙────────────────────────────────────── ─ ─ "; df -h;' -alias todo="bash ~/code/sys/todo" alias record="ffmpeg -f x11grab -s 1366x768 -an -r 16 -loglevel quiet -i :0.0 -b:v 5M -y" #pass a filename -alias nexus="jmtpfs ~/nexus" alias gifview="gifview -a" alias reboot="sudo reboot" alias connect="sudo wpa_supplicant -B -i wlp2s0 -c" alias vh="nc vhbin.net 9999" alias kb="keybase" alias dd="dd status=progress" -alias mpv="mpv --audio-device=pulse/1" alias docker="sudo docker" alias docker-compose="sudo docker-compose" -tmx() { - [[ $# -eq 0 ]] && bash ~/bin/tmx 0 || bash ~/bin/tmx $# -} +alias ncmpcpp="ncmpcpp -q" +alias song="ncmpcpp --current-song='$7%a - $8{%n} {%t} $R [{%l}] ' | cut -d '%' -f 1" +alias jobs="jobs -l" + email() { - echo $3 | mutt -s $2 $1 + echo $3 | mutt -s $2 $1 } -# Colorised cat +# colorised cat c() { for file in "$@" do pygmentize -O style=sourcerer -f console256 -g "$file" done } -# Colorised less +# colorised less l() { pygmentize -O style=sourcerer -f console256 -g $1 | less -r } -# Read markdown files like manpages +# read markdown files like manpages md() { pandoc -s -f markdown -t man "$*" | man -l - } -# nullpointer URL shortener -short() { - curl -F"shorten=$*" https://0x0.st -} diff --git a/zsh/.zsh/autocompletion.zsh b/zsh/.zsh/autocompletion.zsh @@ -1,16 +1,4 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# Autocompletion systems +# AUTOCOMPLETION autoload -Uz compinit compinit autoload -U ~/.zsh/completion/*(:t) diff --git a/zsh/.zsh/colored-man-pages.zsh b/zsh/.zsh/colored-man-pages.zsh @@ -1,20 +1,5 @@ -# ██ -# ░██ -# ██████ ██████░██ -# ░░░░██ ██░░░░ ░██████ -# ██ ░░█████ ░██░░░██ -# ██ ░░░░░██░██ ░██ -# ██████ ██████ ░██ ░██ -# ░░░░░░ ░░░░░░ ░░ ░░ -# -# ▓▓▓▓▓▓▓▓▓▓ -# ░▓ author ▓ xero <x@xero.nu> -# ░▓ code ▓ http://code.xero.nu/dotfiles -# ░▓ mirror ▓ http://git.io/.files -# ░▓▓▓▓▓▓▓▓▓▓ -# ░░░░░░░░░░ -# -#█▓▒░ source: https://github.com/imkira/dotfiles/blob/master/.zsh/colored-man-pages.zsh +# COLOURED MAN PAGES +# source: https://github.com/imkira/dotfiles/blob/master/.zsh/colored-man-pages.zsh export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;38;5;74m' export LESS_TERMCAP_me=$'\E[0m' diff --git a/zsh/.zsh/environment.zsh b/zsh/.zsh/environment.zsh @@ -1,34 +1,23 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# Timestamps +# ENVIRONMENT + +# timestamps #HIST_STAMPS=mm/dd/yyyy -# Paths -export PATH=$HOME/bin:/usr/local/bin:/home/pyratebeard/.gem/ruby/2.2.0/bin:$PATH -#export MANPATH=/usr/local/man:$MANPATH +# paths +export PATH=$PATH:$HOME/bin:/usr/local/bin:$HOME/.gem/ruby/2.6.0/bin -# Preferred editor for local and remote sessions +# preferred editor for local and remote sessions export EDITOR=vim export VISUAL=vim -# Language -export LC_COLLATE=en_US.UTF-8 -export LC_CTYPE=en_US.UTF-8 -export LC_MESSAGES=en_US.UTF-8 -export LC_MONETARY=en_US.UTF-8 -export LC_NUMERIC=en_US.UTF-8 -export LC_TIME=en_US.UTF-8 -export LC_ALL=en_US.UTF-8 -export LANG=en_US.UTF-8 -export LANGUAGE=en_US.UTF-8 +# language +export LC_COLLATE=en_GB.UTF-8 +export LC_CTYPE=en_GB.UTF-8 +export LC_MESSAGES=en_GB.UTF-8 +export LC_MONETARY=en_GB.UTF-8 +export LC_NUMERIC=en_GB.UTF-8 +export LC_TIME=en_GB.UTF-8 +export LC_ALL=en_GB.UTF-8 +export LANG=en_GB.UTF-8 +export LANGUAGE=en_GB.UTF-8 export LESSCHARSET=utf-8 diff --git a/zsh/.zsh/functions/ddg b/zsh/.zsh/functions/ddg @@ -0,0 +1,3 @@ +emulate -L zsh +query=$(php -r 'echo urlencode($argv[1]);' "$1") +firefox 'https://duckduckgo.com/?q='$query diff --git a/zsh/.zsh/history.zsh b/zsh/.zsh/history.zsh @@ -1,19 +1,7 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# History +# HISTORY HISTFILE=~/.zhistory setopt APPEND_HISTORY HISTSIZE=1200 SAVEHIST=1000 setopt HIST_EXPIRE_DUPS_FIRST -setopt EXTENDED_HISTORY -\ No newline at end of file +setopt EXTENDED_HISTORY diff --git a/zsh/.zsh/keybindings.zsh b/zsh/.zsh/keybindings.zsh @@ -1,21 +1,5 @@ -# ██ -# ░██ -# ██████ ██████░██ -# ░░░░██ ██░░░░ ░██████ -# ██ ░░█████ ░██░░░██ -# ██ ░░░░░██░██ ░██ -# ██████ ██████ ░██ ░██ -# ░░░░░░ ░░░░░░ ░░ ░░ -# -# ▓▓▓▓▓▓▓▓▓▓ -# ░▓ author ▓ xero <x@xero.nu> -# ░▓ code ▓ http://code.xero.nu/dotfiles -# ░▓ mirror ▓ http://git.io/.files -# ░▓▓▓▓▓▓▓▓▓▓ -# ░░░░░░░░░░ -# -#█▓▒░ keybindings -typeset -A key +# KEYBINDINGS +Typeset -A key key[Home]=${terminfo[khome]} key[End]=${terminfo[kend]} diff --git a/zsh/.zsh/keychain.zsh b/zsh/.zsh/keychain.zsh @@ -1,17 +1,10 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# SSH keys -export SSH_KEY_PATH="~/.ssh/id_rsa" +# KEYCHAIN + +# ssh key dir +SSH_KEY_DIR="$HOME/.ssh" # funtoo keychain -eval `keychain -q --eval ~/.ssh/id_rsa` +eval $(keychain -q --agents ssh,gpg --nogui --eval $SSH_KEY_DIR/*.prv 0xC7877C715113A16D) + +GPG_TTY=$(tty) +export GPG_TTY diff --git a/zsh/.zsh/nodejs.zsh b/zsh/.zsh/nodejs.zsh @@ -1,20 +1,6 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# Node version manager -#source ~/.nvm/nvm.sh +# nodejs -# Aliases +# aliases alias node="sudo node" alias npm="sudo npm" alias npminstall="sudo rm -rf node_modules && sudo npm cache clear && sudo npm cache clean && npm install" -# alias npminstall="sudo rm -rf node_modules && sudo npm cache clear && sudo npm cache clean && sudo PYTHON=/usr/bin/python2 npm install" diff --git a/zsh/.zsh/prompt.zsh b/zsh/.zsh/prompt.zsh @@ -1,34 +1,30 @@ -#ICO_DIRTY="⚡" -#ICO_DIRTY="↯" -ICO_DIRTY="*" -#ICO_AHEAD="↑" +# PROMPT + +ICO_DIRTY="⚡" ICO_AHEAD="🠙" -#ICO_AHEAD="▲" -#ICO_BEHIND="↓" ICO_BEHIND="🠛" -#ICO_BEHIND="▼" ICO_DIVERGED="⥮" COLOR_ROOT="%F{red}" COLOR_USER="%F{cyan}" COLOR_NORMAL="%F{white}" PROMPT_STYLE="tiny" -#█▓▒░ allow functions in the prompt +# allow functions in the prompt setopt PROMPT_SUBST autoload -Uz colors && colors -#█▓▒░ autoload zsh functions +# autoload zsh functions fpath=(~/.zsh/functions $fpath) autoload -U ~/.zsh/functions/*(:t) -#█▓▒░ enable auto-execution of functions +# enable auto-execution of functions typeset -ga chpwd_functions -#█▓▒░ prepend functions +# prepend functions chpwd_functions+=('chpwd_auto_cd') mpv_functions+=('mm') -#█▓▒░ colors for permissions +# colors for permissions if [[ "$EUID" -ne "0" ]] then # if user is not root USER_LEVEL="${COLOR_USER}" @@ -36,21 +32,9 @@ else # root! USER_LEVEL="${COLOR_ROOT}" fi -#█▓▒░ git prompt +# git prompt GIT_PROMPT() { test=$(git rev-parse --is-inside-work-tree 2> /dev/null) - if [ ! "$test" ] - then - case "$PROMPT_STYLE" in - ascii) - echo "$reset_color%F{cyan}▒░" - ;; - arrows) - echo "$reset_color%F{cyan}" - ;; - esac - return - fi ref=$(git name-rev --name-only HEAD | sed 's!remotes/!!' 2> /dev/null) dirty="" && [[ $(git diff --shortstat 2> /dev/null | tail -n1) != "" ]] && dirty=$ICO_DIRTY stat=$(git status | sed -n 2p) @@ -73,7 +57,7 @@ GIT_PROMPT() { echo "${COLOR_NORMAL}─["${ref}${dirty}${stat}"]" ;; tiny) - echo "${COLOR_NORMAL} ["${ref}${dirty}${stat}"]" + echo "%F{yellow} ["${ref}${dirty}${stat}"]" ;; *) echo "${USER_LEVEL}─[${COLOR_NORMAL}"${ref}${dirty}${stat}"${USER_LEVEL}]" @@ -98,7 +82,7 @@ PROMPT='${USER_LEVEL}[${COLOR_NORMAL}%~${USER_LEVEL}]$(GIT_PROMPT)── - %f' # tiny tiny) PROMPT='${COLOR_NORMAL} % : ' -RPROMPT='%~ $(GIT_PROMPT)' +RPROMPT='%~ $(GIT_PROMPT) %F{magenta}swordphish${COLOR_NORMAL}' ;; # classic *) diff --git a/zsh/.zsh/security.zsh b/zsh/.zsh/security.zsh @@ -1,16 +1,6 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# AV aliases +# SECURITY + +# av aliases alias checkrootkits="sudo rkhunter --update; sudo rkhunter --propupd; sudo rkhunter --check" alias checkvirus="clamscan --recursive=yes --infected /home" alias updateantivirus="sudo freshclam" diff --git a/zsh/.zsh/sourcerer.zsh b/zsh/.zsh/sourcerer.zsh @@ -1,37 +0,0 @@ -# ██ -# ░██ -# ██████ ██████░██ -# ░░░░██ ██░░░░ ░██████ -# ██ ░░█████ ░██░░░██ -# ██ ░░░░░██░██ ░██ -# ██████ ██████ ░██ ░██ -# ░░░░░░ ░░░░░░ ░░ ░░ -# -# ▓▓▓▓▓▓▓▓▓▓ -# ░▓ author ▓ xero <x@xero.nu> -# ░▓ code ▓ http://code.xero.nu/dotfiles -# ░▓ mirror ▓ http://git.io/.files -# ░▓▓▓▓▓▓▓▓▓▓ -# ░░░░░░░░░░ -# -#█▓▒░ tty colors -if [ "$TERM" = "linux" ] -then - echo -en "\e]P0222222" #black - echo -en "\e]P8111111" #darkgrey - echo -en "\e]P1aa4450" #darkred - echo -en "\e]P9ff6a6a" #red - echo -en "\e]P2719611" #darkgreen - echo -en "\e]PAb1d631" #green - echo -en "\e]P3cc8800" #brown - echo -en "\e]PBff9800" #yellow - echo -en "\e]P46688aa" #darkblue - echo -en "\e]PC90b0d1" #blue - echo -en "\e]P58f6f8f" #darkmagenta - echo -en "\e]PD8181a6" #magenta - echo -en "\e]P6528b8b" #darkcyan - echo -en "\e]PE87ceeb" #cyan - echo -en "\e]P7d3d3d3" #lightgrey - echo -en "\e]PFc1cdc1" #white - clear #for background artifacting -fi diff --git a/zsh/.zsh/syntax.zsh b/zsh/.zsh/syntax.zsh @@ -1,39 +0,0 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# Source the plugin https://github.com/zsh-users/zsh-syntax-highlighting -#source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh - -# Colour overrides -#ZSH_HIGHLIGHT_STYLES[default]='none' -#ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red' -#ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=yellow' -#ZSH_HIGHLIGHT_STYLES[alias]='fg=blue' -#ZSH_HIGHLIGHT_STYLES[builtin]='fg=blue' -#ZSH_HIGHLIGHT_STYLES[function]='fg=blue' -#ZSH_HIGHLIGHT_STYLES[command]='fg=blue' -#ZSH_HIGHLIGHT_STYLES[precommand]='none' -#ZSH_HIGHLIGHT_STYLES[commandseparator]='none' -#ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=blue' -#ZSH_HIGHLIGHT_STYLES[path]='none' -#ZSH_HIGHLIGHT_STYLES[path_prefix]='none' -#ZSH_HIGHLIGHT_STYLES[path_approx]='fg=yellow' -#ZSH_HIGHLIGHT_STYLES[globbing]='fg=green' -#ZSH_HIGHLIGHT_STYLES[history-expansion]='fg=green' -#ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=magenta' -#ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=red' -#ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='none' -#ZSH_HIGHLIGHT_STYLES[single-quoted-argument]='fg=yellow' -#ZSH_HIGHLIGHT_STYLES[double-quoted-argument]='fg=yellow' -#ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]='fg=cyan' -#ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]='fg=cyan' -#ZSH_HIGHLIGHT_STYLES[assign]='none' diff --git a/zsh/.zsh/venganza.zsh b/zsh/.zsh/venganza.zsh @@ -0,0 +1,22 @@ +# VENGANZA +# tty colors +if [ "$TERM" = "linux" ] +then + echo -en "\e]P0212121" #black + echo -en "\e]P83e3c3a" #darkgrey + echo -en "\e]P1c73d2f" #darkred + echo -en "\e]P9923a45" #red + echo -en "\e]P21dc189" #darkgreen + echo -en "\e]PA2a936b" #green + echo -en "\e]P3a0ac6b" #yellow + echo -en "\e]PB997358" #orange + echo -en "\e]P43a7885" #darkblue + echo -en "\e]PC366696" #blue + echo -en "\e]P5776e89" #darkmagenta + echo -en "\e]PD4f5090" #magenta + echo -en "\e]P635abbb" #darkcyan + echo -en "\e]PE5a7588" #cyan + echo -en "\e]P7e6e3c6" #lightgrey + echo -en "\e]PFeeeeec" #white + clear #for background artifacting +fi diff --git a/zsh/.zsh/welcome.zsh b/zsh/.zsh/welcome.zsh @@ -1,15 +1,27 @@ -# script run on first terminal +# WELCOME PTS=$(ps -U $USER | awk '{ print $2 }' | grep "pts/" | uniq | wc -l) +audio_vol() { + _master="Master" + _usb="Dell USB Audio" + + if amixer | grep "$_master" >/dev/null ; then + amixer sset "$_master" 40% >/dev/null + elif amixer | grep "$_usb" >/dev/null ; then + amixer sset "$_usb" 25% >/dev/null + fi +} + +# script run on first terminal script() { - sysinfo2 - topydo + audio_vol + tmux new -s main } -setxkbmap -option ctrl:nocaps set -o vi - +cat ~/tmp/pyratebeard_ansi_md if [[ ${PTS} -lt "2" ]] ; then + hashwall -b '#2e2c2a' -f '#4f5090' -s 12 script fi diff --git a/zsh/.zshrc b/zsh/.zshrc @@ -1,17 +1,9 @@ -# '########::'######::'##::::'##: -# ..... ##::'##... ##: ##:::: ##: -# :::: ##::: ##:::..:: ##:::: ##: -# ::: ##::::. ######:: #########: -# :: ##::::::..... ##: ##.... ##: -# : ##::::::'##::: ##: ##:::: ##: -# ########:. ######:: ##:::: ##: -# ........:::......:::..:::::..:: -# -# AUTHOR pyratebeard <root@pyratebeard.net> -# CODE http://github.com/pyratebeard/dotfiles -# -# Load configs +# ░▀▀█░█▀▀░█░█░░ +# ░▄▀░░▀▀█░█▀█░░ +# ░▀▀▀░▀▀▀░▀░▀░░ + +# load configs for config (~/.zsh/*.zsh) source $config setopt auto_cd -#export PATH="$HOME/.dynamic-colors/bin:$PATH" -#source $HOME/.dynamic-colors/completions/dynamic-colors.zsh + +export PATH=$PATH:/home/pyratebeard/dot/bin/bin:/home/pyratebeard/.local/bin