Contribute
Register

[README] Common (some unsolved) Problems in 10.12 Sierra

Karabiner is broken

Ouch! I really like that app. Hopefully it is fixed soon with an update.

Ouch indeed! I rely a lot on this app and based on what I saw from Tekezo the update will take a long time. That could be a show stopper for me.
 
Hi.

For volume Up/Down i used keyboard shortcuts as services.
Work good for me.

Add this as service and run first time manually.
VolumeUp:
Code:
set vol to output volume of (get volume settings)
if vol > 90 then # 100 max
    set volume output volume 100
else
    set volume output volume (vol + 10)
end if

VolumeDown:
Code:
set vol to output volume of (get volume settings)
if vol < 10 then # 0 is min
    set volume output volume 0
else
    set volume output volume (vol - 10)
end if

Then blind to key combination.

Regards, Al3XKOoL.
 
No one reported 4400/4600 mac crash (complete freeze), when playing video in Safari?
You can check it out even on 10.11: Open iTunes, Movies, (choose movie), open trailer.
 
Hi.

For volume Up/Down i used keyboard shortcuts as services.
Work good for me.

Add this as service and run first time manually.
VolumeUp:
Code:
set vol to output volume of (get volume settings)
if vol > 90 then # 100 max
    set volume output volume 100
else
    set volume output volume (vol + 10)
end if

VolumeDown:
Code:
set vol to output volume of (get volume settings)
if vol < 10 then # 0 is min
    set volume output volume 0
else
    set volume output volume (vol - 10)
end if

Then blind to key combination.

Regards, Al3XKOoL.

Not a great solution as you will not get the OSD for volume...
 
No one reported 4400/4600 mac crash (complete freeze), when playing video in Safari?
You can check it out even on 10.11: Open iTunes, Movies, (choose movie), open trailer.

You should probably open a separate thread. Like many others, I use Safari only to download Chrome.
 
Not a great solution as you will not get the OSD for volume...

Yes, i know it. But is good while we are waiting for a real fix.

Thanks for your work :)
 
Back
Top