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/sh | |
| find "$1" -type f -exec md5sum "{}" \; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <joystick configversion="19" appversion="3.1.4"> | |
| <!--The SDL name for a joystick is included for informational purposes only.--> | |
| <sdlname>USB gamepad</sdlname> | |
| <!--The Unique ID for a joystick is included for informational purposes only.--> | |
| <uniqueID>030000001f08000001e4000010010000</uniqueID> | |
| <profilename>SNES Minecraft</profilename> | |
| <keyPressTime>10</keyPressTime> | |
| <sets> | |
| <set index="3"> |
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/sh | |
| charge_now=$(cat /sys/class/power_supply/BAT0/charge_now) | |
| charge_full=$(cat /sys/class/power_supply/BAT0/charge_full) | |
| echo $((100 * $charge_now / $charge_full))% |
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/python3 | |
| # Copyright 2022 Vulcalien | |
| # | |
| # License: http://creativecommons.org/publicdomain/zero/1.0/ | |
| # To the extent possible under law, Vulcalien has waived all | |
| # copyright and related or neighboring rights to this work. | |
| # | |
| # Backup all public repositories for a GitHub user. | |
| # By default, forks are skipped. |