mimeapps cleanup; rss added

This commit is contained in:
Luke Smith 2019-03-12 21:20:17 -04:00
parent b74f98ede6
commit 1acd5c6218
9 changed files with 18 additions and 13 deletions

View file

@ -1,4 +0,0 @@
[Desktop Entry]
Type=Application
Name=feh image viewer
Exec=/usr/bin/feh %u

View file

@ -1,4 +0,0 @@
[Desktop Entry]
Type=Application
Name=Animated gif handler
Exec=/usr/bin/mpv --loop %u

View file

@ -1,4 +1,4 @@
[Desktop Entry]
Type=Application
Name=sxiv image viewer
Name=Image viewer
Exec=/usr/bin/sxiv -a %u

View file

@ -1,4 +1,4 @@
[Desktop Entry]
Type=Application
Name=Neomutt Mail
Name=Mail
Exec=/usr/local/bin/st -e neomutt %u

View file

@ -1,4 +1,4 @@
[Desktop Entry]
Type=Application
Name=Zathura PDF reader
Name=PDF reader
Exec=/usr/bin/zathura %u

View file

@ -0,0 +1,4 @@
[Desktop Entry]
Type=Application
Name=RSS feed addition
Exec=/usr/bin/env rssadd %U

View file

@ -1,4 +1,4 @@
[Desktop Entry]
Type=Application
Name=Neovim
Name=Text editor
Exec=/usr/local/bin/st -e nvim %u

View file

@ -1,4 +1,4 @@
[Desktop Entry]
Type=Application
Name=Transmission Addition
Name=Torrent
Exec=/usr/bin/env transadd %U

9
.scripts/tools/rssadd Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
! echo "$1" | grep "https*://\S\+\.[A-Za-z]\+\S*" >/dev/null &&
notify-send -i "$PIX/rss.svg" "That doesn't look like a full URL." && exit
RSSFILE="$HOME/.config/newsboat/urls"
if awk '{print $1}' "$RSSFILE" | grep "^$1$" >/dev/null; then
notify-send -i "$PIX/rss.svg" "You already have this RSS feed."
else
echo "$1" >> "$RSSFILE" && notify-send -i "$PIX/rss.svg" "RSS feed added."
fi