init: copy from Hacmini
This commit is contained in:
142
dotfiles/.bashrc
Normal file
142
dotfiles/.bashrc
Normal file
@@ -0,0 +1,142 @@
|
||||
# _ _
|
||||
# | |__ __ _ ___| |__ _ __ ___
|
||||
# | '_ \ / _` / __| '_ \| '__/ __|
|
||||
# _| |_) | (_| \__ \ | | | | | (__
|
||||
# (_)_.__/ \__,_|___/_| |_|_| \___|
|
||||
#
|
||||
# by Stephan Raabe (2023)
|
||||
# -----------------------------------------------------
|
||||
# ~/.bashrc
|
||||
# -----------------------------------------------------
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
PS1='[\u@\h \W]\$ '
|
||||
|
||||
# Define Editor
|
||||
export EDITOR=nvim
|
||||
|
||||
# -----------------------------------------------------
|
||||
# ALIASES
|
||||
# -----------------------------------------------------
|
||||
alias c='clear'
|
||||
alias nf='fastfetch'
|
||||
alias pf='fastfetch'
|
||||
alias ff='fastfetch'
|
||||
alias ls='eza -a --icons'
|
||||
alias ll='eza -al --icons'
|
||||
alias lt='eza -a --tree --level=1 --icons'
|
||||
alias shutdown='systemctl poweroff'
|
||||
alias v='$EDITOR'
|
||||
alias vim='$EDITOR'
|
||||
alias ts='~/dotfiles/scripts/snapshot.sh'
|
||||
alias matrix='cmatrix'
|
||||
alias wifi='nmtui'
|
||||
alias od='~/private/onedrive.sh'
|
||||
alias rw='~/dotfiles/waybar/reload.sh'
|
||||
alias winclass="xprop | grep 'CLASS'"
|
||||
alias dot="cd ~/dotfiles"
|
||||
alias cleanup='~/dotfiles/scripts/cleanup.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# ML4W Apps
|
||||
# -----------------------------------------------------
|
||||
alias ml4w='~/dotfiles/apps/ML4W_Welcome-x86_64.AppImage'
|
||||
alias ml4w-settings='~/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage'
|
||||
alias ml4w-sidebar='~/dotfiles/eww/ml4w-sidebar/launch.sh'
|
||||
alias ml4w-hyprland='~/dotfiles/apps/ML4W_Hyprland_Settings-x86_64.AppImage'
|
||||
alias ml4w-diagnosis='~/dotfiles/hypr/scripts/diagnosis.sh'
|
||||
alias ml4w-hyprland-diagnosis='~/dotfiles/hypr/scripts/diagnosis.sh'
|
||||
alias ml4w-qtile-diagnosis='~/dotfiles/qtile/scripts/diagnosis.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Window Managers
|
||||
# -----------------------------------------------------
|
||||
|
||||
alias Qtile='startx'
|
||||
# Hyprland with Hyprland
|
||||
|
||||
# -----------------------------------------------------
|
||||
# GIT
|
||||
# -----------------------------------------------------
|
||||
alias gs="git status"
|
||||
alias ga="git add"
|
||||
alias gc="git commit -m"
|
||||
alias gp="git push"
|
||||
alias gpl="git pull"
|
||||
alias gst="git stash"
|
||||
alias gsp="git stash; git pull"
|
||||
alias gcheck="git checkout"
|
||||
alias gcredential="git config credential.helper store"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# SCRIPTS
|
||||
# -----------------------------------------------------
|
||||
alias gr='python ~/dotfiles/scripts/growthrate.py'
|
||||
alias ChatGPT='python ~/mychatgpt/mychatgpt.py'
|
||||
alias chat='python ~/mychatgpt/mychatgpt.py'
|
||||
alias ascii='~/dotfiles/scripts/figlet.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# VIRTUAL MACHINE
|
||||
# -----------------------------------------------------
|
||||
alias vm='~/private/launchvm.sh'
|
||||
alias lg='~/dotfiles/scripts/looking-glass.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# EDIT CONFIG FILES
|
||||
# -----------------------------------------------------
|
||||
alias confq='$EDITOR ~/dotfiles/qtile/config.py'
|
||||
alias confp='$EDITOR ~/dotfiles/picom/picom.conf'
|
||||
alias confb='$EDITOR ~/dotfiles/.bashrc'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# EDIT NOTES
|
||||
# -----------------------------------------------------
|
||||
alias notes='$EDITOR ~/notes.txt'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# SYSTEM
|
||||
# -----------------------------------------------------
|
||||
alias update-grub='sudo grub-mkconfig -o /boot/grub/grub.cfg'
|
||||
alias setkb='setxkbmap de;echo "Keyboard set back to de."'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# SCREEN RESOLUTINS
|
||||
# -----------------------------------------------------
|
||||
|
||||
# Qtile
|
||||
alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120'
|
||||
alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120'
|
||||
|
||||
export PATH="$HOME/.local/bin/:/usr/lib/ccache/bin/:$PATH"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# DEVELOPMENT
|
||||
# -----------------------------------------------------
|
||||
alias dotsync="~/dotfiles-versions/dotfiles/.dev/sync.sh dotfiles"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# START STARSHIP
|
||||
# -----------------------------------------------------
|
||||
eval "$(starship init bash)"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# PYWAL
|
||||
# -----------------------------------------------------
|
||||
cat ~/.cache/wal/sequences
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Fastfetch if on wm
|
||||
# -----------------------------------------------------
|
||||
if [[ $(tty) == *"pts"* ]]; then
|
||||
fastfetch --config examples/13
|
||||
else
|
||||
echo
|
||||
if [ -f /bin/qtile ]; then
|
||||
echo "Start Qtile X11 with command Qtile"
|
||||
fi
|
||||
if [ -f /bin/hyprctl ]; then
|
||||
echo "Start Hyprland with command Hyprland"
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user