thegreekgeek

joined 2 years ago
[–] [email protected] 1 points 2 months ago

So it's like a LibraryBox with an Archiver?

[–] [email protected] 2 points 2 months ago

It usually is with wine lol

[–] [email protected] 13 points 2 months ago (3 children)

You need calibre with the De-DRM extension and an old version of the kindle desktop app.

[–] [email protected] 3 points 2 months ago

THE FUCK THEY ARE

[–] [email protected] 7 points 3 months ago

Yeah this terminology just gives me the impression they don't consider the AGPL to an actual license

[–] [email protected] 2 points 3 months ago

Wow, what assholes

[–] [email protected] 4 points 3 months ago (2 children)

the Green Jedi woman

You mean Jedi Master Nebula?

[–] [email protected] 2 points 3 months ago

I use FreshRSS in a docker container both served and funneled from my tailscale network (can't fetch feeds otherwise) and I read it on mobile with FeedMe. My main reason for using FeedMe is the customizable mobilizer though I'm pretty sure you can enable that in FreshRss as well.

[–] [email protected] 2 points 3 months ago* (last edited 3 months ago)

I just saw one in fdroid and I can't remember it now, lemme see if I can find it.

EDIT: it was zulip

[–] [email protected] 1 points 3 months ago

It should! As long as you can get it to the bios screen you should be able to get it to boot a live USB. I actually resurrected my EeePC1005 two weeks ago with DamnSmallLinux2024.

[–] [email protected] 1 points 3 months ago

How I keep that sort of thing in a single automation is by using trigger IDs and a service call with a template for said trigger id.

Something like this:

alias: Hallway Motion Light
description: ""
trigger:
  - platform: state
    entity_id:
      - binary_sensor.hallway_motion_occupancy
    to: "on"
    id: "on"
  - platform: state
    entity_id:
      - binary_sensor.hallway_motion_occupancy
    to: "off"
    id: "off"
    for:
      hours: 0
      minutes: 1
      seconds: 0
condition: []
action:
  - service: light.turn_{{ trigger.id }}
    data:
      transition: 3
    target:
      entity_id: light.hallway_light_2_2
mode: single

view more: ‹ prev next ›