Compare commits

..

No commits in common. "1e653af4626d618f5e28d1b811303ff80b8a8fb1" and "ca48386e2278aa9cef1f8cfbdbf2d42543277567" have entirely different histories.

2 changed files with 6 additions and 11 deletions

View File

@ -66,10 +66,6 @@ smartresize() {
mogrify -path "$3" -filter Triangle -define filter:support=2 -thumbnail "$2" -unsharp 0.25x0.08+8.3+0.045 -dither None -posterize 136 -quality 82 -define jpeg:fancy-upsampling=off -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB "$1" mogrify -path "$3" -filter Triangle -define filter:support=2 -thumbnail "$2" -unsharp 0.25x0.08+8.3+0.045 -dither None -posterize 136 -quality 82 -define jpeg:fancy-upsampling=off -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB "$1"
} }
re() {
git clone ssh://git@git.rayelliott.dev:3222/rayelliott/"$1".git $2
}
mc() { mc() {
mkdir "$1" && cd "$1" mkdir "$1" && cd "$1"
} }

13
profile
View File

@ -1,11 +1,10 @@
export SHELL_CONFIG="$SHELL_CONFIG:.profile"
export EDITOR=/usr/bin/vim export EDITOR=/usr/bin/vim
export BROWSER=/usr/bin/qutebrowser export BROWSER=/usr/bin/qutebrowser
ruby_path=$(ruby -r rubygems -e "puts Gem.user_dir")/bin export PATH=~/.npm-global/bin:$PATH
yarn_path=$(yarn global bin) ruby_path=$(ruby -r rubygems -e "puts Gem.user_dir")
export PATH=$ruby_path/bin:$PATH
export PATH="$HOME/.bin:$HOME/.local/bin:$yarn_path:$ruby_path:$PATH" export PATH=~/.bin:~/.bin/bin:~/.local/bin:$PATH
# https://developers.google.com/web/tools/puppeteer/troubleshooting # https://developers.google.com/web/tools/puppeteer/troubleshooting
export CHROME_DEVEL_SANDBOX=/usr/lib/chromium/chrome-sandbox export CHROME_DEVEL_SANDBOX=/usr/lib/chromium/chrome-sandbox
@ -24,11 +23,11 @@ stty -ixon
export AUTOENV_ENV_FILENAME=.in export AUTOENV_ENV_FILENAME=.in
export AUTOENV_ENV_LEAVE_FILENAME=.out export AUTOENV_ENV_LEAVE_FILENAME=.out
export AUTOENV_ENABLE_LEAVE=1 export AUTOENV_ENABLE_LEAVE=1
[ -f "$HOME/.src/autoenv/activate.sh" ] && . "$HOME/.src/autoenv/activate.sh" source "$HOME/.src/autoenv/activate.sh"
# custom aliases # custom aliases
[ -f "$HOME/.config/profile/aliases.sh" ] && . "$HOME/.config/profile/aliases.sh" [ -f "$HOME/.config/profile/aliases.sh" ] && . "$HOME/.config/profile/aliases.sh"
[ -f "$HOME/.config/broot/launcher/bash/br" ] && . /home/ray/.config/broot/launcher/bash/br [ -f "$HOME/.config/broot/launcher/bash/br" ] && source /home/ray/.config/broot/launcher/bash/br
# vim: filetype=sh # vim: filetype=sh