-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Steven Eksteen
committed
Sep 21, 2020
1 parent
a4d9e6d
commit d094640
Showing
21 changed files
with
355 additions
and
1,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Xcursor.theme: Simp1e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# List | ||
alias ls='ls --color=auto' | ||
alias lsa='ls -al --color=auto' | ||
|
||
## Colorize the grep command output for ease of use (good for log files)## | ||
alias grep='grep --color=auto' | ||
alias egrep='egrep --color=auto' | ||
alias fgrep='fgrep --color=auto' | ||
|
||
# ps | ||
alias psa="ps auxf" | ||
alias psgrep="ps aux | grep -v grep | grep -i -e VSZ -e" | ||
|
||
# # ex = EXtractor for all kinds of archives | ||
# # usage: ex <file> | ||
ex () | ||
{ | ||
if [ -f $1 ] ; then | ||
case $1 in | ||
*.tar.bz2) tar xjf $1 ;; | ||
*.tar.gz) tar xzf $1 ;; | ||
*.bz2) bunzip2 $1 ;; | ||
*.rar) unrar x $1 ;; | ||
*.gz) gunzip $1 ;; | ||
*.tar) tar xf $1 ;; | ||
*.tbz2) tar xjf $1 ;; | ||
*.tgz) tar xzf $1 ;; | ||
*.zip) unzip $1 ;; | ||
*.Z) uncompress $1;; | ||
*.7z) 7z x $1 ;; | ||
*.deb) ar x $1 ;; | ||
*.tar.xz) tar xf $1 ;; | ||
*.tar.zst) unzstd $1 ;; | ||
*) echo "'$1' cannot be extracted via ex()" ;; | ||
esac | ||
else | ||
echo "'$1' is not a valid file" | ||
fi | ||
} | ||
|
||
# KB | ||
alias kbl="kb list" | ||
alias kbe="kb edit --id" | ||
alias kba="kb add" | ||
alias kbv="kb view --id" | ||
alias kbd="kb delete --id" | ||
alias kbg="kb grep" | ||
alias kbt="kb list --tags" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
file:///home/eksoverzero/Sites |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.