X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=dV0A7F+kEFCnGnVJ 6XixQy4ZQ76WoAF5BhkAMGbrK9Ar36+jr4PAghu+fGI2VF5dAThrhEVGa3rGY4qN 1kZHi93AIz1DwHH0HNWwdbzwnRqxJ8+J0VVg8nDQbVk9X8eX1UjMmUnNvRjh/pHf TBG9OAkEySUpBSIgfqlqVkYkxZ4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=Op14zcGY80dTe9bqXOgd+v 16SZA=; b=GheJXiCe4yL9ScgeI4Y0/h7z8LZmSAsWO9rAUOfKrnpV3Smy2iS6IC CcwaKOT7Vx6wkFIgBIGax06pB5VX23nbrs3QWdZNk25Ju7a5ASWGJc76OAAO+Z+5 SLJWfXzGtTl55i5HxHfmuqIm/RMTaXTSBCUUU92a5CaXorY22V06w= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy=Terminal, enhancement, Thunderbird, thunderbird X-HELO: mscha.org Subject: Re: Problems with mintty jump list To: cygwin AT cygwin DOT com References: <9d72af26-6725-adf5-634c-cc5d16309e9d AT SystematicSw DOT ab DOT ca> <47ed6ff1-1662-c014-58d6-f97ff29bb95b AT towo DOT net> From: Michael Schaap Message-ID: Date: Sun, 13 May 2018 16:37:21 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <47ed6ff1-1662-c014-58d6-f97ff29bb95b@towo.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Note-from-DJ: This may be spam On 13 May 18 11:45, Thomas Wolff wrote: > Am 12.05.2018 um 19:15 schrieb Brian Inglis: >> On 2018-05-12 06:28, Michael Schaap wrote: >>> I'm experimenting with the new mintty jump list feature, but I'm >>> having trouble >>> getting things working. >>> I've added the following to my .minttyrc: >>>      TaskCommands=default:-p 100,100;myserver:-p bottom -p right -o >>> BackgroundColour=255,250,230 -e /usr/bin/ssh -C -Y -o >>> ServerAliveInterval=60 >>> myserver.example.org >>> I then started mintty with: >>>      mintty -o AppID=minttytest >>> The MinTTY window appeared, with a new icon on the task bar. I >>> pinned that >>> icon, and closed this new window. >>> A right click on the taskbar icon now indeed shows two jump list >>> entries: >>> default and myserver. >>> But when I click on "default", a MinTTY window does open and runs my >>> shell >>> (which is zsh), but the environment is different than normal: for >>> instance, >>> /usr/bin is not in the $PATH and most commands are therefore not >>> found.  (It's >>> not running as a login shell?) > Yes, as you most likely want to run a login shell, you should add a > bare '-' to the arguments list, like > > TaskCommands=default:-p 100,100 -;... Indeed, that helped. I was a bit confused about why I needed this here, and not when running MinTTY "normally", but then I saw that the default shortcut also had this argument. > >>> When I close all MinTTY windows, the icon remains on the taskbar (as >>> it should), >>> but the jump list entries are gone. >>> What am I doing wrong? > Nothing. I have no idea why this fails, in my testing it worked. On > the other hand, the whole jump list showed up on only 2 of 3 test > systems and failed on one. Mozilla applications (Thunderbird, Firefox) > manage to establish a task list on all of these systems, but their > jumplist code looks much more complex. If someone finds out by what > cursed Microsoft magic this is further affected, I'd consider an > enhancement... I got things working.  :-) I noted that the entries disappeared from the list as soon as I clicked on one of them.  I eventually tried adding "-o AppID=..." to the arguments in TaskCommands, and that helped: the entries remained. The only remaining problem was that the entries still disappeared when clicking on "Terminal" (or simply clicking on the pinned taskbar item with no terminal windows open), so I added AppName and AppLaunchCmd options to .minttyrc, and that did the trick. So, in the end, I added these lines to ~/.minttyrc:     TaskCommands=default:-o AppID=mymintty -p 1170,605 -;myserver:-o AppID=mymintty -p bottom -p right -o BackgroundColour=255,250,230 -e /usr/bin/ssh -C -Y -o ServerAliveInterval=60 myserver.example.org     AppName=Terminal     AppLaunchCmd=C:\cygwin64\bin\mintty.exe -o AppID=mymintty - then started MinTTY with this shortcut:     C:\cygwin64\bin\mintty.exe -o AppID=mymintty --store-taskbar-properties - and pinned it to the taskbar. Thanks for your help (and for providing the awesome MinTTY in general!),  – Michael PS: PuTTY also supports the jump list, both "Recent Sessions" and a couple of fixed "Tasks", this appears to work fine.  I'm sure you're more familiar with the PuTTY source code than that of Mozilla apps, so perhaps it helps to take a look at how PuTTY's doing this? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple