WhichSpace icon indicating copy to clipboard operation
WhichSpace copied to clipboard

[feature request] command line app

Open fabrizziosoares opened this issue 3 years ago • 9 comments

is it possible to make is a command line app to print the current space?

fabrizziosoares avatar Mar 23 '21 09:03 fabrizziosoares

+1, I'd love this and am willing to sponsor this feature

vemv avatar Sep 02 '21 10:09 vemv

Hello,

I had a need for a command line utility as well so I grabbed the WhichSpace function that queries the spaces info and wrapped it in a command line swift app.

You can find it here: https://github.com/davidpurnell/SpaceInfo

davidpurnell avatar Sep 23 '21 18:09 davidpurnell

Cheers! Starred, will give it a spin

I discovered / was using https://github.com/alt-jero/McSpaces in the meantime, it works fine, but bit of a raw one.

vemv avatar Sep 23 '21 18:09 vemv

Ah, McSpaces is giving UUIDs. My version outputs integers incremented from 1. I'm using it in some Keyboard Maestro macros so my use case required simple numbering of spaces. Hope that works for you!

davidpurnell avatar Sep 23 '21 18:09 davidpurnell

Yes actually my usage of McSpaces was pretty hacky. It gives you a blank UUID for Space #1, and an actual UUID for the rest.

By coincidence, I was only interested in querying "am I in space #1?" so getting a blank UUID was enough 😄

A number-based approach is more robust and allows more use cases.

vemv avatar Sep 23 '21 18:09 vemv

If you guys don’t mind sharing, what kinds of things are you using this for? KM macros sound interesting.

ChristinWhite avatar Oct 07 '21 18:10 ChristinWhite

I have several KM macros that move windows around between multiple displays and spaces. These macros need to know what current space and/or display index the frontmost window is located on.

Just trying to keep my hands on the keyboard and off the mouse as much as possible...

If you want to take a look at my macros, they are here: github.com/davidpurnell/km-macros

davidpurnell avatar Oct 07 '21 20:10 davidpurnell

I have several KM macros that move windows around between multiple displays and spaces. These macros need to know what current space and/or display index the frontmost window is located on.

@davidpurnell, SpaceInfo looks cool. You may know this already, but if WhichSpace is running, you can get the current space with AppleScript:

tell application "System Events" to tell process "WhichSpace" to set temp to (title of menu bar items of menu bar 1)
return item 1 of temp

I'm going to check out your macros on GitHub. Have you shared them on the KM Forum? If not consider doing so. It's a great place to share KM ideas.

I've also developed a set of KM macros to manage spaces; there are on the forum: Desktop Spaces • Macros for Navigation and Window Management

jim-sauer avatar Jan 19 '22 04:01 jim-sauer

Yep. I used to query Whichspace this way to get the current space index and then used that in earlier versions of my KM macros. Pretty sure I've seen some of your macros on the forum. I'm a lurker there but perhaps it's time to start posting!

davidpurnell avatar Jan 21 '22 23:01 davidpurnell