bashrc update
This commit is contained in:
parent
7d54705960
commit
8a253f50e1
22
.bashrc
22
.bashrc
|
@ -4,34 +4,42 @@
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
# alias ls='ls --color=auto'
|
|
||||||
PS1='[\u@\h \W]\$ '
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
# ALIASES
|
# ALIASES
|
||||||
alias update-grub='sudo grub-mkconfig -o /boot/grub/grub.cfg'
|
alias update-grub='sudo grub-mkconfig -o /boot/grub/grub.cfg'
|
||||||
|
|
||||||
|
alias c='clear'
|
||||||
|
|
||||||
|
# APPLICATIONS
|
||||||
alias ls='exa -al'
|
alias ls='exa -al'
|
||||||
alias mutt='neomutt'
|
alias mutt='neomutt'
|
||||||
alias m='neomutt'
|
alias m='neomutt'
|
||||||
alias shutdown='sudo shutdown -h now'
|
alias shutdown='sudo shutdown -h now'
|
||||||
alias v='vim'
|
alias v='vim'
|
||||||
alias w='wal -i ~/wallpaper/'
|
alias r='ranger'
|
||||||
|
alias w='~/dotfiles/scripts/updatewal.sh'
|
||||||
|
|
||||||
|
# SCRIPTS
|
||||||
alias gr='python ~/dotfiles/scripts/growthrate.py'
|
alias gr='python ~/dotfiles/scripts/growthrate.py'
|
||||||
|
alias chat='python ~/mychatgpt/mychatgpt.py'
|
||||||
|
|
||||||
|
# VIRTUAL MACHINE
|
||||||
alias vm='~/dotfiles/scripts/launchVM.sh'
|
alias vm='~/dotfiles/scripts/launchVM.sh'
|
||||||
alias vmstart='virsh --connect qemu:///system start RDPWindows'
|
alias vmstart='virsh --connect qemu:///system start RDPWindows'
|
||||||
alias vmstop='virsh --connect qemu:///system destroy RDPWindows'
|
alias vmstop='virsh --connect qemu:///system destroy RDPWindows'
|
||||||
alias win10='xfreerdp /v:Windows10 /size:100% /d: /p:sancho /dynamic-resolution &'
|
alias win10='xfreerdp /v:Windows10 /size:100% /d: /p:sancho /dynamic-resolution &'
|
||||||
|
|
||||||
alias qc='vim ~/dotfiles/qtile/config.py'
|
# EDIT CONFIG Files
|
||||||
alias pc='vim ~/dotfiles/picom/picom.conf'
|
alias confq='vim ~/dotfiles/qtile/config.py'
|
||||||
|
alias confp='vim ~/dotfiles/picom/picom.conf'
|
||||||
|
alias confb='vim ~/dotfiles/.bashrc'
|
||||||
|
|
||||||
# START STARSHIP
|
# START STARSHIP
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
|
|
||||||
# PyWal
|
# PYWAL
|
||||||
cat ~/.cache/wal/sequences
|
cat ~/.cache/wal/sequences
|
||||||
|
|
||||||
# START NEOFETCH
|
# NEOFETCH
|
||||||
neofetch
|
neofetch
|
||||||
|
|
11
scripts/updatewal.sh
Executable file
11
scripts/updatewal.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
# ~/.bashrc
|
||||||
|
|
||||||
|
# Update Wallpaper with pywal
|
||||||
|
wal -i ~/wallpaper/
|
||||||
|
|
||||||
|
# Wait for 1 sec
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
# Reload qtile to color bar
|
||||||
|
qtile cmd-obj -o cmd -f reload_config
|
||||||
|
|
Loading…
Reference in New Issue
Block a user