Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 476 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 476 Bytes

Folding @ Home Solus eopkg configs

eopkg configuration files for installing Folding @ Home Client, Control, and Viewer on Solus.

install:

./install.sh
# runs:
for component in "client" "control" "viewer"; do
  sudo eopkg bi --ignore-safety  $component/pspec.xml
  sudo eopkg it --ignore-safety fah${component}*.eopkg
done

uninstall:

./uninstall.sh
# runs:
for component in "client" "control" "viewer"; do
  sudo eopkg remove fah$component
done