[-] ForynGilnith@lemmy.world 39 points 10 months ago* (last edited 10 months ago)

If that's the case, it's a bit of an ugly hack but you could make a wrapper script placed in /usr/local/bin/inkscape like this:

#!/bin/bash

flatpack run org.inkscape.Inkscape ${*}

(the ${*} will pass along all the arguments that the wrapper script was called with)

1

Are there any wayland-native, pretty and simple calculator apps that work well with hyprland? Any recommendations?

[-] ForynGilnith@lemmy.world 2 points 1 year ago

Bonus pic... Here is another one at the bird bath

75
submitted 1 year ago* (last edited 1 year ago) by ForynGilnith@lemmy.world to c/birding@lemmy.world

Excuse the slightly blurry shot from holding my phone up to my spotting scope

4

Because it's "in cygnus or in health"

[-] ForynGilnith@lemmy.world 2 points 1 year ago

But how about teeth?

1

Wondering if others experience this or if it's just my setup. I've tried searching for open issues that describe this behavior but haven't had much luck yet.

I believe it only affects GTK apps but when I'm at an input text box on an app, hitting ctrl-a doesn't actually select all the input most of the time. If I hold ctrl-a for a few seconds, it eventually succeeds. This only happens to me in hyprland.

If this isn't a known issue I'll put more time into describing it and testing exactly which input dialogs are affected.

6

Does anyone know of a good resource to download or generate terrain / elevation STL models that are bound to the shape of US states?

I came across this posting but the files are pretty low resolution and look pretty bad at the size I want to print.

[-] ForynGilnith@lemmy.world 2 points 1 year ago

cool - I'll try to run my images through InVesalius instead. Thanks for inspiring me to give this another shot!

[-] ForynGilnith@lemmy.world 11 points 1 year ago

How did you assemble the STL? Freesurfer?

I had some MRIs done about a year ago that included the brain and I got so/so results out of Freesurfer. You could tell it was a brain but it still looked a little janky. Yours looks great, though!

[-] ForynGilnith@lemmy.world 2 points 1 year ago

Thanks! Per my other comment, I guess I've gotta look at Z-Wave if there are no wifi-only options available. Checking out the T6 Pro now

34

Can anyone recommend a thermostat system that is self-hosted (no third-party cloud) and integrates into homeassistant nicely? Something tasmota based would be even better.

This is the final bit of home automation that's been difficult to solve. I've got a heat pump system and there are very few smart thermostat systems that aren't beholden to a public cloud service.

35
2
submitted 1 year ago* (last edited 1 year ago) by ForynGilnith@lemmy.world to c/hamradio@lemmy.ml

They're active from Ducie Island right now. I've only managed to pick them up on 20m so far.

46
submitted 1 year ago by ForynGilnith@lemmy.world to c/aww@lemmy.ml
[-] ForynGilnith@lemmy.world 5 points 1 year ago

Not recently... I'm just completely out trust and benefit of the doubt based on the various controversies and where their (Tencent) money is coming from.

[-] ForynGilnith@lemmy.world 4 points 1 year ago

Well said - my patience ran out about 6 or 7 "mistakes" ago. I'm never going back.

[-] ForynGilnith@lemmy.world 26 points 1 year ago

For me, they'd have to

  1. Replace /u/spez
  2. Implement some sort of publicly auditable accountability re: shadowbans and database-level comment editing
  3. Open-source significant parts of their platform.

I have zero expectation that any of these things will happen. The most healthy way forward, for an open and free internet, is the meritocracy of the fediverse.

2
So long, Reddit! (lemmy.world)

...and FUCK YOU spez!

1

This one was taken during a "we've gotta get out of the house and do something...anything!" phase during the pandemic.

Only the main cave was open, but it was still a great visit to a very unique national park. We hope to go back some day now that the rest of the caves are open and guided tours are back on.

1

This brought back memories when looking for something to post in this new community.

This picture was taken during my trip to Pinnacles National Park in 2015, which was two years after President Obama redesignated it from a monument to a National Park.

[-] ForynGilnith@lemmy.world 3 points 1 year ago

I picked up some cheap blueberry bushes from a local nursery and planted them in the ground this weekend. I had tried growing them about 3 years ago but it didn't work out.

These ones are hooked up to irrigation now and they're in a better spot so fingers crossed!

[-] ForynGilnith@lemmy.world 2 points 1 year ago* (last edited 1 year ago)

We're not sure - when we adopted her as a kitten from the shelter they called her "domestic shorthair" but she poofed out and got long haired around 1.5yrs old.

[-] ForynGilnith@lemmy.world 2 points 1 year ago

Using hyprland+nvidia, I've had good luck using this screen_shader command:

hyprctl keyword decoration:screen_shader /path/to/flux.glsl

Where flux.glsl is

// blue light filter shader
// values from https://reshade.me/forum/shader-discussion/3673-blue-light-filter-similar-to-f-lux

precision mediump float;
varying vec2 v_texcoord;
uniform sampler2D tex;

void main() {

    vec4 pixColor = texture2D(tex, v_texcoord);

    // green
    pixColor[1] *= 0.855;

    // blue
    pixColor[2] *= 0.725;

    gl_FragColor = pixColor;
}
view more: next ›

ForynGilnith

joined 1 year ago