2023-03-08 08:20:33 -05:00
|
|
|
# _ _
|
|
|
|
# | |__ __ _ ___| |__ _ __ ___
|
|
|
|
# | '_ \ / _` / __| '_ \| '__/ __|
|
|
|
|
# _| |_) | (_| \__ \ | | | | | (__
|
|
|
|
# (_)_.__/ \__,_|___/_| |_|_| \___|
|
|
|
|
#
|
|
|
|
# by Stephan Raabe (2023)
|
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
# ~/.bashrc
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
|
|
|
|
# If not running interactively, don't do anything
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
# ALIASES
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
alias update-grub='sudo grub-mkconfig -o /boot/grub/grub.cfg'
|
2023-02-09 04:27:03 -05:00
|
|
|
alias c='clear'
|
2023-02-10 05:29:21 -05:00
|
|
|
alias w='~/dotfiles/scripts/updatewal.sh'
|
2023-03-15 05:13:45 -04:00
|
|
|
alias setkb='setxkbmap de;echo "Keyboard set back to de."'
|
2023-02-11 11:22:33 -05:00
|
|
|
|
2023-02-09 04:27:03 -05:00
|
|
|
# APPLICATIONS
|
2023-02-07 09:59:20 -05:00
|
|
|
alias ls='exa -al'
|
|
|
|
alias mutt='neomutt'
|
|
|
|
alias m='neomutt'
|
2023-04-08 10:26:43 -04:00
|
|
|
alias shutdown='systemctl poweroff'
|
2023-02-26 04:52:21 -05:00
|
|
|
alias v='nvim'
|
2023-02-09 04:27:03 -05:00
|
|
|
alias r='ranger'
|
2023-02-20 06:42:39 -05:00
|
|
|
alias t='sudo timeshift --list'
|
2023-04-13 12:14:20 -04:00
|
|
|
alias ts='~/snapshot.sh'
|
2023-02-20 13:24:55 -05:00
|
|
|
alias matrix='cmatrix'
|
2023-03-15 12:35:40 -04:00
|
|
|
alias shot='scrot -d 3 -c -z -u'
|
|
|
|
alias shotsel='scrot -s'
|
2023-03-06 11:55:42 -05:00
|
|
|
alias nf='neofetch'
|
2023-03-15 12:35:40 -04:00
|
|
|
alias pf='pfetch'
|
2023-04-04 10:38:59 -04:00
|
|
|
alias wifi='nmtui'
|
2023-04-11 07:37:23 -04:00
|
|
|
alias od='~/private/onedrive.sh'
|
2023-02-07 09:59:20 -05:00
|
|
|
|
2023-02-23 10:45:51 -05:00
|
|
|
# GIT
|
|
|
|
alias gs="git status"
|
|
|
|
alias ga="git add"
|
2023-02-24 05:05:07 -05:00
|
|
|
alias gc="git commit -m"
|
2023-02-23 10:45:51 -05:00
|
|
|
alias gp="git push"
|
2023-03-08 07:00:40 -05:00
|
|
|
alias gpl="git pull"
|
2023-04-13 15:38:46 -04:00
|
|
|
alias gs="git stash"
|
2023-03-08 07:00:40 -05:00
|
|
|
alias gpf="git stash; git pull"
|
2023-02-23 10:45:51 -05:00
|
|
|
|
2023-02-09 04:27:03 -05:00
|
|
|
# SCRIPTS
|
2023-02-07 09:59:20 -05:00
|
|
|
alias gr='python ~/dotfiles/scripts/growthrate.py'
|
2023-02-09 04:27:03 -05:00
|
|
|
alias chat='python ~/mychatgpt/mychatgpt.py'
|
2023-03-09 03:25:31 -05:00
|
|
|
alias ascii='~/dotfiles/scripts/figlet.sh'
|
2023-02-07 09:59:20 -05:00
|
|
|
|
2023-02-09 04:27:03 -05:00
|
|
|
# VIRTUAL MACHINE
|
2023-04-11 04:36:48 -04:00
|
|
|
alias vm='~/private/launchvm.sh'
|
2023-04-08 10:26:43 -04:00
|
|
|
alias lg='~/dotfiles/scripts/looking-glass.sh'
|
2023-02-20 06:42:39 -05:00
|
|
|
alias vmstart='virsh --connect qemu:///system start win11'
|
|
|
|
alias vmstop='virsh --connect qemu:///system destroy win11'
|
2023-02-07 09:59:20 -05:00
|
|
|
|
2023-03-06 11:55:42 -05:00
|
|
|
# EDIT CONFIG FILES
|
2023-02-09 04:27:03 -05:00
|
|
|
alias confq='vim ~/dotfiles/qtile/config.py'
|
|
|
|
alias confp='vim ~/dotfiles/picom/picom.conf'
|
|
|
|
alias confb='vim ~/dotfiles/.bashrc'
|
2023-02-07 09:59:20 -05:00
|
|
|
|
2023-02-09 08:30:40 -05:00
|
|
|
# EDIT NOTES
|
|
|
|
alias notes='vim ~/notes.txt'
|
|
|
|
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
# START STARSHIP
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
eval "$(starship init bash)"
|
|
|
|
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-09 04:27:03 -05:00
|
|
|
# PYWAL
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-02-07 09:59:20 -05:00
|
|
|
cat ~/.cache/wal/sequences
|
|
|
|
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-04-13 15:39:37 -04:00
|
|
|
# PFETCH
|
2023-03-08 08:20:33 -05:00
|
|
|
# -----------------------------------------------------
|
2023-03-19 12:58:09 -04:00
|
|
|
echo ""
|
2023-03-15 05:13:45 -04:00
|
|
|
pfetch
|