This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# sd: easily mount mass storage devices. | |
# last modified: 2014/08/15 | |
# commands: none, '-m', '-u', or '--help'. | |
# visually exclude the following /dev/sd* device(s) from the listing: | |
# syntax example: "abc", to exclude drives a,b, and c. | |
# use "-" to show everything. | |
exclude="a" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim: ft=conf nospell | |
browser /usr/bin/google-chrome-stable | |
external-url-viewer /usr/bin/urlview | |
always-display-description true | |
goto-next-feed no | |
save-path ~/KuaiPan/Downloads/rss/ | |
text-width 78 | |
cache-file ~/KuaiPan/Downloads/rss/config/cache.db | |
max-items 500 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM traefik:camembert | |
ADD traefik.toml . | |
EXPOSE 80 | |
EXPOSE 8080 | |
EXPOSE 443 |