my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

zora: add slack as xdg-open target

+18 -3
-3
bin/xdg-open
··· 6 6 *.pdf) 7 7 exec zathura "$1" 8 8 ;; 9 - slack) 10 - exec slack "$1" 11 - ;; 12 9 *) 13 10 exec /usr/bin/xdg-open "$@" 14 11 ;;
+3
bin/zora/slack
··· 1 + #!/bin/sh 2 + 3 + xdg-open slack "$@"
+15
bin/zora/xdg-open
··· 1 + #!/bin/sh 2 + case "${1%%:*}" in 3 + http|https) 4 + exec firefox "$1" 5 + ;; 6 + *.pdf) 7 + exec zathura "$1" 8 + ;; 9 + slack) 10 + exec chromium --app=https://digitalocean.slack.com "$1" 11 + ;; 12 + *) 13 + exec /usr/bin/xdg-open "$@" 14 + ;; 15 + esac