Remove confidential information

This commit is contained in:
trémeur 2020-06-20 21:37:04 +01:00
parent 115a9003a8
commit b4b693a81c
4 changed files with 248 additions and 0 deletions

11
dots/.gitconfig Normal file
View file

@ -0,0 +1,11 @@
[color]
ui = auto
[core]
editor = nano -n -w
[push]
default = upstream
[merg]
conflictstyle = diff3
[user]
email = eheu48@gmail.com
name = trémeur

36
dots/aliases Normal file
View file

@ -0,0 +1,36 @@
# Emacs
alias emacs="emacs26"
# Cmus
pl(){pgrep -x cmus >/dev/null && cmus-remote -u || echo "cmus is not running"}
alias pa="pl"
sk(){pgrep -x cmus >/dev/null && cmus-remote -n || echo "cmus is not running"}
alias nowplaying="~/.linux/scripts/nowplaying.sh"
# Other scripts
alias fetch="~/.linux/scripts/lfetch/lfetch"
pywal(){
wal --vte -li "$1"
feh --bg-fill "$1"
~/.linux/scripts/colorus/convert.sh
wait
rm -f ~/.Xresources
echo Xcursor.theme: Suru >> ~/.cache/wal/colors.Xresources # will this mean its there multiple times??
cp -f ~/.cache/wal/colors.Xresources ~/.Xresources
obtgen
~/.linux/scripts/bordergen.sh
}
alias cello="python3 ~/.linux/scripts/cellopractice.py"
alias rcmus="~/.linux/scripts/cmus-refresh.sh"
# Brevity
alias giveme="find ~/Documents/drive | egrep -i"
cdls(){
PATHO=$(realpath $1)
cd $PATHO && ls
}
# Troubleshooting
alias rp="killall plank && nohup plank &"
alias rck="killall conky && nohup conky &"
alias rsw="nmcli radio wifi off && nmcli radio wifi on"