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.

nullstalgia

Members
  • Joined

  • Last visited

  1. #!/bin/bash #description=Checks if the chosen folder is over a certain amount, alerts you if so. #arrayStarted=true #name=Warn if Folder too big #clearLog=true #noParity=true # Add more text to name if you need several? Or just add onto the script. warningMessage="Your appdata folder is getting too big!" checkedPath="/mnt/disk1/appdata/" # Size in gigabytes that you want to be warned at and above. let warningSize=5 # ---------------- let "warningSize = warningSize * 1000000" # https://stackoverflow.com/a/11518088 duSize=$(du -sk $checkedPath | awk '{print$1}') if (( duSize > warningSize )); then /usr/local/emhttp/webGui/scripts/notify -i alert -s "$warningMessage" -d "$(du -hs $checkedPath)" fi #echo ${duSize} #echo ${warningSize} echo Finished Works with the User Scripts add-on for scheduling!
  2. nullstalgia changed their profile photo
  3. Oh, perfect! I didn't know how to send notifications, so this is a great starting point. I'll try to remember to post my final script here in case any one searches for this topic in the future.
  4. Hi! I have a docker container that slowly fills up a folder, and currently clearing it manually is the best solution while I write a script to handle it for me. Is there a way to cause a dashboard pop-up if a folder goes above say 5GB used or maybe a % of the disk? (I searched the forums and didn't see a similar question, sorry if it's a repeat!)

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.