This file contains hidden or 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
<!-- Action map for the Sony Corp. DualShock 4 [CUH-ZCT2x] Preset - Triggers Accelerate and Brake --> | |
<ActionMap name="CUH-ZCT2x" device_type_id="{09CC054C-0000-0000-0000-504944564944}" priority="0"> | |
<!-- In Game Actions --> | |
<Action id="Accelerate"> | |
<Axis id="di_y_axis_rotation" type="uniDirPos" deadzone="0.0" saturation="1.0" /> | |
</Action> | |
<Action id="Brake"> | |
<Axis id="di_x_axis_rotation" type="uniDirPos" deadzone="0.0" saturation="1.0" /> | |
</Action> |
This file contains hidden or 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 | |
IPFS_KEY="portage-distfiles" | |
IPFS_DIR="/${IPFS_KEY}" | |
DIR=~/${IPFS_KEY}/ | |
echo "files: find new" | |
found=$(ipfs files ls ${IPFS_DIR}) | |
files=$(find ${DIR} -maxdepth 1 -type f -not \( -path '*/[@.]*' -o -iname '*.__download__*' -o -iname '*fail*' \) $(printf " -not -name %s " ${found})) |