128 lines
2.7 KiB
Bash
128 lines
2.7 KiB
Bash
# Some helping functions
|
|
|
|
### File manipulation ###
|
|
# Copy to clipboard
|
|
copy() {
|
|
if [ $# -eq 0 ]; then
|
|
xclip -selection c
|
|
else
|
|
file_type=$(file -b --mime-type "$1")
|
|
xclip -selection c -t $file_type < $1
|
|
fi
|
|
}
|
|
|
|
# Swap files
|
|
swap() {
|
|
local tmp=`mktemp`
|
|
mv "$1" "$tmp"
|
|
mv "$2" "$1"
|
|
mv "$tmp" "$2"
|
|
}
|
|
|
|
# mkdir && cd
|
|
mkcd() {
|
|
mkdir $1 && cd $1
|
|
}
|
|
|
|
### Vim helpers ###
|
|
vclass() {
|
|
v src/"$1".cpp -c ":vs include/$1.hpp"
|
|
}
|
|
vide() {
|
|
v $1 -c ":NERDTree"
|
|
}
|
|
vs() {
|
|
v $1 -c ":vs $2"
|
|
}
|
|
sp() {
|
|
v $1 -c ":sp $2"
|
|
}
|
|
vfind() {
|
|
v `find . -name "$1"`
|
|
}
|
|
|
|
### Others ###
|
|
# Recover a vim backup
|
|
recover() {
|
|
if [ -f $1 ]; then
|
|
echo >&2 Cannot recover an existing file...
|
|
return 1
|
|
fi
|
|
|
|
BACKUP_PATH=~/.vim/backups/`echo $PWD/$1 | tr '/' '%'`
|
|
|
|
if [ ! -f "$BACKUP_PATH" ]; then
|
|
echo >&2 Backup not found...
|
|
return 2
|
|
fi
|
|
|
|
cp $BACKUP_PATH $1
|
|
}
|
|
|
|
# colors for the man pages
|
|
man() {
|
|
env LESS_TERMCAP_mb=$(printf "\e[1;31m") \
|
|
LESS_TERMCAP_md=$(printf "\e[1;31m") \
|
|
LESS_TERMCAP_me=$(printf "\e[0m") \
|
|
LESS_TERMCAP_se=$(printf "\e[0m") \
|
|
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
|
|
LESS_TERMCAP_ue=$(printf "\e[0m") \
|
|
LESS_TERMCAP_us=$(printf "\e[1;32m") \
|
|
man "$@"
|
|
}
|
|
|
|
# Better svn log
|
|
svn() {
|
|
case $* in
|
|
log ) shift 1; command svn log "$@" | less ;;
|
|
* ) command svn "$@" ;;
|
|
esac
|
|
}
|
|
|
|
# Clears resolv.conf with Cloudflare/APNIC's dns
|
|
resolv() {
|
|
echo 'nameserver 1.1.1.1' | sudo tee /etc/resolv.conf > /dev/null
|
|
}
|
|
|
|
# Generate a standard LaTeX maefile
|
|
makelatex() {
|
|
cp /home/thomas/.script/classgen/Makefile.latex ./Makefile
|
|
}
|
|
|
|
source $HOME/.config/dotfiles/zsh/update.zsh
|
|
source $HOME/.config/dotfiles/zsh/gclone.zsh
|
|
|
|
# Music things
|
|
command -v music-server > /dev/null 2>&1
|
|
if [ $? -eq 0 ]; then
|
|
|
|
# If music-server is installed, check if awesome is running with screenfetch
|
|
command -v screenfetch > /dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
screenfetch -d wm -nN | grep "Awesome" > /dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
# User is running awesome, music-client will go through awesome-client
|
|
music-client() {
|
|
command=$1
|
|
if [ $# -eq 1 ]; then
|
|
echo "require('music').execute_command(\"$command\")" | awesome-client
|
|
else
|
|
library_path=$(realpath $2 | cut -d '/' -f 5-)
|
|
awesome_command="require('music').execute_command(\"$command\",\"$library_path\")"
|
|
echo $awesome_command | awesome-client
|
|
fi
|
|
}
|
|
|
|
alias mcf="music-client file"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|