Germany will forever simp to Israel. Isn't it enough yet? They're now trying to swallow even the balls.
No, just two copies of an appimage and an AUR package that I have extracted into a
.pkg.tar.zst
where I can install it any time I do a reinstall on my system. I backed that shit up in like 4 places. Also, just found out that Suyu is still up and running. It's being mirrored everywhere and you can still download and install it for Windows Mac and Linux. Got a copy of that, too.
Bruh, I laughed so hard. Wtf 😂
I have several copies of Yuzu in multiple backup locations. They're all local. Fuck Nintendo.
Or they could save billions, AND make billions after, just by legalize, tax and regulate it. Once that happens, the cartels will die off on their own. But hey, the defense lobby is really strong... So.
I just don't care. I have my own shit that I have been dealing with already.
Thank you.
I've only read fairytale and it was very good. I loved it so much. Pet Sematary was just complete insanity (might be my favorite honestly), and I still think about it. Lol
Tried to start the dark tower, but then got lazy. I'm currently reading Christine in Arabic. Still at the beginning. Good so far. I really like King. His style speaks to me directly.
Would be hilarious if the onion just told Musk to shove that account up his ass and take took it to bluesky
And that's how it'll collapse. People will burn it to the fucking ground.
A country where money gives you power over even the justice system, is just a joke of country and will eventually collapse on itself.
Just finished pet Sematary (that book got to me) and now reading Christine.
Yeah, it works but very slow. It looks like it's a site that recommends books? I was looking for a download button or something, but nothing is there.
Also, thank you so much.
Thank you. I've read a ton of historic nonfiction, and some historic fiction myself. Checked with our lord and savior AI and it gave me some names and books. Got a couple and about read them. One is the blue elephant (الفيل الأزرق). They say it was best seller, so let's what it's about. Also, that site you linked never opens from my phone. Tried 3 browsers and it still didn't want to open.
Any Arabic readers around here?
Any Arabic folks around here? I'm looking for Arabic books that are similar to Stephen King's style. Doesn't have to be 100%, horror or some fantasy. I've found some of his books translated, but I'd like to read those genres written by actual Arabic writers. I've been away from that part of the planet for around 15 years and I haven't been following our modern writing to be honest. I've read many books for older novelists like نجيب محفوظ and طه حسين and some others, but I'd like to catch up on any new ones. Thanks in advance.
Lmao. They think they can do that and succeed? Do they think movies are real?
Gave me a boner looking at all these toys. Damn
100% Adam Sandler's voice kept playing in my head from Transylvania. lol
These are hands down the most fascinating animals in my book. They're just amazing.
Ai says it goes in
~/.config/kwinrc
Why does/should it take at least 5 steps to add a widget?
I just noticed today that if I needed to add a new widget to my desktop/panel, I had to right click on the desktop/panel, enter edit mode/show panel configuration, click on "add or manage widgets, click on "Get new" then click on "download new plasma widget" THEN the store opens then I searched for the widget I needed. Then you are in this limbo state where the desktop is in edit mode, but you can still type into the store. Then if I wanted to add that widget to my desktop, I'd have to go back to the "add or manage widgets" and click it again and then find the new widget. Why so many steps to add one thing? Or I can go into Discover to look for it, install it and then repeat most of those steps I already mentioned. Am I the only one? I can't be, can I?
Marvel's guardians of the galaxy
Fire up a wild ride across the cosmos with a fresh take on Marvel's Guardians of the Galaxy. In this third-person action-adventure game, you are Star-Lord, and thanks to your bold yet questionable leadership, you have persuaded an oddball crew of unlikely heroes to join you. Some jerk (surely not yo...
Not sure if this has been posted, but this is an awesome game and it's free. EDIT: you need to have prime membership, btw. Forgot to mention that. Thanks to @free for pointing that out.
Suggestions on kids' books
Hello, fellow readers!!! Any suggestions on books for an 11 year old little guy? Preferably books with very little number of pictures or not at all. Thank you
Edit: I'm reading all of your comments. Thank you so very much, everyone. I really appreciate. Please keep them coming. I'm saving every single one of them <3
Question about Pika backup
Hi all, I have a smaller nvme for my root and home partitions, and I wanted to upgrade to a 1TB. I have several drives on my machine and have been backing up in different ways. One way is I just copied all of my home folder and pasted it on one of the drives. Another way is I copied that folder to my NAS. I also have Pika backup setup to do automatic backups daily to one of the drives. My question is, how do I go about the process of restoring my backup with Pika? Do I reinstall the whole system, install Pika, point it at its old backup folder and have it restore? If so, what does it actually restore? Does it originally back up apps, their data and whatever I have in my home folder, then it restores all of that to the new system? Or does it only back my config files and home folder? Sorry if this is an obvious and dumb question, but I really don't want to do things from scratch since I've had this same install for a long time and I've set it up the way I like it. Running Endeavour OS with KDE plasma. Thanks in advance. P. S for this who wonder why I didn't separate root and home partitions since I have many drives It's a long story and it would be off topic and I don't want to bore you all with it.
A tutorial I got from AI to help me improve font rendering.... And it worked fantastically
I have been raging about the font rendering on Linux for years. It just sucks. Font has jagged edges and it looks very weird. I dual-boot with windows and the font there is very nice. So, I asked Claude ai to help me and it did a great job and my font is now is actually better than windows. I wanted to share it with everyone in case you have the same issue with the font on Linux.
Here it is:
- First, install required packages:
sudo pacman -S freetype2 cairo fontconfig
2. Install better fonts:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts ttf-roboto ttf-roboto-mono ttf-droid ttf-opensans ttf-hack ttf-fira-code
I have also installed Segoe ui and Segoe UI Variable fonts and that is what I'm using now.
3. Create or edit the font configuration file:
``` sudo mkdir -p /etc/fonts/conf.d
sudo nano /etc/fonts/local.conf ```
4. Add this configuration to local.conf:
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match target="font"> <edit name="antialias" mode="assign"> <bool>true</bool> </edit> <edit name="hinting" mode="assign"> <bool>true</bool> </edit> <edit name="hintstyle" mode="assign"> <const>hintslight</const> </edit> <edit name="rgba" mode="assign"> <const>rgb</const> </edit> <edit name="lcdfilter" mode="assign"> <const>lcddefault</const> </edit> <edit name="embeddedbitmap" mode="assign"> <bool>false</bool> </edit> <edit name="autohint" mode="assign"> <bool>true</bool> </edit> </match> <!-- Increase contrast slightly for all fonts This is not mandatory and can be commented out--> <match target="font"> <edit name="weight" mode="assign"> <const>medium</const> </edit> </match> </fontconfig>
5. Create a file for FreeType settings:
sudo nano/etc/profile.d/freetype2.sh
6. Add these export commands (I found it there already, but it was commented out. Just removed the "#"):
export FREETYPE_PROPERTIES="truetype:interpreter-version=40"
7. Enable subpixel rendering: (You might get a message that says "File exist", that's ok. It means it was already there)
``` sudo ln -s /etc/fonts/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
sudo ln -s /etc/fonts/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/ ```
8. Clear and regenerate font cache:
fc-cache -fv
9. For better Java application fonts:
sudo pacman -S jre-openjdk fontconfig
10. Reboot
************************************************************************ Additional optional steps: a. For better Firefox font rendering, in about:config: Set
gfx.font_rendering.cleartype_params.rendering_mode
to 5 (This doesn't exist in FF. You create it, set it to "number" and give it a value of 5)
Set
gfx.webrender.all
to true
b. If you use VSCode, add to settings.json:
``` { "editor.fontFamily": "'Fira Code, 'Droid Sans Mono', 'monospace'",
"editor.fontLigatures": true } ```
Truly hope this help someone. Share it with others if you think it will help them.
Thanks :)
Do I need to install any drivers for AMD GPU
Hi all,
I've been using an RX 580 for about a year now. It's been ok, but I needed an upgrade for a little more FPS. Found this RX 6600XT used and snagged it for $100. Are there any packages I'll need to install to make sure I get the best out of it? I know AMD support is baked into the kernel, but I remember having to install some Vulkan driver for my old GPU when I had some gaming issues. Any suggestions would be very much appreciated.
Distro is Endeavour OS with the latest KDE plasma on Wayland. Thank you
Nonfiction readers. Do you feel guilty reading fiction?
Do you feel guilty when you read fiction some times? Do you feel like it's a frivolous pursuit? Sometimes, I do, because I'd think to myself "might as well watch a TV show", and I hardly ever watch TV shows because, to me, they're a waste of time. But damn it, some of these novels are so good and I can't stop once I started reading them.
App refreshes when running in the background
The app hardly ever keeps my place in the feed when I exit it and come back to it after a while, and then I'd go hunting for where I was. My phone has 16GB of RAM, so that's plenty.
Opinions on Stephen King
This may sound dumb, but I've never read for this man. I've always just heard about him on social media but never ventured to read his work. Opinions, please. Should I invest? Feeling like fiction lately. I've read so much non-fiction through throughout my life that I think I deserve a couple of fiction books to get busy with for a little while.
Thanks in advance
EDIT: Thank you so much to all who answered. I have read and appreciated every single comment. I have decided to start with fairy tale since I ran into the book at Walmart. So giving that a shot to see. Thank you so much
If you haven't read "the count of Monte Cristo", do it now
Holy shit! This book is insane. I'm half way through it, and I can't even express how I feel about this book. Masterpiece? Doesn't give it justice. I've never done this in my life over a book (and I've read well over 500 books for the last 30 years), I got emotional during some parts of this book. I have ADHD and it's very hard for me to focus when reading, unless it's an extremely good book like this I guess. This probably sounds silly to some. The reason why I'm only just finding out about this book is because I'm new to the West. An immigrant if you will, and never heard of this book until a couple of weeks ago. If you haven't read this book; I highly recommend it. Alexandre Dumas is a genius.
Anyone has been using Wayland with zero issues?
Is it just me, or are you folks running Wayland with no issues? I've even forgotten I was on Wayland until I looked at the settings the other day. I have all AMD, btw. I have zero issues so far. Anyone else?
What language do you read in?
I read in both Arabic and English. Some books are very hard for me to grasp, so I find a translated copy and read it in Arabic. For example, I'm currently reading "the Count of Monte Cristo". It Has some old English that gets me confused a lot, even though I have a Kobo where I can just press and hold on a word to translate it, but still, the storyline as a whole got confusing, so I read it in Arabic. Much better. I'd love to hear from folks here :)
Why does Maliit work on desktop?
Hi all, I have a desktop and laptop with a touchscreen. Both running Plasma/Wayland. English is my second language and I search things in my language often. Maliit works just fine on the laptop, but it's basically a dud on the desktop. I can only enable and disable it. It never shows nor work at all on the desktop. Tried onboard, gnomes on screen keyboard, and that thing is useless, too. Anyway to make Maliit work or is there an alternative? I really need it for the desktop. Thanks.
Got an email from ISP
How does this firm (or whatever it is) know I torrented something? My VPN app took a shit in the middle of a download and I think it exposed my IP to some "anti-piracy" bullshit firm that contacted my ISP. ISP emailed to let me know and to "not do it again". How does this firm know about torrenting? Do they like watch these sites and hope someone's VPN slips like mine did today?
"make capslock an additional Ctrl" option was removed in the latest update
Running Endeavour OS Linux and just updated to plasma 6.0.5, framework 6.3.0, Qt version 6.7.1 on Wayland. I use capslock strictly as my brain refuses to learn using shift (I do touch type no problem), but as well know the capslock is very slow on Linux which always results in text like THis. So, I've found a fix for it online and one of the steps is to enable the option "make capslock an additional Ctrl", but that's not gone :/ What to do?
Add an a flair or any indicator when a post is locked
Not sure if this is something voyager can do or if it's a Lemmy thing. I don't see any indicator that a post is locked when the mods lock it.
Day/night or light/dark wallpapers
Hi all, I've been searching the web for a long while now and I can't find anything. Maybe it's just my rusty English (second language of course). I have an app called "dynamic wallpapers" that creates two wallpapers into one where one is light and the other is dark. The light one is automatically selected by my system when I have the light theme on, and the dark one is also automatically selected when I have the dark theme on (I hope this makes sense). I use the gnome desktop on Linux if that helps. So, I'm looking for wallpapers that are exactly the same, but one is dimmer than the other for both themes. For example, a picture of a mountain with the sun above it, and another with the same mountain and everything, but it's night time and the moon is there instead of the sun. Or just like the windows 11 default wallpaper, the light one and dark one. I really hope I'm making sense. Please ask me for more details if I'm not making sense. Does anyone know of any website that has such wallpapers? Please let me know. I'd very much appreciate any help. Thank you.
Are there any EV cars without any "technology"?
Like the title says, are there any EVs that just have a Bluetooth radio and that's it? Like a normal car, not a smartphone on wheels? If not, do you all think that this will actually happen at some point? This is the main reason why I can't (and will never) buy an EV. I like to have actual buttons everywhere on my car. I think those massive tablets on these cars with all the touch buttons are very dangerous. I like an "entertainment system" that only connects to my phone with either a headphone jack of or Bluetooth. It's a car, not a PC.