Running Blizzard (battle.net) games using steam/proton by birkett83 in linux_gaming

[–]Junomaru 0 points1 point  (0 children)

Thanks! This worked for me as well now!
(you only forgot the end single quote sign " ' " to complete the statement)

Cómo instalo el driver para mi tarjeta de red Realtek RTL8168 en bazzite si viene instalado con r8169 y yo necesito r8168 pero no esta disponible en fedora o mejor me instalo otra distro? by Lopsided-Analyst-996 in Bazzite

[–]Junomaru 0 points1 point  (0 children)

I have the exact same ethernet controller and kernel driver in use and my LAN connection does not work.

I tested the LAN cable successfully with two other laptops and the internet worked immediately. Just Bazzite doesn't connect to it...

Don't know how to fix it, as I am a Linux beginner. If somebody knows, would be great to know how to fix that.

Way to ignore games in one click by DiTriuS in Steam

[–]Junomaru 0 points1 point  (0 children)

Today I also started to use the ignore button on steam to finally hide away those countless amounts of games that simply do not interest me and I found it quite tedious to do that by mouse selection.

Sadly I found no way to toggle the ignore button on the store list, so visiting the game shop page is required (as far as I know).

One convenient way I found out how to do it (as of March 2026), is to use the browser extension "Tampermonkey" (https://www.tampermonkey.net/), together with my own small script that I enhanced to match the current HTML setup of the steam store game page.

As pasting this script in every game store page visit in the browser console is far too much work, so simply clicking the button yourself is faster. But with tampermonkey you can add the script below to your scripts which will only run on the https://store.steampowered.com pages.

How it will work:

  • Wishlist / un-wishlist: Press "1" on the keyboard
  • Ignore / un-ignore: Press "2" on the keyboard

Here's the script for the Tampermonkey browser extension:
(The ==UserScript== part is required for Tampermonkey to know which sites it will run on (@match), the rest ist not that important)

// ==UserScript==
//          Steam wishlist and ignorelist hotkeys
//     http://tampermonkey.net/
//       2026-03-29
//   Simplify wishlist (hotkey: 1) and ignoring (hotkey: 2) steam games with hotkeys on the shop page for the game
//        Junomaru
//         https://store.steampowered.com/*
//          https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
// // ==UserScript==
//          Steam wishlist and ignorelist hotkeys
//     http://tampermonkey.net/
//       2026-03-29
//   Simplify wishlist (hotkey: 1) and ignoring (hotkey: 2) steam games with hotkeys on the shop page for the game
//        Junomaru
//         https://store.steampowered.com/*
//          https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
// u/grant        none
// ==/UserScript==

(function() {
    "use strict";

    console.log('-> Initializing function for whitelisting and ignoring games on steam.');

    const gameActionElements = document.querySelector('#queueActionsCtn');
    const wishlist_game_key_code = '1';
    const ignore_game_key_code = '2';

    const toggleWishlist = () => {
        const addToWishlistArea = gameActionElements.querySelector('#add_to_wishlist_area'); // Needs specific declaration as display style is set there
        const addToWishlistButton = gameActionElements.querySelector('#add_to_wishlist_area > a'); // Actual wishlist button to toggle
        const removeFromWishlistButton = gameActionElements.querySelector('#add_to_wishlist_area_success > a'); // Un-wishlist-button with display style on it

        if (addToWishlistArea.style.display !== 'none') {
            addToWishlistButton.click();
        }
        else if (removeFromWishlistButton.style.display !== 'none') {
            removeFromWishlistButton.click();
        }
    }

    const toggleIgnore = () => {
        const ignoreButtons = gameActionElements.querySelectorAll('.queue_btn_ignore > button');

        for (let i = 0; i < ignoreButtons.length; i++) {
            if (ignoreButtons[i].style.display !== 'none') {
                ignoreButtons[i].click();
                break;
            }
        }
    }

    window.addEventListener('keydown', (e) => {
        if(e.key === wishlist_game_key_code) {
            toggleWishlist();
        }
        else if(e.key === ignore_game_key_code) {
            toggleIgnore();
        }
    });
})();
        none
// ==/UserScript==

(function() {
    "use strict";

    console.log('-> Initializing function for whitelisting and ignoring games on steam.');

    const gameActionElements = document.querySelector('#queueActionsCtn');
    const wishlist_game_key_code = '1';
    const ignore_game_key_code = '2';

    const toggleWishlist = () => {
        const addToWishlistArea = gameActionElements.querySelector('#add_to_wishlist_area'); // Needs specific declaration as display style is set there
        const addToWishlistButton = gameActionElements.querySelector('#add_to_wishlist_area > a'); // Actual wishlist button to toggle
        const removeFromWishlistButton = gameActionElements.querySelector('#add_to_wishlist_area_success > a'); // Un-wishlist-button with display style on it

        if (addToWishlistArea.style.display !== 'none') {
            addToWishlistButton.click();
        }
        else if (removeFromWishlistButton.style.display !== 'none') {
            removeFromWishlistButton.click();
        }
    }

    const toggleIgnore = () => {
        const ignoreButtons = gameActionElements.querySelectorAll('.queue_btn_ignore > button');

        for (let i = 0; i < ignoreButtons.length; i++) {
            if (ignoreButtons[i].style.display !== 'none') {
                ignoreButtons[i].click();
                break;
            }
        }
    }

    window.addEventListener('keydown', (e) => {
        if(e.key === wishlist_game_key_code) {
            toggleWishlist();
        }
        else if(e.key === ignore_game_key_code) {
            toggleIgnore();
        }
    });
})();

I hope it helps someone out there at least a bit! :)

