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
#!/usr/bin/env bash | |
# udisks_functions: https://bbs.archlinux.org/viewtopic.php?id=109307 | |
# last modified: 2012/08/05 | |
# functions: sdm, sdu, mcm, mcu, srm, sru, fdm, and fdu. | |
# aliases: sd*m, sd*u, mc*m, and mc*u. | |
# options: | |
enable_device="true" | |
enable_mmc="true" |
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
#!/bin/bash | |
# tarcinch: simple tarsnap backups with bash. | |
# run with a systemd.timer, cron, or manually. | |
# requires: bash, coreutils, grep, and tarsnap. | |
# https://gist.github.com/ledti/b8bc6bd0200b7c91ea58 | |
# last modified: 2017/05/30 | |
# * monthly backups on the first of the month (if enabled). |