start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/env python | |
# | |
# Makes a wav file out of owon oscilloscope waveform save file. | |
# Tested with SDS6062 only. | |
# | |
# Used: | |
# http://bikealive.nl/owon-bin-file-format.html and | |
# http://bikealive.nl/tl_files/EmbeddedSystems/Test_Measurement/owon/OWON%20Oscilloscope%20PC%20Guidance%20Manual.pdf | |
# |
;; No need to set arg's & optional's args to nil. Just doing it, #debug purpose | |
(defadvice kill-whole-line (around screwdriver-kill-wl (&optional arg)) | |
(setq arg nil) | |
(message "disable kill-whole-line")) | |
(defadvice kill-rectangle (around screwdriver-kill-rectangle (start end &optional fill)) | |
(setq start nil) | |
(setq end nil) | |
(message "disable kill-rectangle")) |