• 2 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: March 14th, 2024

help-circle

  • I just don’t think it looks very good. I know that everyone has different tastes of what looks good but I personally love modern design when it comes to UI and IMO Android was the best looking OS UI and right after that GNOME. But part of why I think both of them look so good and why I think they even look better than Apples design, is that they don’t use blur. I don’t think it really fits into the Material 3 design language.







  • My parents bought Xiaomi TV box (could search for the exact name if anyone’s interested), which runs GoogleTV (Which is just AndroidTV, they renamed for some reason) and comes with a remote. It even has hardware acceleration for AV1 playback. Downside is of course that it has all the Google spying shit and ads in the home menu but at least it works well and you can use all the apps you want without issue. Idk if there’s something like LineageOS for AndroidTV, that would be great.









  • A mini-pc with an Intel N100 will be a little more expensive (I bought one for ~150€) but it’s about 5-6 times faster than the Pi and mine also came with 16gb of RAM and a 500gb SSD. It requires very little power and because of that, it’s also very quiet. AV1 decode is also great if you plan to run something like Kodi on it or you want to do transcoding from an AV1 video with Jellyfin (I haven’t migrated those to it yet, so I don’t know how well it works in practice). I’m not sure but it might not even be a lot more expensive than a Pi with 8gb of RAM and an additional 500gb SSD.


  • You just need the docker and docker-compose packages. You make a docker-compose.yml file and there you define all settings for the container (image, ports, volumes, …). Then you run docker-compose up -d in the directory where that file is located and it will automatically create the docker container and run it with the settings you defined. If you make changes to the file and run the command again, it will update the container to use the new settings. In this command docker-compose is just the software that allows you to do all this with the docker-compose.yml file, up means it’s bringing the container up (which means starting it) and -d is for detached, so it does that in the background (it will still tell you in the terminal what it’s doing while creating the container).