DWilliames / idasen-controller-mac

A Mac App to control your Idasen Desk
MIT License
243 stars 19 forks source link

App icon

Idasen Desk Controller – Mac app

This is a Mac Status Bar application for controlling your IKEA IDÅSEN (Linak) Desk

If you find this at least a little bit useful, why don't you help me out by:

Download latest release


Animated example

Preferences example

Why?

The best way I've found to get myself to use my sit/stand desk more; is to remove as much friction around moving it as possible.

The Linak 'Desk Control' mobile app let's you set favourite positions — but then you need to open the app, and press and hold the up/down arrow until it get's into position. Having to hold the button the whole time was just a bit annoying for me; and I found myself changing height positions less.

I found a couple of different solutions across Github; but there were no truly Native Mac apps... until now.

I'm already on my Mac when sitting/standing at my desk — so why can't I quickly control the desk from here; without needing to open Linak's Desk Control Mobile app or having to use physical controller?

Features

Animated example

Getting started

Other info:

Troubleshooting


Interacting with AppleScript

If you want to interact with your Desk via AppleScript; you can talk directly through the 'Desk Controller' mac app.

This is great for setting up an Alfred App workflow

Commands:

move "to-sit": Will move to the saved 'Sitting position'

move "to-stand": Will move to the saved 'Standing position'

move "up": Will move the desk up a tiny bit

move "down": Will move the desk down a tiny bit

move to "120cm": Will move the desk to a height of 120cm

move to "55in": Will move the desk to a height of 55 inches

move to "80": Will move the desk to a height of either 80cm or 80in depending on your preferences

So you may have an AppleScript script that looks like this:

tell application "Desk Controller"
    move "to-sit"
end tell