• 1 Post
  • 446 Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle


  • I use a Boox Note, and I like it a lot. Its an android based eBook reader so you have full access to android apps including side loading apps from other stores.

    By default it does not have Google services set up but you can use the Play store should you want. But its not integrated to googles services. Obviously there is some integration to Onyx Boox services which is based in China. However infindnit is unobstrusive and you dont have to use their store or any of their tools.

    Personally I use Calibre on my Linux PC to manage my books on the device, and I use fbreader as a reader (closed source) but you can install open source software if thats your preference. KOReader certainly works but I’m not a big fan of the interface personally.

    I use ebooks.com to buy books (and calibre to remove DRM so I can use my preferred software), and you can install the Kindle app to access a kindle library if you haven’t liberated your books yet. Ebooks reader works on the device too. Obviously DRM free books from any source and format can also be used.

    My device - the note - has an nice crisp screen, is well made with a nice aluminium chassie and is comfortable to hold. I read books in portrait mode so you have 2 pages visible at a time. Its also good for a4 size documents. They do also have smaller sizes that match a kindle paper white.


  • KDE config files can be changed on the command line using:

    kwriteconfig

    And viewed using

    kreadconfig

    Power management is in:

    ~/.config/powermanagementprofilesrc

    And

    ~/.config/powerdevilrc

    You can feed changes to the file via kwriteconfig via the command line OR create a duplicate file with different settings and use rename commands in a script file to switch back and forth.

    E.g. rename the file to “powermanagementprofilesrc.backup” and create and rename a custom file with the settings you want like “powermanagmentprofilesrc.one” to “powermanagementprofilesrc”. Rename them back and forth via a bash script to switch “profiles”

    To apply changes you’d need to then run qdbus:

    qdbus org.freedesktop.powermanagement /org/kde/Solid/PowerManagement org.kde.Solid.PowerManagement.reparseConfiguration

    And then to load the new config in your current session:

    qdbus org.freedesktop.powermanagement /org/kde/Solid/PowerManagement org.kde.Solid.PowerManagement.refreshStatus

    So either use kwriteconfig and qdbus in a script OR make duplicate config files and a bash script to copy or rename the configs as needed plus qdbus to apply the changes to the current session.

    There may be a much simpler way of switching profiles already actually defined within the exisiting config files (e.g. battery saver vs performance) using qdbus but I’m not sure how to do that myself. Possibly using:

    org/kde/Solid/PowerManagement/Actions/PowerProfile

    EDIT2: Sorry this is a very long post! Just to say if you’re new to linux and want to understand a bit: qdbus is a tool for QT based applications (including almost all of KDE which is build in QT) to interact with DBUS which is basically the messaging system in linux between processes.

    So when you run qdbus on it’s own you’ll see a tree of processes that are interacting with QT processes. Then if you run qdbus & the name of a process like “org.freedesktop.powermanagement” you’ll see what QT processes are running with/under it. Then if you run dqbus and add that connected process like “/org/kde/Solid/PowerManagement” you can see what strings and options are available. Then you can run qdbus to see more detail or change a setting/string.

    Hope that make sense!



  • BananaTrifleViolin@lemmy.worldtoLinux@lemmy.mlframework 13 AMD... yay or nay?
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    7 days ago

    I have a linux desktop with dual 4K screens and I don’t have problems with high DPI? The only problems I’ve come across is with Wine which is easly fixed within the winecfg.

    I’m on OpenSuSE, using KDE in X11. I DID have scaling problems with Wayland which I avoid until it is fit for daily use.

    Of course 4k is 4 times 1080p (or twice in X and Y dimensions) so maybe it’s much easier to scale to? 2K on the Framework is an odd resolution so maybe scaling would be more troublesome? 1080p to 1440p would be 1.3x scaling.


  • I was dead against losing my 3.5mm jack, and tried to use a USB-to-3.5mm adaptor but it was poor, with issues like your sister experienced.

    I finally decided to try a set of relatively cheap earplugs and I wish I’d done it sooner. They’re lightweight, have good connectivity and a convenient charging case. I’m getting better quality audio and experience than I was with my 3.5mm jack - i’d have to replace my headsets every year or less as the wires got damaged over time, and the audio quality is actually better with my bluetooth earplugs. I used to avoid bluetooth after bad experiences over the years with audio drop out and connection issues, but I’ve not had any problems with my newer devices.

    I’m not pretending they are audiophile quality but neither is 3.5mm audio in a phone - they just don’t have good quality DACs in phones. Bluetooth is finally a decent and convenient step up for me for day-to-day use and I’m finally not as bothered about losing my 3.5mm port. It’s also worth noting that if you want better audio, you can get bluetooth DACs and plug wired audio into those for an even better experience - I’m tempted but it’s expensive and I’m not sure I’d appreciate the benefit enough to make it worthwhile for me.




  • You can read NTFS drives; I still have shared drives from my Windows install despite barely using Windows at all.

    You can generally import steam libraries, and then steam can do the proton work.

    And you can sometimes run other programmes in Linux from the windows install - i.e. it can have it’s own Wine prefix in Linux and use the installed files on the NTFS. But this doesn’t always work - if the programme’s or game’s installer makes significant system changes or installs other software then they won’t exist in the Wine prefix and the game may not work. It’s better to install windows games fresh so everything is installed into the wine prefix.

    And Lutris is well set up with scripts for installing a wide range of games from their installers; it will avoid problems reinstalling games fresh.



  • My advice having made the move (but with a fair bit of linux tinkering before hand):

    • Don’t rush to delete Windows; you’re doing the right thing keeping it about while you adjust to a new OS and in case there are some things you just can’t do in Linux
    • If you want to understand your OS and enjoy tinkering / learning, think about using a virtual machine to play with a linux system to get used to it. As you’re on Fedora, you can install KVM and Virt-Manager, make a virtual machine and inside it install another Linux OS which you can practice with. It can even be Fedora - and this can let you make changes in a disposable environment before you do them for real in your whole OS or just to see “what happens if”. I’ve even built an Arch system within a VM just so I can understand more of how linux works
    • Back up your home folder before making really big changes - this is where everything that belongs to you is kept, and even contains all your personal config files. Back up and restoring the Home folder can make things much faster to fix if you accidentally mess things up

  • Depends on what distro you’re on? You say the deb version is 4.0 and flatpak is 5.0, suggesting you may be on a long release distro?

    I’d favour the Deb version as it’s official for your distro. The flatpak version is unverified; it’s extremely unlikely Virt-Manager is compromised or will cause any issues but virtual machines do have security risks.

    Also problem solving issues with the flatpak version may be more difficult as you have a whole layer potential issues in the sandbox on top of all the other issues people can have around KVM/QEMU. But you could install it, if it works great, if not, revert to the Deb version.


  • Sorry I originally posted around permissions as I misunderstood; deleted that. The solution is below:

    If it’s a user installed flatpak you should find the config files in:

    ~/.local/share/flatpak/overrides

    Edit the document for the flatseal app. Thats where flatseal or the flatpak override tool makes it’s config changes for user installed flatpaks (including env overrides). You can also delete the flatseal file (which will be the name of the flatpak - com.github.tchx84.Flatseal) "to set back to default.

    There will only be a few files - files are only created when there are overrides set. Anything running default permissions/config won’t have an override file.

    EDIT: For completeness, for System wide flatpaks all the files are in:

    /var/lib/flatpak

    Just to explain why they’re stored there: you’re trying to change the config of the sandbox itself not the app. Flatpak manages the sandbox and it is flatpak that needs to know what permission an app should have. Any files in “~/.var/app/…” pertain to the app itself inside it’s sandbox.



  • I have a living room HTPC connected to my tv and have Jellyfin Media Player on that, and it works well. Obviously thats more of an investment than a firestick. Mine was £290 when I got it, I installed linux and I use it for gaming (including locally and streaming more graphically intense games from my PC), watching some streaming services and browsing the internet on my TV.

    I do also have a Chromecast with Google TV stick in another tv. I use that purely for streaming and it also has the Jellyfin App installed.

    I find both my HTPC and Chromecast are good with Jellyfin. No issues at all, good consistent streaming. But note HDR in linux can be finicky if thats important to you. Of course most come with Win 11 so you have that choice too (I wiped windows off mine)

    I do have kodi on my HTPC, works fine with Jellyfin/jellycon but I prefer desktop mode and the jellyfin media player myself. I tend to use the pc with a Bluetooth mouse and keyboard, so dont really use Kodi.

    My PC was £290 but I got one that could do a bit more gaming. You can get them for £100-£160 and they’d likely be more than capable of streaming 4k content. Better than a Pi 4 and more versatile than a £60 4k fire stick (even if more expensive - might be justified if itnopens up new uses for your tv)

    Other option of course is a Raspberry pi 5 - more powerful than the 4. Ive not tested my pi5 with Jellyfin much so cant comment on how it suites the task.


  • So from what I’ve seen on Lemmy over the last year is that the quantity of posts and variety of topics feels like it’s going up. I certainly enjoy engaging on here.

    Will it stagnate? I’m not sure. It might be that the monthly user levels stabilise but thats not the same as stagnate. If people are engaged and enjoying their time then it has value.

    My feeling is that Lemmy will slowly grow over time. I don’t see it becoming a huge platform like Reddit anytime soon. Its feasible but it feels like for now it will remain niche.

    But I also dont want to it suddenly become huge. I was on reddit for a long time and I saw it evolve from being something small and interesting to a behemoth and enshittification to make money. Small is sometimes better, and small or stable in no way means stagnation.


  • As a Brit, I’m not offended by the Proton CEO’s post. I don’t like Donald Trump BUT I do like that he has hired someone who should be tough on tech anti-trust moves. This is very important.

    Americans can be obsessed with their electoral system, but the rest of us don’t have to pretend to support the Democrats or Republicans. I don’t necessarily agree with all of Andy Yen’s take regarding the two parties, but I’m not offended enough by it to boycott Proton, certainly not based on one tweet. I can also see the pragmatic benefit to his position by massaging trumps well known fragile ego.