###################################################################### # Dotfile for the zsh shell, containing aliases and functions # Copyright (C) 2017 Lucien Cartier-Tilet # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ###################################################################### # Line to hopefully fix tramp-mode in Spacemacs [[ $TERM == "tramp" ]] && unsetopt zle && PS1='$ ' && return # I want muh GL4D library export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" # Lines configured by zsh-newuser-install HISTFILE=~/.histfile HISTSIZE=100000 SAVEHIST=100000 setopt EXTENDED_HISTORY setopt APPEND_HISTORY bindkey ';5D' backward-word bindkey ';5C' forward-word bindkey -e set -k # End of lines configured by zsh-newuser-install # The following lines were added by compinstall zstyle :compinstall filename '/home/alex/.zshrc' autoload -Uz compinit url-quote-magic compinit # End of lines added by compinstall source /usr/share/zsh/site-contrib/powerline.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source ~/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zshrc-private.zsh autoload -Uz run-help unalias run-help export CC=/usr/bin/clang export CXX=/usr/bin/clang++ export EDITOR='vim' # export PATH=$PATH:$HOME/local/bin export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/bin:$HOME/local/lib TEXINPUTS=~/.tex/scheme-listings-master/:$TEXINPUTS TEXINPUTS=~/pgfplots/tex//:$TEXINPUTS # Safety nets # do not delete / or prompt if deleting more than 3 files at a time alias rm='rm -I --preserve-root' alias rmd='rm -r --preserve-root' # confirmation alias mv='mv -i' alias cp='cp -i' alias ln='ln -i' # Parenting changin perms on / alias chown='chown --preserve-root' alias chmod='chmod --preserve-root' alias chgrp='chgrp --preserve-root' # Tune sudo and su alias root='sudo -i' alias su='sudo -i' # Get system memory, CPU usage and GPU memory info alias meminfo='free -m -l -t' alias psmem='ps auxf | sort -nr -k 4' alias psmem10='ps auxf | sort -nr -k 4 | head -10' alias pscpu='ps auxf | sort -nr -k 3' alias pscpu10='ps auxf | sort -nr -k 3 | head -10' alias cpuinfo='lscpu' alias gpumeminfo='grep -i --color memory /var/log/Xorg.0.log' # I can't type alias exti=exit alias exi=exit alias ..='cd ..' alias solo='cd ~/dotfiles/.config && ln -s compton-solo.conf compton.conf ; pkill compton ; compton' alias multiscreen='cd ~/dotfiles/.config && ln -s compton-multi.conf compton.conf ; pkill compton ; compton' alias grep="grep --color=auto" alias help='run-help' alias ll='ls -alh | less' alias ls='ls --color' alias lsl='ls -Alh --color' alias la='ls -A --color' #alias mp3='youtube-dl -x --audio-format mp3 --audio-quality 0 $*' alias flac='youtube-dl -x --audio-format flac --audio-quality 0 $*' # force some audio quality alias mp3=flac alias rainbowstream='rainbowstream -iot' alias mpv='mpv --no-border --force-window=no' alias feh='feh -Zx.' alias neofetch='clear && neofetch --cpu_temp C --os_arch off --cpu_cores physical --kernel_shorthand on --uptime_shorthand tiny --w3m --source ~/dotfiles/ArjLinugz-xDDDDDDDDDDDD-neofetch.png --size 340px' alias untar='tar -zxvf' alias compress='tar -czf' alias df='df -H' alias du='du -ch' mkcddir(){ mkdir -p "$1" && cd "$1" } ytdl(){ str="$1" youtube-dl --write-sub "${str#*=}" } rainymood() { volume="50" if [ "$#" -gt "0" ]; then volume="$1" fi FILE=$((RANDOM%4)) URL="https://rainymood.com/audio1110/${FILE}.ogg" mpv "$URL" --force-window=no --volume=${volume} && rainymood } # Weather we(){ if [ -n "$1" ]; then str="$*"; curl http://wttr.in/~${str// /+} else curl http://wttr.in/Aubervilliers fi } alias wea='we Aubervilliers' alias wee='we Enghien+les+Bains' alias wel='we Lyon' alias wep='we Paris' # Download alias wget='wget -c' alias 4chandl='wget -c -erobots=off -nd -rHD4chan.org -Ajpg,png,gif,webm -Rs.jpg' # System alias diskspace='du -S | sort -n -r |more' alias spoweroff='systemctl poweroff -i' alias sreboot='systemctl reboot -i' alias zshrc='source ~/.zshrc' alias battery='upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep -E "state|to\ full|percentage|time\ to\ empty"' alias mountC='sudo mount -t ntfs /dev/sda4 /media/Marpa && cd /media/Marpa/C/' alias mountD='sudo mount -t ntfs /dev/sdb1 /media/Marpa && cd /media/Marpa/Phundrak/' alias umountC='cd ~ && sudo umount /media/C' alias umountD='cd ~ && sudo umount /media/Marpa' # Emacs alias enw='emacs -nw' alias servemacs='emacs --daemon' alias restartemacs='emacsclient --eval "(kill-emacs)"' # Package Manager Pacman alias aurupdate='yay -Syua' alias forceupdate='sudo pacman -Syyu' alias gimme='sudo pacman -Syu' alias install='sudo pacman -S' alias purge='sudo pacman -Sc' alias remove='sudo pacman -Rscnd' alias search='yay -Ss' alias update='sudo pacman -Syu' alias optimize='sudo pacman-optimize && sync' alias pac-clean='remove $(pacman -Qtdq)' # Dev alias clang='clang -Wall' alias clang++='clang++ -Wall' alias g++='g++ -Wall' alias gcc='gcc -Wall' alias cdebug='cmake -DCMAKE_BUILD_TYPE=Debug' alias crelease='cmake -DCMAKE_BUILD_TYPE=Release' alias gitlog='git log --oneline --graph --decorate' alias swipl='clear && swipl -q && clear' cppnew() { mkdir -p "$1" cd "$1"; mkdir -p src cp ~/dotfiles/dev/CC/gitignore .gitignore cp ~/dotfiles/dev/CC/Makefile Makefile cp ~/dotfiles/dev/C++/main.cc src/main.cc cp ~/dotfiles/dev/C++/CMakeLists.txt.part1 CMakeLists.txt printf "%s" "$1" >> CMakeLists.txt cat ~/dotfiles/dev/C++/CMakeLists.txt.part2 >> CMakeLists.txt printf "%s" "$1" >> CMakeLists.txt cat ~/dotfiles/dev/C++/CMakeLists.txt.part3 >> CMakeLists.txt git init git add . git commit -m "initial commit" } cnew() { mkdir -p "$1" cd "$1" mkdir -p src cp ~/dotfiles/dev/CC/gitignore .gitignore cp ~/dotfiles/dev/CC/Makefile Makefile cp ~/dotfiles/dev/C/main.c src/main.c cp ~/dotfiles/dev/C/CMakeLists.txt.part1 CMakeLists.txt printf "%s" "$1" >> CMakeLists.txt cat ~/dotfiles/dev/C/CMakeLists.txt.part2 >> CMakeLists.txt printf "%s" "$1" >> CMakeLists.txt cat ~/dotfiles/dev/C/CMakeLists.txt.part3 >> CMakeLists.txt git init git add . git commit -m "initial commit" } s() { # do sudo, or sudo the last command if no argument given if [[ $# == 0 ]]; then sudo $(history -p '!!') else sudo "$@" fi }