Cleaned up aliases

This commit is contained in:
Tracey Clark 2019-06-22 13:29:40 -05:00
commit 4bb7cf6c21
3 changed files with 6 additions and 16 deletions

View file

@ -2,7 +2,6 @@ alias ls='ls --color=auto'
alias grep='grep --color=auto' alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto' alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto' alias egrep='egrep --color=auto'
alias ted='java -jar /home/tracey/bin/ted.jar'
alias ll='ls -alFh --group-directories-first' alias ll='ls -alFh --group-directories-first'
alias la='ls -A' alias la='ls -A'
alias l='ls -CF' alias l='ls -CF'
@ -12,3 +11,7 @@ alias mountpi='sshfs -o idmap=user pi@pi3:/home/pi /home/tracey/pi3'
alias unpi='fusermount -u /home/tracey/pi3' alias unpi='fusermount -u /home/tracey/pi3'
alias aptup='sudo zsh -c 'apt update&&apt upgrade&&apt autoremove'' alias aptup='sudo zsh -c 'apt update&&apt upgrade&&apt autoremove''
alias fixkde='DISPLAY=:0 kwin --replace &' alias fixkde='DISPLAY=:0 kwin --replace &'
alias neonup='pkcon refresh && pkcon update'
alias colokontabs='konsole --tabs-from-file ~/git/shell-scripts/home_config/konsole_tabs_colo &'
alias colokon='konsole --profile Mikado -e $SHELL -c "echo Hallo Tracey ; ssh cp"'
alias zpreztoup='cd /home/tracey/.zprezto && git fetch && git merge --ff-only && git submodule update --init --recursive'

View file

@ -161,7 +161,7 @@ zstyle ':prezto:module:prompt' theme 'sorin'
# Set the SSH identities to load into the agent. # Set the SSH identities to load into the agent.
# zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github' # zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
zstyle ':prezto:module:ssh:load' identities 'tlc_gittea' 'tlc_server' zstyle ':prezto:module:ssh:load' identities 'tlc_server' 'tlc_cp_server' 'id_tlc_gitea'
echo 'Loaded the identities' echo 'Loaded the identities'
echo `ssh-add -l` echo `ssh-add -l`

View file

@ -1,13 +0,0 @@
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...