Update all dotfiles
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
# -----------------------------------------------------
|
||||
# INIT
|
||||
# -----------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Exports
|
||||
# -----------------------------------------------------
|
||||
export EDITOR=nvim
|
||||
export PATH="/usr/lib/ccache/bin/:$PATH"
|
@ -0,0 +1,71 @@
|
||||
# -----------------------------------------------------
|
||||
# ALIASES
|
||||
# -----------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------
|
||||
# General
|
||||
# -----------------------------------------------------
|
||||
alias c='clear'
|
||||
alias nf='fastfetch'
|
||||
alias pf='fastfetch'
|
||||
alias ff='fastfetch'
|
||||
alias ls='eza -a --icons=always'
|
||||
alias ll='eza -al --icons=always'
|
||||
alias lt='eza -a --tree --level=1 --icons=always'
|
||||
alias shutdown='systemctl poweroff'
|
||||
alias v='$EDITOR'
|
||||
alias vim='$EDITOR'
|
||||
alias ts='~/.config/ml4w/scripts/snapshot.sh'
|
||||
alias wifi='nmtui'
|
||||
alias cleanup='~/.config/ml4w/scripts/cleanup.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# ML4W Apps
|
||||
# -----------------------------------------------------
|
||||
alias ml4w='com.ml4w.welcome'
|
||||
alias ml4w-settings='com.ml4w.dotfilessettings'
|
||||
alias ml4w-hyprland='com.ml4w.hyprland.settings'
|
||||
alias ml4w-options='ml4w-hyprland-setup -m options'
|
||||
alias ml4w-sidebar='ags toggle sidebar'
|
||||
alias ml4w-diagnosis='~/.config/hypr/scripts/diagnosis.sh'
|
||||
alias ml4w-hyprland-diagnosis='~/.config/hypr/scripts/diagnosis.sh'
|
||||
alias ml4w-qtile-diagnosis='~/.config/ml4w/qtile/scripts/diagnosis.sh'
|
||||
alias ml4w-update='~/.config/ml4w/update.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 gfo="git fetch origin"
|
||||
alias gcheck="git checkout"
|
||||
alias gcredential="git config credential.helper store"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Scripts
|
||||
# -----------------------------------------------------
|
||||
alias ascii='~/.config/ml4w/scripts/figlet.sh'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# System
|
||||
# -----------------------------------------------------
|
||||
alias update-grub='sudo grub-mkconfig -o /boot/grub/grub.cfg'
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Qtile
|
||||
# -----------------------------------------------------
|
||||
alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120'
|
||||
alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120'
|
||||
alias setkb='setxkbmap de;echo "Keyboard set back to de."'
|
@ -0,0 +1,15 @@
|
||||
# -----------------------------------------------------
|
||||
# CUSTOMIZATION
|
||||
# -----------------------------------------------------
|
||||
POSH=agnoster
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Prompt
|
||||
# -----------------------------------------------------
|
||||
# eval "$(oh-my-posh init bash --config $HOME/.config/ohmyposh/zen.toml)"
|
||||
eval "$(oh-my-posh init bash --config $HOME/.config/ohmyposh/EDM115-newline.omp.json)"
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Pywal
|
||||
# -----------------------------------------------------
|
||||
cat ~/.cache/wal/sequences
|
@ -0,0 +1,18 @@
|
||||
# -----------------------------------------------------
|
||||
# AUTOSTART
|
||||
# -----------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Fastfetch
|
||||
# -----------------------------------------------------
|
||||
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