Skip to content

Instantly share code, notes, and snippets.

View kbareis's full-sized avatar

Kyle Bareis kbareis

View GitHub Profile
@kbareis
kbareis / uninstallFAH.sh
Created April 16, 2020 01:41
Uninstall FAH (Folding@Home) removes the FAHClient, LaunchDaemons, and config files. More info at https://bareis.me/helping-a-good-cause-with-foldingathome
#!/bin/bash
# This script has been largely taken from Folding@Home's default removal script
# with modifications being only in shortening as we care less about prior names
# of items. We have added in an additional step in removing the config folder
# terminate FAHControl and FAHViewer if running
/usr/bin/killall -TERM FAHControl FAHViewer
# stop folding service
LaunchDaemon="/Library/LaunchDaemons/org.foldingathome.fahclient.plist"
@kbareis
kbareis / installFAH.sh
Last active April 16, 2020 01:45
Install FAH (Folding@Home) installs the FAHClient and modifies the configuration for idle use. More info at https://bareis.me/helping-a-good-cause-with-foldingathome
#!/bin/sh
# Make sure to grab a username and passkey from https://apps.foldingathome.org/getpasskey
# Variables to configure
Username="AddigyUser" # Modify with your username
Passkey="SomePasswordToChange" # Modify with your passkey
Team="259574" # Addigy Community Team ID
# Nothing else needs to be changed below this line :)