Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am onelesd on github.
  • I am onelesd (https://keybase.io/onelesd) on keybase.
  • I have a public key whose fingerprint is 65AE FBB2 A871 A692 8BBA 0D70 2F98 491E 26D8 F7E6

To claim this, I am signing this object:

@onelesd
onelesd / .tmux.conf
Created January 13, 2018 18:01
tmux config; remaps bind-key to same as screen
# nice colors
set -g default-terminal screen-256color
# size windows to smalles client _actively_ viewing current window
setw -g aggressive-resize on
# set to zsh
set-option -g default-shell /usr/local/bin/zsh
# we like screen's ctrl-a better
@onelesd
onelesd / slack.applescript
Last active August 29, 2015 14:13
Focus slack window and next unread conversation
activate application "Slack"
tell application "System Events" to tell process "Slack"
key code 125 using {option down, shift down}
end tell
-- use with FastScripts - http://www.red-sweater.com/fastscripts/
-- FastScripts pauses script execution before key presses until
-- you've released the hotkey meta character. This makes it more
-- reliable than just running it as a Service via a shortcut in
-- System Preferences.