Skip to content

Instantly share code, notes, and snippets.

View xazax's full-sized avatar
:bowtie:
Working from home

Daniel xazax

:bowtie:
Working from home
  • Stockholm, Sweden
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

tmux cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@xazax
xazax / screenshot-select
Created January 3, 2019 17:43 — forked from seanbeaton/screenshot-select
create-screenshot-scrot
#!/bin/bash
# Clear clipboard (can't be pasting any passwords if we try to paste too fast).
echo "" | xclip -selection clipboard
mkdir -p $HOME/Dropbox/shots/
TSTAMP=`date '+%Y-%m-%d-%H-%M-%S'`
IMAGEPATH=$HOME/Dropbox/shots/Screenshot-$TSTAMP.png