mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-01 20:46:12 +01:00
15 lines
467 B
Bash
15 lines
467 B
Bash
#!/bin/bash
|
|
|
|
KEY="${1}"
|
|
|
|
echo "${KEY}" >> /tmp/log.autofs
|
|
|
|
if [ "${KEY}" == "/mnt/data/SteamLibrary/steamapps/common/The Witcher 3 - overlayfs/merged" ]; then
|
|
|
|
|
|
cd '/mnt/data/SteamLibrary/steamapps/common/The Witcher 3 - overlayfs'
|
|
|
|
OPTIONS="`'/mnt/data/SteamLibrary/steamapps/common/The Witcher 3 - overlayfs/get-options.bash'`"
|
|
|
|
echo "-fstype=auto,${OPTIONS} overlayfs:/mnt/data/SteamLibrary/steamapps/common/The Witcher 3 - overlayfs/merged"
|
|
fi |