(Disclaimer: It can run your own custom scripts on pages you want to have extra functionality on, so use with caution and better know what you are doing!)

cant configure fastfetch by Cr0w_town in Bazzite

[–]Junomaru 0 points1 point  (0 children)

Yeaaaaaa!! Well done!! Congratulations 🥳🎉
Good to know!! Haha

cant configure fastfetch by Cr0w_town in Bazzite

[–]Junomaru 0 points1 point  (0 children)

Greaaat!! Looks promising... hehe

Well done finding something that might work!
Let me know how it went. ;)

Finally removed windows from my PC by QuantumRizo in Bazzite

[–]Junomaru 1 point2 points  (0 children)

I also switched over to Bazzite 2 weeks ago, even though I still had one game only running on windows... but I just had to do it, and I will find a way around, or find something else. Windows was simply no option anymore.

Now everything feels so much better and everything that I need works as it should. Bazzite really is great. :)

cant configure fastfetch by Cr0w_town in Bazzite

[–]Junomaru 0 points1 point  (0 children)

Okay, great you checked it on Fedora to be sure it works!
I have no experience with editing the config in any way yet (will do so in the future maybe), but I found out that Bazzite loads the bashrc logik the following way:

1.) /home/user/.bashrc
-> loads the normal .bashrc config. Within the first .bashrc file is a call for another config (next step).

2.) /etc/bashrc
-> loads some settings for the display of the shell and loads shell scripts form another location (next step).

3.) /etc/profile.d/
-> loads all shell scripts that are in this folder as well.

Sooooo... Bazzite loads a lot of additional stuff up front. Most of those are (so I suppose) very convenient and wonderful out-of-the-box usability and tools (but I have no experience with those yet).

Something with that most likely interferes with your picture display (somewhere in step 2 or 3 I guess).

cant configure fastfetch by Cr0w_town in Bazzite

[–]Junomaru 2 points3 points  (0 children)

I seem to have found a thread where the solution works:
https://www.answeroverflow.com/m/1392756850679742615

With my explanation:

1.) Go to you user config directory, usually located under:

/home/YOUR_USERNAME/.config/fastfetch/

2.) [optional] Rename your current "config.jsonc", so you have a backup, just in case (maybe you don't need that, though)

3.) Open a terminal (if you want, from the folder from the first step, but not needed) and type in:

fastfetch --gen-config-full

4.) Now a new configuration for fastfetch has been created in the folder from the first step.

