8e4ea1c33fb1
More
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 05 Jun 2019 11:01:24 -0400 |
parents | c15e0d8e066d |
children | e6377c64c49b |
branches/tags | (none) |
files | bin/tea stumpwmrc vim/vimrc |
Changes
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/tea Wed Jun 05 11:01:24 2019 -0400 @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +set -euo pipefail + +sleep "$1"s +say 'The tea is ready.'
--- a/stumpwmrc Tue May 21 13:40:33 2019 -0400 +++ b/stumpwmrc Wed Jun 05 11:01:24 2019 -0400 @@ -258,7 +258,7 @@ (run-or-raise "firefox" '(:class "Firefox"))) -;;;; EQ Timers ---------------------------------------------------------------- +;;;; Timers ------------------------------------------------------------------- (defparameter *pop-timer-minutes* nil) (defparameter *pop-timer-seconds* nil) @@ -291,6 +291,10 @@ (setf *pop-timer-minutes* minutes *pop-timer-seconds* seconds)) +(defcommand tea-timer (seconds) + ((:number "Seconds: ")) + (run-shell-command (format nil "tea ~D" seconds))) + ;;;; Key Mapping -------------------------------------------------------------- ;;; Conventions: @@ -381,6 +385,7 @@ ("s-H-s" "restore-from-file ~/src/dotfiles/stumpwm/streaming.lisp")) (define-top-keys ;; timers + ("s-F7" "tea-timer") ("s-F9" "run-pop-timer") ("s-F10" "set-pop-timer"))
--- a/vim/vimrc Tue May 21 13:40:33 2019 -0400 +++ b/vim/vimrc Wed Jun 05 11:01:24 2019 -0400 @@ -271,6 +271,8 @@ silent! digr // 9585 "U+2571=╱ BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT silent! digr \\ 9586 "U+2572=╲ BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT +silent! digr \|\| 8214 "U+2016=‖ DOUBLE VERTICAL LINE + " }}} " Convenience mappings ---------------------------------------------------- {{{ @@ -3323,6 +3325,23 @@ let g:terminal_scrollback_buffer_size = 10000 let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1 set inccommand=nosplit + + let g:terminal_color_0 = '#070807' + let g:terminal_color_1 = '#e93f40' + let g:terminal_color_2 = '#88dc02' + let g:terminal_color_3 = '#fb7d01' + let g:terminal_color_4 = '#0abcfe' + let g:terminal_color_5 = '#fe5691' + let g:terminal_color_6 = '#76dff3' + let g:terminal_color_7 = '#f4f4f4' + let g:terminal_color_8 = '#5d5d5d' + let g:terminal_color_9 = '#e93f40' + let g:terminal_color_10 = '#9df903' + let g:terminal_color_11 = '#fadf31' + let g:terminal_color_12 = '#40cdfe' + let g:terminal_color_13 = '#fe2b74' + let g:terminal_color_14 = '#09cef2' + let g:terminal_color_15 = '#fefffe' else set encoding=utf-8 endif