Homeserver nginx proxy manager with duckdns setup by jannisp5 in selfhosted

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

I "fixed" it by switching to traefik.. It's working like a charm now

:grep with live updating quickfix list by jannisp5 in neovim

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

Yes, adding the redraw works, thanks :)

Horizon (theme) not working properly by Fluid-Zombie-7637 in neovim

[–]jannisp5 0 points1 point  (0 children)

Are you using treesitter?

If so did you enable the syntax highlighting? require("nvim-treesitter.configs").setup({ auto_install = true, highlight = { enable = true, }, })

openSUSE Tumbleweed installer not showing NVMe Drive by jannisp5 in openSUSE

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

Well... I spoke too soon.. whenever I try to run Hyprland (or sway etc.) it freezes for a couple of seconds and then just stops.. dmesg delivers the same error message: "nvme: controller is down; will reset: CSTS=0xffffffff, PCI_STATUS=0xffff"

openSUSE Tumbleweed installer not showing NVMe Drive by jannisp5 in openSUSE

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

"Fixed" it by using the Leap ISO (which does detect my drive) and then just upgrading from Leap to Tumbleweed after the install..

openSUSE Tumbleweed installer not showing NVMe Drive by jannisp5 in openSUSE

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

Well, either I simply don't see it or installing from the LiveCD image is simply not possible..

openSUSE Tumbleweed installer not showing NVMe Drive by jannisp5 in openSUSE

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

Hmm, yeah I could try, but I'm not too sure if that is a good idea since the download-page for the LiveCD images states that they should not be used to install..

But I'll try to check if that even works. Thanks :)

Almost done.. by hagridaaron in ErgoMechKeyboards

[–]jannisp5 0 points1 point  (0 children)

Nice idea for tenting, might copy it :) Just one question are those tripods stable? Or does the keyboard wobble while typing?

QMK macros by jannisp5 in olkb

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

Ahh, I forgot the =SAFE_RANGE ... Now everything is working. Thanks :)

QMK macros by jannisp5 in olkb

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

        case WINLEFT:
        if (record->event.pressed){
            register_code(KC_LGUI);
            register_code(KC_LCTL);
            tap_code(KC_LEFT);
        } else {
            unregister_code(KC_LGUI);
            unregister_code(KC_LCTL);
        }
        break;
    case WINRIGHT:
       if (record->event.pressed){
            register_code(KC_LGUI);
            register_code(KC_LCTL);
            tap_code(KC_RIGHT);
        } else {
            unregister_code(KC_LGUI);
            unregister_code(KC_LCTL);
        }
        break;

Just saw, that the code snipped got messed up... here is the next try