Recent content by moud


  1. Add Icon to "New Context Menu" Entry

    Thank you TizianoMad Shell became more dynamic after adding the import option, as it allowed settings file splitting and file import control on condition. To add new item when the Shift key is pressed, use the vis property and assign it the value key.shift(). item(title='test item 1'...
  2. How to remove this annoying popup?

    I think these are monitor specific settings, such as Dell Display Manager for Dell monitors. You will find Application Window Snap option in the right of the taskbar
  3. Removing 'Create Shortcut' from context menu

    If you are using a Shell program, open "shell.shl" file with your favorite editor then add the following code in static section to remove "Create Shortcut" item from context menu. item(find='"create Shortcut"' vis=remove) Then press Ctrl + right-click to reload settings.
  4. Disable Stardock's context menu options

    It looks like you are using Shell and it can remove unwanted items without modifying the Windows Registry. See the following example static { item(find='Configure Fences|Configure DeskScapes' vis=remove) } Add this code to static items section in "shell.shl" file. then press...
Back
Top Bottom