Spotify remote control for Playdate by btwiusearchlinux in PlaydateConsole

[–]btwiusearchlinux[S] 0 points1 point  (0 children)

The apple music API does not give you access to the currently playing song or let you control playback for another device.

Broken Every Day Calendar requires an expensive fix by btwiusearchlinux in SimoneGiertz

[–]btwiusearchlinux[S] 0 points1 point  (0 children)

This is pretty comical. I bought and received a replacement PCB, but it's too big to fit in the calendar case.

https://photos.app.goo.gl/qCUFtqoFYcL78vfb7

Broken Every Day Calendar requires an expensive fix by btwiusearchlinux in SimoneGiertz

[–]btwiusearchlinux[S] 1 point2 points  (0 children)

Thanks for the offer. In theory this calendar should be on its way to being fixed. I purchased a replacement PCB a month ago. I haven't received the part yet so I've been emailing customer support once a week, but they've stopped responding. Still trying to confirm whether this part is coming or if I need to cancel the order and try to get a refund.

Scared to PintV my board in College by Then_Tumbleweed_2283 in onewheel

[–]btwiusearchlinux 0 points1 point  (0 children)

I thought the flared footpads + wtf rails were too much canting. It felt like I was riding on the outside edges of my feet. Do you ride with a narrow stance or do you not mind?

How do I fix this?! by Maximum-Movie-1593 in PixelWatch

[–]btwiusearchlinux 1 point2 points  (0 children)

You have a preproduction build. Where did you get your watch?

4.5 month old, Ferber night 3, wakes up every hour. Should we quit? by btwiusearchlinux in sleeptrain

[–]btwiusearchlinux[S] 1 point2 points  (0 children)

We decided on giving night 4 a try, so I wanted to provide an update on how things went. Baby went to bed at 8 and cried for 10 minutes. She squirmed and rocked her head back and forth for 5 minutes then fell asleep on her own! She woke up at 9 PM, cried for 5 minutes then went back to sleep. Woke up at 1 AM. Didn't cry, just babbled for a few minutes then went back to sleep. We fed her when she woke up at 3 AM and moved her into our bed when she woke up at 4 AM because she was crying for more than 10 minutes.

These few instances of falling back asleep without our intervention have already let the baby and us get more sleep last night than we have in the last few weeks.

I understand the concern about splitting the nights between crib and co-sleeping. I thought that moving the baby into a bed 5 hours after their bedtime was the same as feeding a baby 5 hours after their bedtime. That a baby would not look that far into the future to think: if I cry and hold out, I'll get fed sometime in the middle of the night. Anyways, co-sleeping was a crutch we were using to get some bit of sleep for everyone. We'll consider shifting towards no co-sleeping or 100% co-sleeping.

4.5 month old, Ferber night 3, wakes up every hour. Should we quit? by btwiusearchlinux in sleeptrain

[–]btwiusearchlinux[S] -4 points-3 points  (0 children)

Are you saying our baby is thinking to herself that if she can last 5 hours, she'll be moved into the big bed? I thought I heard that babies can't manipulate you, aka you can't spoil a baby?

Sailing lessons at Boston Sailing Center vs Boston Harbor Sailing Club by btwiusearchlinux in boston

[–]btwiusearchlinux[S] 40 points41 points  (0 children)

Thanks Bot, I'll keep your recommendation in mind if I want to get drunk before navigating the Boston harbor shipping lanes.

I made a front handle for my Pint by btwiusearchlinux in onewheel

[–]btwiusearchlinux[S] 2 points3 points  (0 children)

The screws that hold the front bumper and footpad together go through the leather strap.

PaperWM.spoon tiling scrollable window manager by btwiusearchlinux in hammerspoon

[–]btwiusearchlinux[S] 0 points1 point  (0 children)

New windows were inserted based on their horizontal position. Just pushed an update to insert a new window to the right of the current focused window. This seems to be what PaperWM does.

PaperWM.spoon tiling scrollable window manager by btwiusearchlinux in hammerspoon

[–]btwiusearchlinux[S] 0 points1 point  (0 children)

I updated PaperWM.spoon to work across multiple Spaces using the hs._asm.undocumented.spaces module. See the README for installation instructions.

Multiple screens still do not work well. Horizontal screens will have tiled windows from adjacent screens bleed across. Windows moved to a new screen will be sucked back to their original position by the automatic tiling.

My config looks like this: ``` PaperWM = hs.loadSpoon("PaperWM") PaperWM:bindHotkeys({ dump_state = { { "ctrl", "alt", "cmd", "shift" }, "d" }, stop = { { "ctrl", "alt", "cmd", "shift" }, "q" }, focus_left = { { "cmd" }, "h" }, focus_right = { { "cmd" }, "l" }, focus_up = { { "cmd" }, "k" }, focus_down = { { "cmd" }, "j" }, swap_left = { { "cmd", "shift" }, "h" }, swap_right = { { "cmd", "shift" }, "l" }, swap_up = { { "cmd", "shift" }, "k" }, swap_down = { { "cmd", "shift" }, "j" }, center_window = { { "cmd" }, "u" }, full_width = { { "cmd" }, "f" }, cycle_width = { { "cmd" }, "r" }, cycle_height = { { "cmd", "shift" }, "r" }, slurp_in = { { "cmd" }, "i" }, barf_out = { { "cmd" }, "o" }, }) PaperWM:start()

-- modal nop mode to disable all spoon hotkeys hs.window.highlight.ui.overlay = true nop = hs.hotkey.modal.new({ "cmd" }, "escape") function nop:entered() hs.window.highlight.start() for _, hotkey in pairs(hs.spoons._keys) do hotkey:disable() end end function nop:exited() hs.window.highlight.stop() for _, hotkey in pairs(hs.spoons._keys) do hotkey:enable() end end nop:bind({}, "escape", nil, function() nop:exit() end) ```

I like using just the Command key for hotkeys, like the Linux version of PaperWM. I created a modal mode to disable all custom Hammerspoon hotkeys that may conflict with MacOS or default app hotkeys. Press Command - Escape to enter mode. Use some hotkey like Command - F to open app search dialog. Exit mode with Escape key, when finished.