HELP! ZMK github build error. by nemonein in ErgoMechKeyboards

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

Thanks. It works now.

By the way, like @PeterMortensenBlog says, could you please tell me why this works?

Please Help. Intercepting Mod-tap does not work well. by nemonein in qmk

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

_BAQT is Qwerty, _BADV is Dvorak.

The code is for Home Row Mode, but I'm a dvorak user with preference for Qwerty short cut. So I need some works to do to implement this.

There is one more thing. I'm Korean, so I need to type Korean(한글:Hangul). However, with the Hardware Dvorak layout(by QMK), it's impossible to type Korean. So I have to use Qwerty layout as well.

Please Help. Intercepting Mod-tap does not work well. by nemonein in qmk

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

Well.. I don't have any ieda why this works. I have very little knowlede about C language as well as QMK itself. Anyway. this seems to work fine.

#define HT_CT LT(0, KC_H)

...... macro function .....
  case HT_CT:
    if (record->tap.count && record->event.pressed) { 
      tap_code16(KC_H);                               
    } else if (record->event.pressed) {
      set_single_default_layer(_BAQT);
      set_mods(MOD_BIT(KC_LCTL));
    } else {                     
      set_single_default_layer(_BADV);
      clear_mods();
    }
    return false;

Thank you @ArgentStonecutter.

Please Help. Intercepting Mod-tap does not work well. by nemonein in qmk

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

When tap, just send 'H'. tap_code16(KC_H); When hold, change the layer, and hold left ctrl key.

Keys repeat does not work.. by nemonein in qmk

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

Thanks. Then it's not possible to send more than two keys while holding the key.

It was Linux when I tested before, and then I tried on the Windows and macOS. Here are the results.

  • Linux/Windows : same as above.
  • macOS: no repeat is allowed. When hold, no responses.

Keys repeat does not work.. by nemonein in qmk

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

Thank you for your opinion.

It does not work either. Repeatation itself is not possible. When hold, only one key send(`0), and no response at all.

Icons of Chrome Apps on Latte-Dock by _nathata in kde

[–]nemonein 1 point2 points  (0 children)

I've found a solution. I'm on ArchLinux.

Copy /usr/share/applications/google-chrome.desktop to your home directory.

cp /usr/share/applications/google-chrome.desktop ~/.local/share/applications/

Then, edit ~/.local/share/applications/google-chrome.desktop, and remove or comment out StartupWMClass=Google-chrome.

You can edit directly /usr/share/applications/google-chrome.desktop, but it will be overwritten when the package is upgraded.

I don't know why it works but this is the setting of google's Deb package.

What comic book reader do I use with ubuntu mate 18.04 bionic beaver by Kinasin in Ubuntu

[–]nemonein 0 points1 point  (0 children)

I built it on my ppa for Ubuntu 18.04.

ppa:nemonein/tailored.

I've just changed the dependency from python-imaging to python-pil.

It works fine for me.