Alfred


Featured Projects

Ttitle Status Description
project alfred-worklog

Since it can be difficult to keep track of what I worked on that day, I’ve been experimenting with some scripts to make it easier to journal my days’ activities. For now, most of it is bundled as an alfred workflow and is uploaded to github alfred-worklog

( Github )

Posts

blog My Mornings in 2026

As part of my goal to be more organized, I wanted to document some of my morning routine. My day starts at night, in the sense that I have found the best way to have consistent mornings, is to have (as much as possible) consistent evenings. Knowing that I feel best with at least 7 hours of sleep, I try to ensure I am in bed by midnight, and try to avoid my phone too much in bed.

Read More →

blog Offline Code Reference

While most code forges have a decent way of navigating code, going back and forth becomes tedious and it can often be easier to check things offline. The trick I use on my machine, is to combine alfred and a alfred-repos plugin for helping make things easier to search.

Using my own forked version to add some icons, I have a configuration file that looks like this.

{
  "__workflow_last_version": "4.1.0",
  "app_alt": "Terminal",
  "app_cmd": "Gitup",
  "app_default": "Visual Studio Code",
  "app_ctrl": "Browser",
  "global_exclude_patterns": [],
  "search_dirs": [
    // Projects is self explanitory
    {
      "depth": 2,
      "path": "~/Projects",
      "icon": "project.png"
    },
    // References is any 3rd party code I might want to view
    {
      "depth": 2,
      "path": "~/References",
      "icon": "references.png"
    },
    // I keep some documents in git as well
    {
      "depth": 2,
      "icon": "document.png",
      "path": "~/Documents"
    }
  ]
}

Adding icons gives me an extra visual hint what type of repo is found from Alfred.

Read More →

blog My most used Alfred workflows in 2024

I’ve been using alfred on my macs for quite a number of years. I don’t remember how I first found out about it, but it’s nearly always the first thing I install on new machines. Should I move to Linux, I am certainly going to need to find an equivalent and onagre looks like it might be one potential replacement. Inspired by a random comment on mastodon, I thought it would be interesting to write about my most commonly used workflows.

Read More →