Add urlview rules to mail & update list of software
This commit is contained in:
parent
643e25ec6e
commit
e22b5ee627
2 changed files with 82 additions and 18 deletions
70
SOFTWARE.md
70
SOFTWARE.md
|
@ -2,15 +2,30 @@
|
||||||
|
|
||||||
## General
|
## General
|
||||||
|
|
||||||
* Calibre
|
* calibre
|
||||||
* LibreOffice
|
* libreoffice
|
||||||
* mpv
|
* owncloud-client
|
||||||
* Thunderbird
|
* keepassx2
|
||||||
* ownCloud client
|
* pulseaudio
|
||||||
* KeepassX2
|
* pavucontrol
|
||||||
* PulseAudio+pavucontrol
|
|
||||||
* Fonts (ttf-dejavu, noto-fonts, powerline-fonts)
|
|
||||||
* LaTeX (texlive-most)
|
* LaTeX (texlive-most)
|
||||||
|
* Gimp
|
||||||
|
|
||||||
|
### Fonts
|
||||||
|
|
||||||
|
* noto-fonts-*
|
||||||
|
* powerline-fonts
|
||||||
|
* ttf-liberation
|
||||||
|
* ttf-dejavu
|
||||||
|
* ttf-droid
|
||||||
|
* ttf-hack
|
||||||
|
* ttf-inconsolata
|
||||||
|
|
||||||
|
## Media
|
||||||
|
|
||||||
|
* mpv
|
||||||
|
* mpd
|
||||||
|
* ncmpcpp
|
||||||
|
|
||||||
## Browsers
|
## Browsers
|
||||||
|
|
||||||
|
@ -22,17 +37,25 @@
|
||||||
* Reddit Enhancement Suite
|
* Reddit Enhancement Suite
|
||||||
* uBlock Origin
|
* uBlock Origin
|
||||||
* Wappalyzer
|
* Wappalyzer
|
||||||
|
* Greasemonkey
|
||||||
|
* Stylish
|
||||||
|
* Postman (Chrome)
|
||||||
|
* Insomnia (Chrome)
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
* postman
|
|
||||||
* insomnia
|
|
||||||
* atom
|
|
||||||
* nodejs
|
* nodejs
|
||||||
* npm
|
* npm
|
||||||
|
* go
|
||||||
|
* atom editor
|
||||||
|
* sublime text 3
|
||||||
* mongodb
|
* mongodb
|
||||||
* postgresql
|
* postgresql
|
||||||
* go
|
* valgrind
|
||||||
|
* cppcheck
|
||||||
|
* shellcheck
|
||||||
|
* doxygen
|
||||||
|
* docker
|
||||||
|
|
||||||
### Global NPM packages
|
### Global NPM packages
|
||||||
|
|
||||||
|
@ -46,14 +69,25 @@
|
||||||
* termite
|
* termite
|
||||||
* weechat
|
* weechat
|
||||||
* zsh + zsh-completions
|
* zsh + zsh-completions
|
||||||
* screenfetch+scrot
|
* tmux
|
||||||
* OpenSSH
|
* openssh
|
||||||
|
* neovim
|
||||||
|
|
||||||
|
### Utilities
|
||||||
|
|
||||||
|
* unzip
|
||||||
|
* unrar
|
||||||
|
* p7zip
|
||||||
|
* wget
|
||||||
|
* ncdu
|
||||||
|
* tree
|
||||||
|
* pass
|
||||||
|
* screenfetch
|
||||||
* htop
|
* htop
|
||||||
* lftp
|
* lftp
|
||||||
* nvim
|
|
||||||
* unzip
|
### Mail
|
||||||
* tmux
|
|
||||||
* ncdu
|
|
||||||
* (neo)mutt
|
* (neo)mutt
|
||||||
* notmuch
|
* notmuch
|
||||||
* isync (aka mbsync)
|
* isync (aka mbsync)
|
||||||
|
|
30
mail/.urlview
Normal file
30
mail/.urlview
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
###############################################################################
|
||||||
|
# Urlview configuration file.
|
||||||
|
# man urlview <Man page>
|
||||||
|
#
|
||||||
|
# Put this file in: $HOME/.urlview
|
||||||
|
# Put url_handler.sh in: /usr/bin
|
||||||
|
#
|
||||||
|
# You can call 'urlview' while in 'mutt' by pressing the Ctrl b keys.
|
||||||
|
# Put these macros in your $HOME/.muttrc file.
|
||||||
|
#
|
||||||
|
# macro index \cb |urlview\n
|
||||||
|
# macro pager \cb |urlview\n
|
||||||
|
#
|
||||||
|
# You can call 'urlview' while in 'tin' by pressing | then a for article,
|
||||||
|
# put urlview as the pipe command.
|
||||||
|
#
|
||||||
|
# Regular expression to use to match URLs.
|
||||||
|
|
||||||
|
#REGEXP (((http|https|ftp|gopher)|mailto):(//)?[^ >"\t]*|www\.[-a-z0-9.]+)[^ .,;\t>">\):]
|
||||||
|
REGEXP (((http|https|ftp|gopher)|mailto)[.:][^ >"\t]*|www\.[-a-z0-9.]+)[^ .,;\t>">\):]
|
||||||
|
|
||||||
|
# Command to invoke for selected URL. Use lynx, netscape, or url_handler.sh
|
||||||
|
# shell script. Alternatively, you can leave COMMAND unset and set the BROWSER
|
||||||
|
# environment variable instead.
|
||||||
|
|
||||||
|
#COMMAND lynx %s
|
||||||
|
#COMMAND netscape -remote 'openURL(%s)'
|
||||||
|
#COMMAND url_handler.sh
|
||||||
|
COMMAND /usr/bin/xdg-open %s
|
||||||
|
|
Loading…
Reference in a new issue