Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

repeated taskbar item in taskbar menu #339

Open
sarathdm opened this issue Oct 2, 2023 · 12 comments
Open

repeated taskbar item in taskbar menu #339

sarathdm opened this issue Oct 2, 2023 · 12 comments
Labels
question Further information is requested

Comments

@sarathdm
Copy link

sarathdm commented Oct 2, 2023

hi...
i have an issue in taskbar menu that is taskbar and taskbar settings entry is repeated in the menu. windows option such as cascade windows is repeated,and if i try to remove an item from the menu item in the code and restarted the explorer the whole menu is back to the old menu......
RJWdGRwj7g

@moudey
Copy link
Owner

moudey commented Oct 2, 2023

Open "imports/taskbar.nss" file and remove this items

menu(title=title.windows image=\uE1FB)
{
    item(title=title.cascade_windows cmd=command.cascade_windows)
    item(title=title.Show_windows_stacked cmd=command.Show_windows_stacked)
    item(title=title.Show_windows_side_by_side cmd=command.Show_windows_side_by_side)
    sep
    item(title=title.minimize_all_windows cmd=command.minimize_all_windows)
    item(title=title.restore_all_windows cmd=command.restore_all_windows)
}
item(title=title.desktop image=icon.desktop cmd=command.toggle_desktop)
item(title=title.settings image=icon.settings(auto, image.color1) cmd='ms-settings:')
item(title=title.task_manager sep=both image=icon.task_manager cmd='taskmgr.exe')
item(title=title.taskbar_Settings sep=both image=inherit cmd='ms-settings:taskbar')
item(vis=key.shift() title=title.exit_explorer cmd=command.restart_explorer)

Save changes, press CTRL + RIGHT-CLICK to reload settings.

@moudey moudey added the question Further information is requested label Oct 2, 2023
@sarathdm
Copy link
Author

sarathdm commented Oct 3, 2023

ok

@sarathdm
Copy link
Author

sarathdm commented Oct 3, 2023

hi....
i want to all these entries (entries that are shown inside red rectangle box) to be removed from that taskbar menu.......
pjuB4oKqdE

@moudey
Copy link
Owner

moudey commented Oct 4, 2023

Open the "shell.nss" file, add this line for each item you want to remove

remove(find='Put item title here')

Save changes, Restart explorer.

@sarathdm
Copy link
Author

sarathdm commented Oct 5, 2023

i tried the code but the shell breaks......

remove(find='cascade_windows''Show_windows_stacked')

@moudey
Copy link
Owner

moudey commented Oct 5, 2023

Separate titles with |
Enter titles as they appear in the context menu.

remove(find='cascade windows|Show windows stacked')

@sarathdm
Copy link
Author

sarathdm commented Oct 5, 2023

i tried the code but the entry still shows in taskbar menu..........
Code_f3s4FwY9ax

@moudey
Copy link
Owner

moudey commented Oct 5, 2023

Did you save the changes and reload the settings?

@sarathdm
Copy link
Author

sarathdm commented Oct 5, 2023

yes

@moudey
Copy link
Owner

moudey commented Oct 5, 2023

Add type property

remove(type="taskbar" find='cascade windows|Show windows stacked')

@sarathdm
Copy link
Author

sarathdm commented Oct 5, 2023

thanks......
now it works.........

@sarathdm
Copy link
Author

sarathdm commented Oct 5, 2023

how to remove entries from these two menus.................
explorer_xNqkRuuUnN
Fk9108Ln4t

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants