-
-
Notifications
You must be signed in to change notification settings - Fork 242
-
Alsalam Alykom
How to decrease height of the right click menu or group items for the same apps to see small right click menu
thank you in advance
image
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 4 comments 4 replies
-
Hi, I'll answer you even if I'm not an expert user. From what I see, the biggest problem is given by the numerous programs that you have installed and that have added their entries to the context menu. There are many ways to set the menu, creating new menu entries and moving the current entries, compacting the entries of the various programs such as Winrar that can be summarized in a single entry by winrar itself, or removing the entries themselves that you don't need anyway. I removed all the Adobe entries, it doesn't mean deleting them but not viewing them, while I summarized the PowerToys entries in a single "PowerToys" menu. Ultimately you have to decide how you want your menu, the tools available are there and there are also several discussions, even very recent ones. An example:
P.S. I prefer the menu so compact, but normally there is more space between one item and another, like yours.
Beta Was this translation helpful? Give feedback.
All reactions
-
So how you did it? thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions
-
I read, I learned, I asked the forum, but most importantly I did a lot of tests, otherwise you don't learn to organize the menu, because everyone has their own preferences. I'll give you some tips but I'm not a programmer because I'm just starting out too,
To reduce Winrar to a single entry, you do it from the program itself, see the photos:
Start Winrar->Options->Configuration->Integration
For the other entries you can integrate them into as many submenus, or remove them (don't make them appear anymore)
Create an Adobe menu and add it, Edit with Adobe Acrobat, Combine files in Acrobat, Share using Adobe Acrobat
menu(mode="multiple" title="Adobe" image='C:\Program Files\Adobe\Acrobat DC\Acrobat\Acrobat.exe')
{
modify(mode="multiple" type='file|dir|drive' find='"Edit with Adobe Acrobat"' menu="Adobe" image=path.combine(sys.prog,'Acrobat','Acrobat.exe'))
modify(mode="multiple" type='file|dir|drive' find='"Combine files in Acrobat"' menu="Adobe" image=path.combine(sys.prog,'Acrobat','Acrobat.exe'))
modify(mode="multiple" type='file|dir|drive' find='"Share using Adobe Acrobat"' menu="Adobe" image=path.combine(sys.prog,'Acrobat','Acrobat.exe')
}
WARNING I AM NOT 100% SURE THIS WILL WORK FOR YOU
the entries "Unlock with File Locksmith, Rename with PowerRename" if I'm not mistaken should be from Powertoys, so you can make a Powertoys menu the same way I did for Adobe.
The voices
Always keep on this device
Free up space
Copy Link
Manage access
View online
Version history
I don't know them, but if you don't need them you can remove them like this:
remove(type='*' find='Always keep on this device' vis=0
remove(type='*' find='Free up space' vis=0
remove(type='*' find='Copy Link' vis=0
remove(type='*' find='Manage access' vis=0
remove(type='*' find='View online' vis=0
remove(type='*' find='Version history' vis=0
For the rest you have to go around the forum and learn how to do it from the many discussions on the same problems. I could have also written the wrong syntax for you, for all I know.
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi, yes great work, I had seen it but I didn't know where to comment. I preferred to use rclone to mount the various clouds as a unit in explorer, as needed. I created a menu and inside I put all the items that start the mounting, the only thing I couldn't do is the possibility of closing them, selecting the unit by right clicking with a simple "unmount unit". I always have to close the active window of the command prompt, to unmount the unit.
P.S. Can I find the icon of the clud you used in the Nilesoft documentation?
Beta Was this translation helpful? Give feedback.
All reactions
-
icon of the cloud
which one?
https://nilesoft.org/gallery/glyphs
https://nilesoft.org/gallery/glyphs/e09c
https://github.com/RubicBG/Nilesoft-Shell-Snippets/blob/3a51bfe44503eaad2823d8d8314d5ebac7ffdb7a/ex2.user.cloud.share/cloud.onedrive.nss#L15
I plan to make a menu with rclone but I haven't found the time yet - if you want, share your snippet, I will use it as a basis and build on it
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi, it seems not work properly with v1.9.18, it appears that when I import it in shell.nss that the log said
2026年06月07日 15:15:35 [warning] line[35] column[7] invalid import file, 'C:\Program Files\Nilesoft Shell\cloud.onedrive.nss'.
And the context menu has not change at all. Is it my usage method that is incorrect, or is there a problem with the file itself?
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi and thanks as always 😊, you are also good at understanding me since I use Google translate. So by icon I was referring to the blue ones, in the onedrive submenu, with my super programming skills .......... which are very poor 😞😓, I think it is this "svg_od_win".
As for Rclone, I'm happy to share what I did, but as I said above I don't think it helps you and if there wasn't ChatGPT I would still be looking for answers on the web, since I couldn't create the script. That said, after installing Rclone I created the various connections with the GUI " rclone rcd --rc-web-gui "
because it's much simpler and faster. Then I mounted the various clouds from the command line, this is because from the GUI, although I'm sure that the steps were correct, it never managed to mount the connection correctly. This is the command I inserted in a simple link
C:\Windows\System32\cmd.exe /c "echo on & start "" "C:\Programmi portable\rclone\rclone.exe" mount PortatileHP: x: --vfs-cache-mode full --links --no-console & echo off"
Screenshot 2025年03月16日 200832 Screenshot 2025年03月16日 200822
Problems with this system, to close the mount you have to close the command prompt that created it, but this is another problem, the prompt is always visible in the taskbar. I don't know how to make the prompt invisible and how to create a context menu command to unmount it.
Screenshot 2025年03月16日 202016
I use Winlaunch and instead of putting the items in the context menu I preferred to put them here
immagine
immagine
I hope my work can be of some use to you, but I have my doubts, however I am happy to be able to share 🫡🫡.
Beta Was this translation helpful? Give feedback.