diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-24 18:22:52 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-24 18:22:52 +0530 |
commit | 46141fa54b7a21d78282896bb70667dc25e49684 (patch) | |
tree | 7abfec618c41976940231e7741a36e503085cb2e /.config/zsh | |
parent | 81808a6d71e561993608068d994c0615872d6c33 (diff) |
fixed error when starting up startpage server
Diffstat (limited to '.config/zsh')
-rw-r--r-- | .config/zsh/.zshrc | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 5e33606..2a3ba12 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -9,13 +9,18 @@ bindkey -v # paths # export PATH=/:$PATH export PATH=/zt/Docs/Go:$PATH +export GOPATH="/zt/Docs/Go/" + +export PATH=/zt/Programs/flutter/bin:$PATH + export PATH=/home/zt/.scripts:$PATH export PATH=/zt/Programs:$PATH export PATH=/home/zt/.local/bin:$PATH -export PATH=/usr/local/bin:$PATH export PATH=/home/zt/.emacs.d/bin:$PATH -export GOPATH="/zt/Docs/Go/" +export PATH=/usr/local/bin:$PATH + + # aliases # directories @@ -36,7 +41,6 @@ alias lsa='exa -al' alias nf='neofetch' alias adbc='adb connect 10.0.0.51:5555' alias x='chmod +x' - # git alias gs='git status' alias ga='git add' @@ -64,7 +68,12 @@ alias ssh-v='eval $(ssh-agent)&& ssh-add /home/zt/.ssh/vidhukant' # to change title of terminal title() { - echo -n -e "\033]0;$@\007" + echo -n -e "\033]0;$@\007" +} + +# record screen +srecord() { + ffmpeg -f x11grab -s 1366x768 -i :0.0 $@ } neofetch |