Jump to content

StDt

Member
  • Posts

    4
  • Joined

  • Last visited

Posts posted by StDt

  1. ...

     

    windowMmanager : position windows in screen halves, corners and stack them into columns
    alfredIgnore : hide files and folders from Alfred's results
    sshList : add/remove and easily connect to ssh servers
    SASS : watch .scss files and kill all SASS processes
    fileType search : search by a filetype and search term. Useful if you have a project consisting of different filetypes but similar names.

     

    Hi Tom Hunt,

     

    tried to download the windowmanager from tom-hunt.co.uk/ftpguest/alfred/WindowManager.alfredworkflow

    Got a URL not found error.  :(

     

    Could anybody provide that WindowManager Workflow? 

     

    Thanks

  2. For anyone curious, I changed line 169 in weather.php to give a little more information…

     

    Changed

    $w->result( 'weather', 'http://www.wunderground.com'.$location, $weather->display_location->full.": ".$weather->weather, $weather->temp_f.'°F ('.$weather->temp_c.'°C)' , $icon );
    

     

    to

    $w->result( 'weather', 'http://www.wunderground.com'.$location, $weather->display_location->full.": ".$weather->weather, round($weather->temp_f).'°F | Feels Like '.$weather->feelslike_f.'°F | Wind '.lcfirst($weather->wind_string) , $icon );
    

     

    So now it looks like:

    image.jpg

    (And yes, it's cold here.)

    That didn't work for me. :( 

     

    I changed line 169 to:

    $w->result( 'weather', 'http://www.wunderground.com'.$location, $weather-display_location->full.": ".$weather->weather, round($weather->temp_f).'°F | Feels Like '.$weather-feelslike_f.'°F | Wind '.lcfirst($weather->wind_string) , $icon );
    

     

    And line 171 to:

    $w->result( 'weather', 'http://www.wunderground.com'.$location, $weather->display_location->full.": ".$weather->weather, round($weather->temp_c).'°C | Feels Like '.$weather->feelslike_c.'°C | Wind '.lcfirst($weather->wind_string) , $icon );
    

     

    "Feels Like" will not be displayed. Still got only "High - Low - Precipitation". 

×
×
  • Create New...