Skip to content

Instantly share code, notes, and snippets.

@cetinajero
Last active April 11, 2023 01:39
Show Gist options
  • Save cetinajero/dc9ff84b8a125345ef0161488f794210 to your computer and use it in GitHub Desktop.
Save cetinajero/dc9ff84b8a125345ef0161488f794210 to your computer and use it in GitHub Desktop.
.bash_profile
alias ll='ls -lahG'
alias lowercase='for f in *; do mv "$f" "$f.tmp"; mv "$f.tmp" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done'
alias apple-wireless-mouse='mouseid=$(xinput --list | perl -n -e 's@.*Edgar Tinajero.*Mouse.*id=([0-9]+).*@$1@ and print') && xinput --set-prop $mouseid 'libinput Natural Scrolling Enabled' 1 && xinput set-button-map $mouseid 1 1 3'
function rdpclient { cat ~/.bash_secrets | grep $1 | awk '{print $NF}' | rdesktop -f -N -x m -u Administrator -p - -r disk:share=$HOME/sap $1 & }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment