no more emacs splash
This commit is contained in:
parent
57d1532065
commit
6501f3c9f3
3 changed files with 4 additions and 2 deletions
1
.emacs
1
.emacs
|
@ -14,7 +14,6 @@
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(custom-enabled-themes '(tsdh-dark))
|
'(custom-enabled-themes '(tsdh-dark))
|
||||||
'(initial-buffer-choice "~/.esplash")
|
|
||||||
'(tool-bar-mode nil)
|
'(tool-bar-mode nil)
|
||||||
'(menu-bar-mode nil))
|
'(menu-bar-mode nil))
|
||||||
|
|
||||||
|
|
2
bin/mark
2
bin/mark
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
grep -l "$1" ~/.local/share/catgirl/log/*/*/* | shuf -n 30 | tr "\n" " " | xargs cat | grep '>' > /tmp/markylol
|
grep -l "$1" ~/.local/share/catgirl/log/*/*/* | shuf -n 1 | tr "\n" " " | xargs cat | grep '>' > /tmp/markylol
|
||||||
|
|
||||||
nextword(){ awk '{for (I=1;I<=NF;I++) if ($I == "'$1'") {print $(I+1)};}' /tmp/markylol | sed '/^$/d' | shuf -n 1 ; }
|
nextword(){ awk '{for (I=1;I<=NF;I++) if ($I == "'$1'") {print $(I+1)};}' /tmp/markylol | sed '/^$/d' | shuf -n 1 ; }
|
||||||
|
|
||||||
|
|
3
bin/rstart
Executable file
3
bin/rstart
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
mark $(echo ~/.local/share/catgirl/log/*/*/* | shuf -n1 | xargs grep '>' | shuf -n1 | cut -d' ' -f3) | tr -d "\n"
|
Loading…
Reference in a new issue