OS.js with pin-website in taskbar? #818
-
Hi all. 1. conceptI would like to be able to add a website to the taskbar, something similar to windows 10 in os.js. Please read this tutorial in how-to-pin-a-website-to-the-windows-10-taskbar-or-start-menu for more information. 2. idea2.1 idea 1.12.2 idea 1.22.3 idea 1.33. End-concept3.1 ui/ux, "os.js with pin taskbar?"3.2 "source-code", "os.js with pin taskbar?"<div class="osjs-system-context-menu">
<div id="osjs-context-menu" class="osjs-gui osjs-gui-menu" style="display: block; top: 146px; left: 180px;">
<ul class="">
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span>Select wallpaper</span></span></div>
</li>
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container" data-has-children="true">
<span class="osjs-gui-menu-label "><span>Select theme</span></span>
<ul class="">
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span>Standard Dark Theme</span></span></div>
</li>
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span>Standard Theme</span></span></div>
</li>
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span> Windows 8 Style Theme</span></span></div>
</li>
</ul>
</div>
</li>
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container" data-has-children="true">
<span class="osjs-gui-menu-label "><span>Add Widget</span></span>
<ul class="">
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span>Digital Clock</span></span></div>
</li>
</ul>
</div>
</li>
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container" data-has-children="true">
<span class="osjs-gui-menu-label "><span>Add shortcut in taskbar</span></span>
<ul class="">
<li class="osjs-gui-menu-entry">
<div class="osjs-gui-menu-container"><span class="osjs-gui-menu-label "><span>Shortcut taskbar</span></span></div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div> 4. Question/feedbackHave you all thought about this idea? |
Beta Was this translation helpful? Give feedback.
Answered by
andersevenrud
Dec 11, 2022
Replies: 1 comment 1 reply
-
Sounds like you might want to look into creating a panel item where you can add custom launchers. https://manual.os-js.org/tutorial/panel/ This is possible to integrate with drag-and-drop and context menus in the file manager. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sounds like you might want to look into creating a panel item where you can add custom launchers.
https://manual.os-js.org/tutorial/panel/
This is possible to integrate with drag-and-drop and context menus in the file manager.