Deleted unnecessary dotfiles folder
Moved all files into root folder of repository and fixed set-from-git to reflect that. I was able to get set-from-git to work without listing all the dotfiles, but it didn't work as planned due to swp files, git folder and others; it's just easier and cleaner to list out the files.
This commit is contained in:
38
aliases/.pc_aliases
Normal file
38
aliases/.pc_aliases
Normal file
@@ -0,0 +1,38 @@
|
||||
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 mt="ok ~/Documents/School/136/calc-textbook.pdf"
|
||||
alias 36t="ok ~/Documents/School/236/236-textbook.pdf"
|
||||
|
||||
alias rcg="d ~/Documents/coding/random-color-generator"
|
||||
alias dcr="d ~/Documents/coding/dcr-logger"
|
||||
fi
|
||||
Reference in New Issue
Block a user