update shabangs

This commit is contained in:
Bryson Steck 2022-11-16 19:01:14 -07:00
parent 6cbfdc93d9
commit 1fad9afb72
12 changed files with 20 additions and 20 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# #
# 00-global.bash # 00-global.bash
# define global bash things # define global bash things

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# #
# 01-aliases.bash # 01-aliases.bash
# bryson's bash aliases # bryson's bash aliases
@ -63,11 +63,11 @@ alias nolibrary='xrandr --output HDMI-A-0 --off --output eDP --auto'
# bash navigation # bash navigation
alias add-alias='vim ~/.bash/01-aliases.bash; . ~/.bash_profile' alias add-alias='vim ~/.bash/01-aliases.bash; . ~/.bash_profile'
function search() { search() {
find . -type f -exec grep ${1} {} \; find . -type f -exec grep ${1} {} \;
} }
function ssh-pixel() { sshpixel() {
ssh -p 8022 uO_14O@${1} ssh -p 8022 uO_14O@${1}
} }

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# #
# 02-prompt.bash # 02-prompt.bash
# bryson's gnarly bash prompt config # bryson's gnarly bash prompt config

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# #
# 03-boot.bash # 03-boot.bash
# startup scripts for systems # startup scripts for systems

View file

@ -1,3 +1,5 @@
#!/bin/bash
# if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then # if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then
# exec tmux new-session -A -s ssh # exec tmux new-session -A -s ssh
# fi # fi

View file

@ -1,3 +1,4 @@
#!/bin/bash
# .bash_profile # .bash_profile
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin
@ -13,4 +14,5 @@ fi
export PATH export PATH
complete -cf doas complete -cf doas
export PATH=$PATH:/home/bryson/.spicetify export PATH=$PATH:/home/bryson/.spicetify
export EDITOR=/usr/bin/vim
#source "/home/bryson/git/emsdk/emsdk_env.sh" #source "/home/bryson/git/emsdk/emsdk_env.sh"

View file

@ -1,6 +1,8 @@
#!/bin/bash
# get custom bash scripts # get custom bash scripts
if [[ -d ~/.bash/ ]]; then if [ -d ~/.bash/ ]; then
for f in ~/.bash/*; do source $f; done for f in ~/.bash/*; do . $f; done
fi fi
# install asdf # install asdf

2
dwm

@ -1 +1 @@
Subproject commit 7516b03d7d3c7844ebdab69cf731d59ea2b3c84d Subproject commit c5738de01d3c8adccaf87842cd6efceafd795d98

View file

@ -1,7 +0,0 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
menupopup:not(.in-menulist){ --menu-color: var(--arrowpanel-color,white) !important; }
menupopup {
--panel-padding: 5px 0 !important;
}

View file

@ -63,6 +63,7 @@ nnoremap <leader>w :w<CR>
nnoremap <leader>q :q<CR> nnoremap <leader>q :q<CR>
nnoremap <leader>! :q!<CR> nnoremap <leader>! :q!<CR>
nnoremap <leader>x :wq<CR> nnoremap <leader>x :wq<CR>
nnoremap <leader>b :e#<CR>
nnoremap <leader>h :wincmd h<CR> nnoremap <leader>h :wincmd h<CR>
nnoremap <leader>j :wincmd j<CR> nnoremap <leader>j :wincmd j<CR>
nnoremap <leader>k :wincmd k<CR> nnoremap <leader>k :wincmd k<CR>

View file

@ -65,7 +65,7 @@ xbanish &
numlockx & numlockx &
# start keepassxc for passwords # start keepassxc for passwords
keepassxc & keepassxc ~/.passwords/Passwords.kdbx &
# set up wallpapers # set up wallpapers
#wallpapers.sh & #wallpapers.sh &

View file

@ -55,7 +55,7 @@ pacmd set-default-sink alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink &
pacmd set-sink-volume alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink 0 & pacmd set-sink-volume alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink 0 &
# set up wallpaper # set up wallpaper
feh --bg-fill ~/Pictures/Wallpapers/spacesuit-dithered.png feh --bg-fill ~/git/wallpapers-exorcist/gruvbox/volcano-landscape.jpg
# apply Xresources # apply Xresources
xrdb -merge ~/.Xresources xrdb -merge ~/.Xresources
@ -64,13 +64,13 @@ xrdb -merge ~/.Xresources
xbanish & xbanish &
# turn tearfree on # turn tearfree on
xrandr --output eDP --auto --set TearFree on & xrandr --output eDP --auto --set TearFree on --output HDMI-A-0 --set TearFree on &
# run battery checker # run battery checker
~/bin/battery.pl & ~/bin/battery.pl &
# start keepassxc for passwords # start keepassxc for passwords
keepassxc & keepassxc ~/.passwords/Passwords.kdbx &
# start dwm # start dwm
redshift & redshift &