Fix quirks on mac

main
Rob Muhlestein 2 years ago
parent 372b0bdc3f
commit cc2cfc1358

BIN
.DS_Store vendored

Binary file not shown.

@ -117,7 +117,6 @@ pathprepend() {
# remember last arg will be first in path
pathprepend \
/usr/local/bin \
/usr/local/*/bin \
"$HOME/.local/bin" \
"$GHREPOS/cmd-"* \
"$SCRIPTS"
@ -140,7 +139,7 @@ pathappend \
# ------------------------------ cdpath ------------------------------
export CDPATH=".:$GHREPOS:$DOT:$REPOS:/media/$USER:$HOME"
export CDPATH=".:$GHREPOS:$DOTFILES:$REPOS:/media/$USER:$HOME"
# ------------------------ bash shell options ------------------------
@ -226,7 +225,7 @@ alias view='vi -R' # which is usually linked to vim
alias c='printf "\e[H\e[2J"'
alias clear='printf "\e[H\e[2J"'
alias coin="clip '(yes|no)'"
alias grep="grep -P"
alias grep="pcregrep"
alias minidockenv=". <(minikube docker-env)"
alias top=bashtop
alias iam=live

@ -0,0 +1,2 @@
#!/bin/bash
sudo gem install twurl

@ -2302,7 +2302,9 @@ SCAN_FOR_BURIED_NEWS_REFS:FALSE
# If you use xli, you may want to add the -quiet flag.
#
#XLOADIMAGE_COMMAND:xli %s &
XLOADIMAGE_COMMAND:xdg-open %s &
# https://github.com/rwxrob/dot/blob/main/scripts/open
XLOADIMAGE_COMMAND:open %s &
.h2 VIEWER
# MIME types may be assigned to external viewers using

@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
count=1
if test -n "$1"; then

@ -7,9 +7,12 @@
# Finally, it assumes it is a URL, ensures begins with https:// and
# opens it in a new window with Firefox.
use v5.14;
$_ = shift;
`env > /tmp/env`
# git repo
if (not $_) {
my $gh = (grep {/github/ && s,git@,, && s,:,/, && s/\.git$//}

@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
shopt -s extglob
chat "${1//+($'\n')/ }"
twitter update "$@"

@ -0,0 +1,4 @@
#!/usr/bin/env bash
VBoxHeadless --startvm control &
VBoxHeadless --startvm node1 &
VBoxHeadless --startvm node2 &
Loading…
Cancel
Save