diff options
| author | Simen A. W. Olsen <so@bjerk.io> | 2021-09-01 09:01:29 +0200 |
|---|---|---|
| committer | Simen A. W. Olsen <so@bjerk.io> | 2021-09-01 09:01:29 +0200 |
| commit | 987002ce6dae4bbfeac58b1c7b2e1604f35caece (patch) | |
| tree | 2f3e84706456d75462a2792163dced3682ad50ce | |
| parent | 7f3e2883b924119252a9273f60105e87fde7e2f9 (diff) | |
| download | dotfiles-987002ce6dae4bbfeac58b1c7b2e1604f35caece.tar.gz dotfiles-987002ce6dae4bbfeac58b1c7b2e1604f35caece.zip | |
update aliases
| -rw-r--r-- | .aliases | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -5,6 +5,17 @@ alias gfr='git fetch upstream && git rebase upstream/master' alias git-undo='git reset --soft HEAD~1' # Generic / Random / Utility -alias repos='cd $REPOS/github.com/' +alias r='cd $REPOS/github.com/' alias c='clear' -alias afk='pmset displaysleepnow'
\ No newline at end of file +alias afk='pmset displaysleepnow' +alias dl="cd ~/Downloads" +alias l='ls -l' + +# Kill all the tabs in Chrome to free up memory +# [C] explained: http://www.commandlinefu.com/commands/view/402/exclude-grep-from-your-grepped-output-of-ps-alias-included-in-description +alias chromekill="ps ux | grep '[C]hrome Helper --type=renderer' | grep -v extension-process | tr -s ' ' | cut -d ' ' -f2 | xargs kill" + +alias fork-cleaner="fork-cleaner --token $(cat ~/.secrets/github-token)" + +alias gcloud-configs="gcloud config configurations list" +alias gcloud-set-config="gcloud config configurations activate"
\ No newline at end of file |
