Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

UnknownWitcher

Members
  • Joined

  • Last visited

Everything posted by UnknownWitcher

  1. Fun fact, applications tend to receive updates, which eventually results in a once-useful instructional video becoming obsolete, even their Unraid setup video isn't as useful as it once was after the 6.12 update which changed how storage is assigned to shares. This very fact is the reason I stumbled upon this post, in the hopes of finding others who may have got Authentik up and running.
  2. You could check the unraid version then define the location based on the minimum version required for the change. mover_path="/usr/local/bin/" if awk "BEGIN {exit !($(cat cat /etc/unraid-version | grep -Po '([0-9]+\.?)+') >= 6.12.6)}"; then mover_path="/usr/local/sbin/" fi if [[ ! -f "${mover_path}/mover.old" ]]; then mv "${mover_path}/mover" "${mover_path}/mover.old"; fi or run a function to return a boolean if changes are required for multiple parts of the script. function min_unraid_version { local min_version="6.12.6" if awk "BEGIN {exit !($(cat cat /etc/unraid-version | grep -Po '([0-9]+\.?)+') >= $min_version)}"; then true; return fi false } if min_unraid_version; then echo "/usr/local/sbin/" else echo "/usr/local/bin/" fi

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.