quaff

joined 2 years ago
[–] quaff@lemmy.ca 2 points 4 months ago (1 children)

Are there any updates regarding microphone and Touch ID support in this release?

[–] quaff@lemmy.ca 2 points 4 months ago (2 children)

Are there any updates regarding microphone and Touch ID support in this release?

[–] quaff@lemmy.ca 1 points 5 months ago* (last edited 5 months ago)

I removed mine since I moved away from Gitlab. There's other comments with working docker composes, but here's the latest working version of mine if you're interested:

services:
  gluetun:
    image: ghcr.io/qdm12/gluetun:latest
    container_name: gluetun
    # line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun
    restart: always
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    volumes:
      - ./data:/gluetun
    environment:
      ## ProtonVPN Wireguard
      - VPN_SERVICE_PROVIDER=custom
      - VPN_TYPE=wireguard
      - VPN_ENDPOINT_IP=${WIREGUARD_ENDPOINT_IP}
      - VPN_ENDPOINT_PORT=${WIREGUARD_ENDPOINT_PORT}
      - WIREGUARD_PUBLIC_KEY=${WIREGUARD_PUBLIC_KEY}
      - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
      - WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES}
      - TZ=Etc/UTC
    ports:
      - ${QBITTORRENT_EXPOSED_WEBUI_PORT}:8080/tcp # qBittorrent Web UI

  qbittorrent:
    # https://docs.linuxserver.io/images/docker-qbittorrent
    build: .
    container_name: qbittorrent
    restart: always
    volumes:
      - ./config:/config
      # using download path as mount so other services can play nice
      - ${QBITTORRENT_DOWNLOAD_PATH}:${QBITTORRENT_DOWNLOAD_PATH}
      - ${QBITTORRENT_THEMES_PATH}:/themes
    environment:
      # https://github.com/linuxserver/docker-qbittorrent#umask-for-running-applications
      - PUID=${QBITTORRENT_WRITE_UID}
      - PGID=${QBITTORRENT_WRITE_GID}
      - UMASK=0002
      - TZ=Etc/UTC
      - WEBUI_PORT=8080
    network_mode: "service:gluetun"
    depends_on:
      gluetun:
        condition: service_healthy

  portcheck:
    image: eiqnepm/portcheck:latest
    container_name: portcheck
    restart: always
    environment:
      - QBITTORRENT_PORT=6881
      - QBITTORRENT_WEBUI_PORT=8080
      - QBITTORRENT_WEBUI_SCHEME=http
      - QBITTORRENT_USERNAME=admin
      - QBITTORRENT_PASSWORD=${QBITTORRENT_ADMIN_PASSOWRD}
      - TIMEOUT=300
      - DIAL_TIMEOUT=5
    network_mode: "service:gluetun"
    depends_on:
      qbittorrent:
        condition: service_healthy
[–] quaff@lemmy.ca 1 points 5 months ago* (last edited 5 months ago) (1 children)

That’s great to hear! I’m glad you found the mismatched data 🙏🙏🙏 hopefully finding the root issue doesn’t cost you too many cycles 🫡

[–] quaff@lemmy.ca 2 points 5 months ago (3 children)

Caught it again! Seems to be happening quite frequently now. I spot it by looking for mismatched community icons.

https://imgur.com/a/txeMgW8

[–] quaff@lemmy.ca 1 points 5 months ago

It’s happened on a previous beta, I can’t remember if it was the last one or the one before that.

I had it happen again yesterday. Not related to those two communities. Same issues, the feed showed one thing, but with mixed data (I think the community thumbnail was displaying the post that actually loads). I’ll make another video when I see it again 🙏

[–] quaff@lemmy.ca 1 points 5 months ago* (last edited 5 months ago) (1 children)

The TenForward community I sub to is favourited, other than that, no filters or anything done to it.

[–] quaff@lemmy.ca 4 points 5 months ago* (last edited 5 months ago)

Pretty simple to switch (if you have a little docker experience). Create a folder (e.g. ./postgres), add the folder as a volume in the postgres portion of the compose file (maybe something like /db), then run just the database with newly mounted folder, shell in, and copy everything from the Postgres folder to this new folder. After that, swap mounts so the new folder is used as Postgres db and you’re good. If something went wrong, the pgdata volume is still there to switch back to.

[–] quaff@lemmy.ca 3 points 6 months ago

Got a DM from the OP:

Hey! Sorry, I'm replying in PM instead for this thread. Since I'm new to lemmy, the post was removed on my instance because I didn't have enough karma to post pictures but it still got published to lemmy.ml.

The things I'm using are:

  • OS: Nix
  • WM: Sway
  • Bar: Waybar
  • Fonts: Iosevka Aile + Pragmata Pro
  • Emacs windows: Eww + Mu4e + .emacs config

Full dots are here https://git.mccd.space/pub/dotfiles/

[–] quaff@lemmy.ca 4 points 6 months ago (1 children)

Asahi Linux is shaping up nicely. I’ll probably install that soon. 👀

[–] quaff@lemmy.ca 8 points 6 months ago

True that. Small victories 🥲

[–] quaff@lemmy.ca 5 points 6 months ago (1 children)

Make one, if for nothing else as a portfolio piece!

view more: ‹ prev next ›