Jump to content

milan

Member
  • Posts

    7
  • Joined

  • Last visited

Reputation Activity

  1. Like
    milan reacted to Subject22 in Toggle Hidden Files 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 "<title>Toggle hidden files</title>" echo "<subtitle>$subtitle</subtitle>" echo "<icon>icon.png</icon></item></items>" echo "</items>"
  2. Like
    milan got a reaction from mklement0 in Toggle Wifi workflow   
    A workflow for toggling Wifi on and off.
    Get it at http://www.packal.org/workflow/toggle-wifi
    Report bugs (unlikely to impossible) here.
×
×
  • Create New...