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.

Kurotaku

Members
  • Joined

  • Last visited

  1. Today I've released a big update for the plugin: you can now create subcategories, which means the categories.json structure has changed fundamentally (existing files get migrated automatically on update). Also added a new settings dialog per category, replacing the old buttons (looks much cleaner now and not so bloated), plus drag and drop for category ordering and script assignment. Mobile layout should also work flawlessly now, since it automatically switches to panel view below a certain screen width (Thx to Yusseiin for mentioning this in the User Scripts Thread, even tho I just saw it recently) If anything looks off after updating or configs don't work anymore, please let me know. I also changed the direction of default collapsed/expanded, so this is the only thing that has to be changed manually again after updating.
  2. They are alphabetically, with one exception. When you create sth ABC, rename it then to XYZ it will still be in the folder ABC and sorted as well like this. You can rearange them in categories with User Scripts Enhanced.
  3. The easiest solution would be install Stylus extension. Create a Stylesheet for: http://SERVER-IP/logging.htm body { background: #000; color: #fff; }
  4. Bash is a shell scripting language that's mainly used to automate commands and interact with the operating system. Basically the Linux equivalent of Windows batch files. Python is a programming language. You can write everything from small scripts to web servers, desktop applications, AI tools, and much more. User Scripts in Unraid executes Bash by default. If you want to run Python, you need to install Python separately and call your .py script explicitly. I've sent you a solution to your problem in Discord yesterday.
  5. I can recommend you to just get a Claude Account (or ChatGPT/Gemini) I personally use Claude for every big project only, even tho the limitations are extreme (after a couple of prompts you need to wait some hours) But claude is extremly good compared to all others I've used. User Scripts is bash, you will need to install python plugin to be able to use python scripts, my guess for you problem is that the bash is in a different environment. I personally have nearly every script only in python as its much easier to read/maintain and debug for me, I have them all on /mnt/cache/scripts/ That way I can also easily update/modify them on a friends server and mine without going over the UI of Unraid which is a bit annoying to use.
  6. I don't know how to fix this, but if you need a bypass solution for that, install the python plugin and create a python script which is called via user scripts. That way it will definitly work.
  7. With abort it would not delete the file, you would need to delete the file first manually, or create another script which deletes it. As for me I personally always just use python scripts. Means the bash script calling py /mnt/cache/scripts/script.py for me, bcs Its much better syntax and you can do much more with python, like checks if the programm already running etc. Just ask Claude/ChatGPT or Gemini to create scripts for stuff like that, thats what I do on daily basis. As I'm currently working on a big and maybe last major release version of User Scripts Enhanced, I will may in the future create a Standalone version for User Scripts Enhanced which allows then for me to implement stuff like this, that you can't start the same script at the same time by default. But that will take a lot time, and first my other 2 new Plugins must be finished :)
  8. pidof isn't reliable with scripts because basename might just return names like bash or sh. You could do sth rly simple like that (if you don't mind skipping syncs when another sync is running): #!/bin/bash lock_file="/tmp/scriptname.lock"; if [ -f "${lock_file}" ]; then echo "Script is already running"; exit 1; fi touch "${lock_file}"; echo "Starting rsync process..."; rm -f "${lock_file}";
  9. The path depends on the installation or portable folder on Windows I had it like: A:/Portables/FreeFileSync/Resources ... Default on Linux (all users installatoin) is: /opt/FreeFileSync/Resources/Registered.dat Its enough if ppl. know "FreeFileSync Folder/Resources/Registered.dat"
  10. Yea same is btw. for filezilla and several other containers which use openbox. It still not looks as good as the other FreeFileSync container but well, compromises have to be made, and for me its a total deal when I compare 15+ Minutes scan time (without donation) to ~2 Minutes scan time. Maybe add a small info in your post, where to get the Registered.dat bcs when I set it up It took me 30 Minutes to find it (and I was to stupid to check the Resources folder somehow) and AI just told me to rename the License Key file to that name... which obviously is wrong.
  11. Same issue here. 7.3.1 nothing works anymore. Also somehow already at 7.2.7 the "Excluded Shares" only worked for me if one single share is set, if more excluded were set it created Recycle Bins for all shares.
  12. Same for me, only thing I figured out is you can set the FreeFileSync theme to default and used an integrated openbox theme for dark themes: New Container Variable: GTK_THEME Value: Adwaita:dark
  13. Thank you for the reports its fixed now with the 2025.12.26 Update. (The Bug happens if you never changed & applied a value in the config so it was never generated)
  14. Thanks for the reports of the issue in the 2025.12.24 Update of USE @808mp5 And special thanks for showing me the reason for the issue. The issue was simple: the CSS field was NULL if the config file didn’t exist. Since the servers I used for development already had this file, I didn’t encounter the bug during development. Btw: Correct thread for the Bug Reports of USE would be: https://forums.unraid.net/topic/191294-plugin-user-scripts-enhanced
  15. I'm already working on a new version of the plugin, with a bit more features and some responsive fixes, but life is preventing me from being as productive as I used to be when I created it. Btw. you gave me indirect an idea how I can fix this multi line issue, so thanks 🤣

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.