Shameless plug: I am the author.

  • @Samueru@lemmy.ml
    link
    fedilink
    12 months ago

    It’s empty lol, it’s a directory on tmpfs that i use to build programs and similar stuff to not be hammering my ssd with unnecessary writes.

    I have $XDG_CACHE_HOME in tmp as well and I moved the mesa sharer caches to $XDG_STATE_HOME as that’s really the only thing so far I’ve needed to preserve.

    • @tabular@lemmy.world
      link
      fedilink
      English
      1
      edit-2
      2 months ago

      tmpfs (…) to build programs (…) to not be hammering my ssd with unnecessary writes

      Sounds useful. How did you setup the directory?

      Running df tells me “tmpfs” is mounted on /run. If I build in that that directory then would it be stored in RAM, or do I need to do something else?

      • @Samueru@lemmy.ml
        link
        fedilink
        32 months ago

        I have /tmp in my fstab with these mount options.

        tmpfs /tmp tmpfs rw,noatime,size=20G 0 0

        And the rest of the setup is done in my zprofile