also at beehaw

  • 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle







  • I’d think about it at a high level and then get more granular. What are your favorite riced screenshots? What parts of them particularly appeal to you? On the other hand, are there things about your setup that bother you? Then, take what you like and don’t like and let that guide you in customization.

    I am pretty opinionated, so I care about changing little things. Examples of little things I tweaked when installing KDE recently:

    • made the digital clock display on one line instead of two
    • removed blur from lockscreen
    • hid user info + switch user options from lockscreen

    For me the rest of the visual adjustments came from picking color schemes, fonts, icons, and wallpapers I like.


  • That’s helpful; this sounds like a docker issue or qBit issue then. The default qBit location for torrents is /downloads, but you’d need to make sure to point it towards the container volume mapping you’re setting up in docker.

    my relevant qBittorrent compose volume mapping is as follows:

        volumes:
          - /volume1/shared/torrents:/data/torrents
    

    Personally, I don’t separate my torrent downloads by type; I use incoming & completed folders. Here’s how I set up my qBittorrent config:

    Original Value New Value
    Session\DefaultSavePath=/downloads/ Session\DefaultSavePath=/data/torrents/1_completed/
    Session\TempPath=/downloads/incomplete/ Session\TempPath=/data/torrents/2_incoming/
    Downloads\SavePath=/downloads/ Downloads\SavePath=/data/torrents/1_completed/
    Downloads\TempPath=/downloads/incomplete/ Downloads\TempPath=/data/torrents/2_incoming/