update shabangs
This commit is contained in:
parent
6cbfdc93d9
commit
1fad9afb72
12 changed files with 20 additions and 20 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# 00-global.bash
|
||||
# define global bash things
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# 01-aliases.bash
|
||||
# bryson's bash aliases
|
||||
|
@ -63,11 +63,11 @@ alias nolibrary='xrandr --output HDMI-A-0 --off --output eDP --auto'
|
|||
# bash navigation
|
||||
alias add-alias='vim ~/.bash/01-aliases.bash; . ~/.bash_profile'
|
||||
|
||||
function search() {
|
||||
search() {
|
||||
find . -type f -exec grep ${1} {} \;
|
||||
}
|
||||
|
||||
function ssh-pixel() {
|
||||
sshpixel() {
|
||||
ssh -p 8022 uO_14O@${1}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# 02-prompt.bash
|
||||
# bryson's gnarly bash prompt config
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# 03-boot.bash
|
||||
# startup scripts for systems
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
# if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then
|
||||
# exec tmux new-session -A -s ssh
|
||||
# fi
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/bin/bash
|
||||
# .bash_profile
|
||||
|
||||
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin
|
||||
|
@ -13,4 +14,5 @@ fi
|
|||
export PATH
|
||||
complete -cf doas
|
||||
export PATH=$PATH:/home/bryson/.spicetify
|
||||
export EDITOR=/usr/bin/vim
|
||||
#source "/home/bryson/git/emsdk/emsdk_env.sh"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# get custom bash scripts
|
||||
if [[ -d ~/.bash/ ]]; then
|
||||
for f in ~/.bash/*; do source $f; done
|
||||
if [ -d ~/.bash/ ]; then
|
||||
for f in ~/.bash/*; do . $f; done
|
||||
fi
|
||||
|
||||
# install asdf
|
||||
|
|
2
dwm
2
dwm
|
@ -1 +1 @@
|
|||
Subproject commit 7516b03d7d3c7844ebdab69cf731d59ea2b3c84d
|
||||
Subproject commit c5738de01d3c8adccaf87842cd6efceafd795d98
|
|
@ -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;
|
||||
}
|
|
@ -63,6 +63,7 @@ nnoremap <leader>w :w<CR>
|
|||
nnoremap <leader>q :q<CR>
|
||||
nnoremap <leader>! :q!<CR>
|
||||
nnoremap <leader>x :wq<CR>
|
||||
nnoremap <leader>b :e#<CR>
|
||||
nnoremap <leader>h :wincmd h<CR>
|
||||
nnoremap <leader>j :wincmd j<CR>
|
||||
nnoremap <leader>k :wincmd k<CR>
|
||||
|
|
|
@ -65,7 +65,7 @@ xbanish &
|
|||
numlockx &
|
||||
|
||||
# start keepassxc for passwords
|
||||
keepassxc &
|
||||
keepassxc ~/.passwords/Passwords.kdbx &
|
||||
|
||||
# set up wallpapers
|
||||
#wallpapers.sh &
|
||||
|
|
|
@ -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 &
|
||||
|
||||
# set up wallpaper
|
||||
feh --bg-fill ~/Pictures/Wallpapers/spacesuit-dithered.png
|
||||
feh --bg-fill ~/git/wallpapers-exorcist/gruvbox/volcano-landscape.jpg
|
||||
|
||||
# apply Xresources
|
||||
xrdb -merge ~/.Xresources
|
||||
|
@ -64,13 +64,13 @@ xrdb -merge ~/.Xresources
|
|||
xbanish &
|
||||
|
||||
# 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
|
||||
~/bin/battery.pl &
|
||||
|
||||
# start keepassxc for passwords
|
||||
keepassxc &
|
||||
keepassxc ~/.passwords/Passwords.kdbx &
|
||||
|
||||
# start dwm
|
||||
redshift &
|
||||
|
|
Loading…
Add table
Reference in a new issue