You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.3 KiB
62 lines
1.3 KiB
# Both PC/Laptop {{{
|
|
if [ "$(whoami)" == "kevin" ]; then
|
|
alias vbn="cvlc --loop --alsa-gain 1 ~/Downloads/brown-noise.mp3"
|
|
|
|
alias mt="ok ~/Documents/School/calc-textbook.pdf"
|
|
alias clc="gcalccmd"
|
|
alias 6t="ok ~/Documents/School/236-textbook.pdf"
|
|
fi
|
|
# Both PC/Laptop }}}
|
|
|
|
# NZXT {{{
|
|
if [ "$(hostname)" == "NZXT" ]; then
|
|
rt() {
|
|
output="HDMI-0"
|
|
if [ "$1" = "s" ]
|
|
# if [ "${1:0:1}" = "s" ]
|
|
then
|
|
output="DVI-I-1"
|
|
fi
|
|
|
|
dir="normal"
|
|
if [ "$2" = "r" ]
|
|
# if [ "${1:1:2}" = "r" ]
|
|
then
|
|
dir="right"
|
|
fi
|
|
if [ "$2" = "l" ]
|
|
then
|
|
dir="left"
|
|
fi
|
|
|
|
# echo "xrandr --output \"$output\" --rotate \"$dir\""
|
|
xrandr --output "$output" --rotate "$dir"
|
|
}
|
|
|
|
alias ow7="virtualbox startvm W7"
|
|
# alias ow7="VBoxManage startvm W7 --type headless"
|
|
|
|
chr() { google-chrome $1 ; }
|
|
alias nem="nemo ."
|
|
alias spt="speedtest"
|
|
alias pg="ping -c 5 google.ca"
|
|
|
|
alias res="vi ~/Documents/resume/README.md"
|
|
alias sfa="d ~/Documents/self-authoring"
|
|
alias rcg="d ~/Documents/coding/random-color-generator"
|
|
alias dcr="d ~/Documents/coding/dcr-logger"
|
|
fi
|
|
# NZXT }}}
|
|
|
|
# Laptop {{{
|
|
if [ "$(hostname)" == "X1-Carbon" ]; then
|
|
# key swaps
|
|
xmodmap -e "keycode 9 = Escape"
|
|
xmodmap -e "keycode 22 = Home"
|
|
xmodmap -e "keycode 119 = End"
|
|
xmodmap -e "keycode 110 = Delete"
|
|
xmodmap -e "keycode 115 = BackSpace"
|
|
|
|
alias thn="thunar ."
|
|
fi
|
|
# Laptop }}}
|