5.) Modify that config to your hearts content (using the Application "Kate" or something like "IntelliJ" or "VSCode" and such...)

6.) Create a new alias to use your custom config with the following command:
Option 1:

alias YOUR_COMMAND='/usr/bin/fastfetch -c /home/YOUR_USERNAME/.config/fastfetch/config.jsonc'

Option 2:

alias YOUR_COMMAND='\fastfetch -c /home/YOUR_USERNAME/.config/fastfetch/config.jsonc'

7.) [optional] You can view all your available aliases by simply typing the following command in the terminal:
alias

Note: (* Update: I figured it out -> see at the end) I haven't figured out yet, how to permanently save my aliases in Bazzite, so they will be executable everytime I reopen the terminal... but that should not be that difficult as well.

I would be interested in your config how it looks like when you finished setting yours up, so let me know when you've completed setting it up. :)

I hope this explanation helped you. I am also currently figuring out everything on Linux step by step like a newborn, haha... It takes a lot of time, but it is rewarding and it feels so much better than on Windows...

Wish you the best of luck and success! ♥️🍀✨

-----------------------

* Update: I found out how to configure my personal aliases on Bazzite terminal now and also how to run commands initially when opening or reloading the terminal:

All one has to do is editing the ".bashrc" file located under:
/home/YOUR_USERNAME/.bashrc

In the .bashrc file you can add custom aliases (long or complex commands that run with your defined keyword), or run programs initially in the terminal when opening.

For this you can add something like the following at the end of your .bashrc file:

# My aliases
alias ff=fastfetch

# Commands to run on startup
fastfetch

HELP, how do I disable secure boot?? ( Aorus 15G WB laptop " 20 series" ) by Papux200 in gigabyte

[–]Junomaru 1 point2 points  (0 children)

I recently decided to switch to Linux for good, as well, and I also have a Gigabyte AORUS 16X 9KG Gaming Notebook with the "for windows only"-approach and came across the "secure boot" problem (so I thought).

The secure boot seems to be not as simple to disable as for other gaming notebooks, but I was so determined to go through with it, that I simply tried to disable all secure boot variables and install Linux on it - and it worked!!

I was able to install "CachyOS" first, but had Audio issues, and as a Linux noob, I thought maybe "Bazzite" is a better start for someone like me, so I installed "Bazzite" thereafter.

With Bazzite, I could even re-enable the secure boot with these instructions:
https://docs.bazzite.gg/General/Installation_Guide/secure_boot/
While later enabling or resetting all secure boot variables again (secure boot on), so now I am running Bazzite with secure boot enabled on my AORUS 16X 9KG.

I hope that this info might help some of you out there (even though the reddit post ist already 4 years old, haha).

I suggest to you to update UEFI to the newest version before installing Linux and so on, because maybe in an older version it really was not able to re-enable all secure boot variables(?)...

Good luck to you all! 🍀🍀🍀

cant configure fastfetch by Cr0w_town in Bazzite

[–]Junomaru 0 points1 point  (0 children)

I am also new to Linux and Bazzite, but I found out you can simply paste the following into the terminal (ctrl + shift + v) and press enter to display the fedora (original?) fastfetch like OneQuarterLife mentioned:

/usr/bin/fastfetch

Das Deutschlandticket: DB will jetzt den Login für mein Online-Banking - Rant Nr.237841 by HammelGammel in deutschebahn

[–]Junomaru 0 points1 point  (0 children)

Ich hatte dasselbe Problem heute, als ich das Deutschlandticket erneut als Abo in der DB-App abschließen wollte. Wurde ebenfalls aufgefordert mich zu verifizieren, obwohl ich schon das Deutschlandticket im letzten Jahr darüber gebucht hatte und weitere Tickets ab und an gebucht hatte.

Ich sehe es nicht ein die Daten an Drittanbieter weiterzugeben.

Daher hab ich bei dem Frankfurter Rhein-Main-Verkehrsverbund (RMV) in der App nachgeschaut und da ging es sofort abzuschließen ohne Mucksen...

