Adding bspwm, sxhkd, polybar, and tweaking .bashrc

This commit is contained in:
Dorian Wood 2021-04-03 08:08:24 -04:00
parent 86394eb054
commit 871dedd983
2 changed files with 4 additions and 15 deletions

View File

@ -6,3 +6,4 @@
EDITOR=emacsclient
PATH=~/.local/bin:$PATH
echo "Bash Profile Loaded"

View File

@ -17,20 +17,7 @@ then
fi
# Source the system-wide file.
source /etc/bashrc
# Adjust the prompt depending on whether we're in 'guix environment'.
if [ -n "$GUIX_ENVIRONMENT" ]
then
PS1='\u@\h \w [env]\$ '
else
PS1='\u@\h \w\$ '
fi
# Remap the capslock key because it's useless
setxkbmap -option caps:super
# Single press of the super key should send an Escape code
killall xcape 2>dev/null; xcape -e 'Super_L=Escape'
source /etc/bash.bashrc
# Aliases
# ALL THE COLORS
@ -45,7 +32,8 @@ alias \
cp='cp -iv' \
mv='mv -iv' \
rm='rm -vI' \
..='cd ..'
..='cd ..' \
z='zathura'
# du sort by size please
alias du='du -hs * | sort -h'