Skip to content

Instantly share code, notes, and snippets.

@imaami
Created March 17, 2020 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imaami/88fb77e509b4e6cce88143e04b9262f5 to your computer and use it in GitHub Desktop.
Save imaami/88fb77e509b4e6cce88143e04b9262f5 to your computer and use it in GitHub Desktop.
Launch a fresh Folding@home web control UI
#!/bin/sh
#
# The Folding@home Web Control UI seems to bug out
# frequently (at least on Chrome). It'll go into a
# page refresh loop from which it will not recover
# until the browser cache is cleared manually.
#
# This script launches a fresh Chrome window using
# app mode and incognito to eliminate any leftover
# cached data. If the UI bugs out, just ctrl-w the
# fucker and use this script to conveniently avoid
# having to actually fix anything.
#
# You may want to adjust --window-size; YMMV.
#
exec google-chrome --high-dpi-support=1 \
--force-device-scale-factor=1 \
--incognito \
--window-size=976,852 \
--app=https://client.foldingathome.org/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment