How to hide "Files" app?

I am using my nextcloud on my synology only for Mail, calender and contacts. Therefore I want to hide the “Files” app, but I couldn’t find a possiblity.

How can I do that?

Or maybe Enable only for certain groups… But I do not know how to do it.
If you use :
sudo -u www-data php occ app:disable files
it’s good or not ?

if the one from above doesn’t work (though i hope it does) try: download app “app order” and uncheck “files” under settings.

4 Likes

Another way in NC 25 is to enable the Custom CSS app and put this in your CSS box under Design:

/* remove files menu */
li[data-app-id="files"] {
  display: none;
  visibility : hidden;
  height : 0px !important;
  width : 0px !important;
  margin : 0px;
  padding : 0px;
  overflow : hidden;
}