-
Content Count
171 -
Joined
-
Last visited
-
Days Won
10
Subject22 last won the day on September 23 2019
Subject22 had the most liked content!
About Subject22
-
Rank
Member
Recent Profile Visitors
1,383 profile views
-
Subject22 started following Toggle Hidden Files workflow, The State of Alfred Remote app, Notes and 1 other
-
Chris Spiegl reacted to a post in a topic: Restart Alfred Workflow
-
cands reacted to a post in a topic: Restart Alfred Workflow
-
Thanks! I've updated the repo and the first post.
-
Thanks! Unfortunately I took too long to get to it and the file transfer expired. Instead I’ve put the workflow on GitHub (and added a link to the first post). Please feel free to fork the repo and/or submit a pull request. I will endeavour to keep the first post in this thread in sync with the GitHub repo.
-
Open current Safari tab in Chrome - Improved
Subject22 replied to Subject22's topic in Share your Workflows
Hey, finally got around to this. Obviously feel free to fork and/or submit a pull request. I will also endeavour to keep the first post in sync with the GitHub repo. https://github.com/AndrewC-B/alfred-open-in-chrome -
Can do. Yes, that would be handy. Thanks!
-
Open current Safari tab in Chrome - Improved
Subject22 replied to Subject22's topic in Share your Workflows
Not at all. Just gotta find time to do it I’ve put it on my todo list, but probably won’t get to it until next weekend at the earliest. Please free to do so yourself (but if you do I’d appreciate it if you linked to this thread from the readme). -
Open current Safari tab in Chrome - Improved
Subject22 replied to Subject22's topic in Share your Workflows
@gandalfsaxe Almost certainly. But I haven’t looked at this in ages, and have moved most of my work to iOS, sorry! If I have time over the weekend I might take a look. But it shouldn’t be hard to change, with some reference to AppleScript docs. -
nikivi reacted to a post in a topic: Open current Safari tab in Chrome - Improved
-
That's one old typo. Fixed, thanks!
-
Subject22 reacted to a post in a topic: Show/hide file extensions
-
liatmgat reacted to a post in a topic: Show/hide file extensions
-
Subject22 reacted to a post in a topic: App will not open on iOS 9 beta 4
-
App will not open on iOS 9 beta 4
Subject22 replied to HRD's topic in Alfred Remote Discussion & Help
I see the same issue on iOS 9 beta 5. Just for reference. Looking forward to having Remote back in action, whenever that may be -
Alfred waiting for external disk to spin up
Subject22 replied to Subject22's topic in Discussion & Help
I removed the drives from Alfred's search scope in settings and use a workflow to search them explicitly when needed. -
Subject22 reacted to a post in a topic: Applescript doesn't function properly when called from Bash
-
No worries! I'll check out your updated version
-
milan reacted to a post in a topic: Toggle Hidden Files workflow
-
Subject22 reacted to a post in a topic: Yosemite Dark Mode Toggle (With Alfred Theme Toggle)
-
Subject22 reacted to a post in a topic: Kill Process Workflow
-
I made a similar workflow a while back and managed to bolt together a script filter which lets Alfred tell you if hidden files are currently visible or if they're hidden. This may or may not be useful to you #!/bin/sh #check the current value and display the result as subtitle CURVALUE=$(defaults read com.apple.finder AppleShowAllFiles -bool) if [ $CURVALUE = 0 ]; then subtitle="Hidden files are currently invisible" else subtitle="Hidden files are currently visible" fi echo '<?xml version="1.0"?><items>' echo "<item arg=\"{query}\" uid=\"ssid\" valid=\"yes\">" echo "&
-
Subject22 reacted to a post in a topic: Applescript doesn't function properly when called from Bash
-
Subject22 reacted to a post in a topic: Applescript doesn't function properly when called from Bash
-
Yes, there is. There's some additional logic in the script I took that snippet from. I pause iTunes, play a sound file, and then resume iTunes, but only if it was playing to start with. That's why I need to control playback within the script (I need to know if iTunes was playing to start with before I tell it to start playing again). There are some fairly nasty workarounds that I can think of, but what I really want to know is why the script can't control iTunes when called from the shell. It's very irritating! Cheers for the reply