Migrate old i3 configs to 20.04

+ Made using Kubuntu
+ Add README instructions, remove `packages/` directory with old notes
+ Add yakuake shortcuts and yakuakerc
+ Remove kde configurations
+ Remove tracked binaries that were not needed
+ Update conky sysinfo configurations to use 8 core CPU
+ Update conky shortcuts configuration to orient top-left
+ Remove htoprc configuration
+ Add instructions for setting up media keys for laptops
+ Use `brightnessctl` to adjust backlight instead of `xbacklight`
+ Add instructions for using tap to click on laptop touchpads
This commit is contained in:
2021-12-19 10:05:59 -05:00
parent 79e4157404
commit 62bd4ddbce
39 changed files with 197 additions and 2606 deletions

View File

@@ -12,11 +12,12 @@ alias l='ls -CF'
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# Custom aliases / exports - Appended
# echo "alias ls='ls -la'" >> ~/.bash_aliases
alias gitkapp='git config --global user.name "Shaun Reed" && git config --global user.email "shaunrd0@gmail.com"'
# Custom aliases / exports
alias python3='python3.9'
alias pip3='python3.9 -m pip'
alias config='/usr/bin/git --git-dir=/home/kapper/.cfg/ --work-tree=/home/kapper'
alias kapp-git='git config --global user.name "Shaun Reed" && git config --global user.email "shaunrd0@gmail.com"'
alias kapp-update='sudo apt update -y && sudo apt upgrade -y && sudo apt upgrade --fix-broken --fix-missing --auto-remove'
#export FONT='xft:InconsolataNerdFont'
#export TERMINAL='urxvt -fn '$FONT' -e tmux -u'
@@ -25,6 +26,7 @@ export TERMINAL='urxvt -e tmux -u'
export EDITOR='/usr/bin/vim'
export VISUAL='/usr/bin/vim'
export PATH=$PATH":$HOME/.local/bin/i3scripts:/opt/"
export PATH=$PATH:/opt/:/home/kapper/.local/bin/
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
exec tmux
@@ -32,4 +34,8 @@ fi
eval "$(dircolors ~/.dir_colors)"
export LS_COLORS="di=1;34:ln=31;47:so=32:pi=33:ex=1;32:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43"
# Source a top-secret alias file
if [ -f ~/.bash_secrets ]; then
. ~/.bash_secrets
fi