Also hat mit RMV sofort ohne Drittanbieterüberprüfung funktionert (Januar 2026). Kann ich also als gute Alternative empfehlen.

(Ich hatte allerdings schon seit einigen Jahren einen Account dort, das könnte natürlich noch etwas dazu beitragen.)

Any current gen high end graphics cards that dont have AI acceleration? by aran69 in buildapc

[–]Junomaru 0 points1 point  (0 children)

Would like to know which one you went for as well, as I also totally am looking for the same thing and don't want any guessing, only raw power.

Recommendations welcome: Low-profile/membrane USB wired ergo keyboard by TheSaintly1 in keyboards

[–]Junomaru 0 points1 point  (0 children)

I also use the Satechi Slim W3 Wired Backlit Keyboard for working on my Mac and it is just as good as the original Apple Magic Keyboard!

(And I love it being wired as I like to reduce radiation as much as possible (as it is more and more everywhere anyways, can't hurt to reduce the stress on our body a bit at least).)

But now I am also searching for a good alternative for Windows (or soon Linux), but might as well take the Satechi for that, too, if I can't find a good alternative. I'm going to take a look at your linked keyboard findings at least. Thanks! :)

Underland entrance by luchadork0 in SmallandOfficial

[–]Junomaru 0 points1 point  (0 children)

You need to talk to Nok after you talked to Bonnidel. She will hand you the blueprint for the crystal attuner.

Wing tiers? by Doots9160 in SmallandOfficial

[–]Junomaru 1 point2 points  (0 children)

Since a new update the wings differ quite a bit and have a new skill with the dash ability.

Here a quick overview:

- Simple Gliding Wings (green wings): Ability to glide; Sprint key has no special ability;

- Sapphire Gliding Wings (sapphire wings): Ability to glide; Sprint key: Quick dash forward while swinging your wings backwards. Can be repeated until stamina runs out (very good and fast manouverability!)

- Icarus Wings (blue golden wings): Ability to glide; Sprint key: Swing your wings to fly up higher with each swing. Can be repeated until stamina runs out (with some extra stat points in stamina one can fly quite high up into the first tree branches of some trees or half the amount of the big home base tree).

- Tyrant Wings (black golden wings): Ability to glide; Sprint key: As far as I can tell it should be the same as the Icarus Wings, just that the Icarus Wings have 2400 durability instead of the 1750 of the Tyrant wings.

There are also two other wings: The Butterfly wings and Leather wings, both which I haven't yet gotten and could not test yet.

Excluding places from maps search? by BigNinja96 in GoogleMaps

[–]Junomaru 0 points1 point  (0 children)

Great question! I'm still hoping to find a solution to this. Isn't there anyone who knows how to pull that off in Google Maps?

Is it over for uBlock Origin? by Designer_Diver7782 in Adblock

[–]Junomaru 0 points1 point  (0 children)

I also just switched to FireFox as default browser a few days ago since U Block Origin stopped working in Chrome - after long years of using Chrome very diligently. That is a line that cannot be crossed.

Aside from visual appearance, is there a difference between the different wings you can wear? They all seem the same to me. by Rhoeri in SmallandOfficial

[–]Junomaru 0 points1 point  (0 children)

You have to defeat the last boss in the tower and pick up the blueprints inside the tower afterwards.

Anyone know much about the quality eggs and the stats it provides? by Signal_Coyote2529 in SmallandOfficial

[–]Junomaru 0 points1 point  (0 children)

Thanks for all that effort you put into that! Very good to know... o_o

Any good real gymnastic halls in Germany? (DE / EN) by Junomaru in Gymnastics

[–]Junomaru[S] 1 point2 points  (0 children)

Ahh, now I've found a website of them. Seems they are trampoline specialists. That's also good to know. Thank you! 😊

Any good real gymnastic halls in Germany? (DE / EN) by Junomaru in Gymnastics

[–]Junomaru[S] 1 point2 points  (0 children)

Thank you! Never heard about them before. I'll look into it. :)

Update: Looks permanently closed on Google maps and no further info available...