7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
# Launch Emacs in terminal mode with Elfeed RSS reader
|
|
|
|
EMACS_NO_DESKTOP=1 emacs -nw --eval "(progn
|
|
(require 'elfeed nil t)
|
|
(elfeed)
|
|
(elfeed-update))" |