Program launchers

What other productivity software are you working with...
Stef123

Re: Program launchers

Post by Stef123 »

Small portable freeware: http://www.horstmuc.de/wpop.htm
It automatically ajdusts drive letters (check the help file how to make that work)

klownboy
Posts: 4109
Joined: 28 Feb 2012 19:27

Re: Program launchers

Post by klownboy »

I whole heartedly agree with the above recommendation of PopSel at http://www.horstmuc.de/wbeta.htm Try the latest beta though. It's also in x64. He now allows you to assign a selectable icons for submenus listed in the main menu. Before they were all the same generic built-in icon. A suggestion by someone :wink: . It's light weight using very little resources. There are some other good utilities on the site. If you are into AHK and looking for easy light weight menus try http://www.autohotkey.com/board/topic/5 ... reatemenu/ (it's also very fast and extremely similar to PopSel in appearance) or http://www.autohotkey.com/board/topic/9 ... -launcher/
Windows 11, 22H2 Build 22621.1555 at 100% 2560x1440

admin
Site Admin
Posts: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Program launchers

Post by admin »

Hmm, you can do all that with XY. Why use something else?

klownboy
Posts: 4109
Joined: 28 Feb 2012 19:27

Re: Program launchers

Post by klownboy »

Believe me, I typically have XY running all the time and yes, I have all of the same programs available to start in XYplorer menus via scripting. I even use AHK to open specific menus in XYplorer (and if for some reason XY wasn't open (that would be very unusual), start it). It's sometimes convenient though to have a quick and dirty menu accessed quickly by a single hotkey or taskbar regardless of what's on the desktop especially if I want to run a system cleaner, scanner, or defragger when I wouldn't want any other programs running like XYplorer or a browser.
Windows 11, 22H2 Build 22621.1555 at 100% 2560x1440

FluxTorpedoe
Posts: 855
Joined: 05 Oct 2011 13:15

Re: Program launchers

Post by FluxTorpedoe »

Hek hek hek :twisted: , since you opened the door, I'll barge in:
admin wrote:Hmm, you can do all that with XY. Why use something else?
Well, we nearly could... but we can't really. :bug:
It's not efficient enough, at least until we have real popupmenus (ala onMouseOver).
(c.f. this post, itself pointing to this post)
Honestly, I've really been waiting for this to make XY my only launcher: as a matter of fact, a dedicated entry is even included in my PowerLauncher script since half a year ago!... :biggrin:

But no pressure, it's not as important as other features more "crowd gathering". 8)

binocular222
Posts: 1416
Joined: 04 Nov 2008 05:35
Location: Hanoi, Vietnam

Re: Program launchers

Post by binocular222 »

Hi Ken,
I used PopSel long before, even written a AHK script based on PopSel (search PopFav on AHK forum). Now, I switch to use XYplorer as a program launcher: I have these 2 tabs iconized & locked & ready on Tabbar all the time:
Computer?:*(.exe | .lnk | .ahk | !.) AND lbl:?*
Computer?:!*(.exe | .lnk | .ahk | !.) AND lbl:?*
The 1st tab shows all the frequently used programs
The 2nd tab shows all the frequently used documents
--------
With this setup, XYplorer is better than PopSel (and even Flux's PowerLaucher) because you just need to add Label to any document/program to add/remove from the list. Insanely fast & easy. The list is updated even when you rename/move the file around
With AHK, you can even activate XYplorer window AND activate the required tab at the same time → usage will be fairly similar to PopSel.
The only downside is XYplorer window is activated and steal focus
Last edited by binocular222 on 23 Jun 2013 15:21, edited 1 time in total.
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

admin
Site Admin
Posts: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Program launchers

Post by admin »

Ok ok, next time I just keep my mouth shut. :mrgreen:

FluxTorpedoe
Posts: 855
Joined: 05 Oct 2011 13:15

Re: Program launchers

Post by FluxTorpedoe »

I just hope you still have one of those old office printers,
y'know, with those accordion-like one-endless-sheet of paper....

To keep track of your road-map of course!

:twisted:

admin
Site Admin
Posts: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Program launchers

Post by admin »

No, I use Google Roadmaps. :biggrin:

Regmos
Posts: 268
Joined: 22 Dec 2012 07:27
Location: Copenhagen

Re: Program launchers

Post by Regmos »

Quick PopSel question.

I've created a userbutton to run PopSel: open "C:\Users\...\popsel\PopSel.exe"

How do I get this button to read the PopSel command /i (icons in the menu) directly.

At the moment I've made an /i shortcut in the PopSel folder, and placed it in the button: open "C:\Users\...\popsel\PopSel_shorcut_icons.lnk"

This is working fine, but I wonder, if there is a way to avoid this step.

Edit:

Just solved the problem: run "C:\Users\...\popsel\PopSel.exe" /i';
Kind regards
Regmos

klownboy
Posts: 4109
Joined: 28 Feb 2012 19:27

Re: Program launchers

Post by klownboy »

Hi Regmos,

Try using run not open. I wasn't using PopSel from a XYplorer CTB, but I played with it and this works: Note: I'm calling out my MainMenu.lst menu file here and positioning the menu in the center of my (1920x1080) screen as well as using the /I "icon" parameter. Modify it to suit your needs.

Code: Select all

run """D:\Tools\PopSel\PopSel.exe"" /I /p900,850 MainMenu.lst"
This works for a Windows Taskbar Shortcut in the "Target" command block:

Code: Select all

D:\Tools\PopSel\PopSel.exe /I /p900,850 "MainMenu.lst"
I hope it helps.
Ken
Windows 11, 22H2 Build 22621.1555 at 100% 2560x1440

Regmos
Posts: 268
Joined: 22 Dec 2012 07:27
Location: Copenhagen

Re: Program launchers

Post by Regmos »

Hi.

Thanks, but I've already solved it (my previous post, last line).

Code: Select all

 run "C:\Users\...\popsel\PopSel.exe" /i';
Kind regards
Regmos

Adequat
Posts: 95
Joined: 20 Jul 2007 12:03

Re: Program launchers

Post by Adequat »

Freeware Gem:
SlickRun
http://bayden.com/slickrun/

nerdweed
Posts: 648
Joined: 25 Feb 2012 07:47

Re: Program launchers

Post by nerdweed »

admin wrote:Hmm, you can do all that with XY. Why use something else?
With the newly introduced Tile view and Search templates, I am having an in-xy PortableApps Launcher. This can be made quicker with Tags as they allow portable locations, but I might wait until multiple Tag files are introduced or just reuse one of the ItemStore files.

The default Details view is good for Search results, but for this particular search, I would like Tile view. This can be achieved through a small script that would load the search and switch to Tiles view.

::loadsearch PortableApps,rlc; #313;

The search includes finding files ending with Portable.exe and filter on type executable for quicker searches if required and the location is the PortableApps location.
XYplorer-SearchTemplateTiledAppLauncher.png
XYplorer-SearchTemplateTiledAppLauncher.png (135.87 KiB) Viewed 6334 times
My first pin as well - http://pinterest.com/pin/302444931196379800/

Nighted
Posts: 459
Joined: 21 Jan 2007 01:58
Location: Gitmo Nation North, Win 7/10/Linux/(x64)

Re: Program launchers

Post by Nighted »

Adequat wrote:Freeware Gem:
SlickRun
http://bayden.com/slickrun/
Great app, used to use it religiously. Then I switched to Executor.

Both are extremely useful.

Keyboard FTW.
I want XY to serve soft ice cream. Please Don, make XY serve soft ice cream.

Post Reply