October 14, 201114 yr Author We should add a configurable banner bar, where a user can select from a list of pre-configured banners (designed and voted upon by fellow unraid-ers) and also click an upload button to inject their own banner bar if needed.
October 14, 201114 yr have also simple features, but not implement within unmenu. How you did this? Sent from my LG-P990 using Tapatalk
October 14, 201114 yr Author Just install unmenu and make sure your /config/go file contains the following: #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & # Start unmenu /boot/unmenu/uu # Start Simple Features addon GUI installpkg /boot/extra/simpleFeatures.tgz # Start Addon Packages cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c Here is my complete go script which includes auto-start array, wait for array before MySQL start up, import custom banner.png for simple features, add custom cron-jobs (for rsync backup, etc.) and finally the cache dirs script at 3 levels deep: #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & # Start unmenu /boot/unmenu/uu # Start the array echo "Starting the array" sleep 5 /usr/bin/wget -q -O - localhost/update.htm >/dev/null /usr/bin/wget -O - --post-data 'startState=STOPPED&cmdStart=Start' localhost/update.htm >/dev/null # Wait for /mnt/cache to come online echo "Checking for /mnt/cache for mysqld" while ! test -d /mnt/cache;do sleep 5;done;sleep 5 # Start Simple Features addon GUI installpkg /boot/extra/simpleFeatures.tgz cp /boot/extra/banner.png /usr/local/emhttp/plugins/webGui/style # Start Addon Packages cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c # Append custom cronjobs to existing chmod +x /boot/extra/custom-cronjobs.sh crontab -l >/tmp/crontab grep -q "custom-cronjobs.sh" /tmp/crontab 1>/dev/null 2>&1 if [ "$?" = "1" ] then crontab -l | egrep -v "add new rsync jobs to unRAID:|custom-cronjobs.sh" >/tmp/crontab echo "# add custom, daily jobs to unRAID:" >>/tmp/crontab echo "0 2 * * * /boot/extra/custom-cronjobs.sh 1>/dev/null 2>&1" >>/tmp/crontab cp /tmp/crontab /var/spool/cron/crontabs/root- crontab /tmp/crontab fi /usr/sbin/cache_dirs -w -B -m 1 -M 10 -d 3 -e .mysql
October 14, 201114 yr Author Done You might have to move things around to accommodate the text at the top.
November 18, 201114 yr Just for clarity, does this just give you the nice banner with the 'cat in a hat'? Or do yuou also get the "Registered on" under the server version (left side) AND the "Server Uptime" on the right hand side?
November 22, 201114 yr Just for clarity, does this just give you the nice banner with the 'cat in a hat'? Or do yuou also get the "Registered on" under the server version (left side) AND the "Server Uptime" on the right hand side? This is just a skin, it doesn't change any of the information displayed by unRAID or unMenu (at least as far as I know).
December 6, 201114 yr Ah, I see. I only ask as in the screenshot provided by the OP, it shows "Registered on...." under where it says unRaid Pro in the top left and also shows "Uptime" in the top right. I dont have these on my unRaid Basic (Free). Obviously I understand the Registered on wont appeear as the free version of unRaid is not registered but the Uptime would be useful. Is that somethig that shows up when you pay for a registered version?
Archived
This topic is now archived and is closed to further replies.