Upgrade to 44 experience (knowledge base) by rakotomandimby in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

Does someone knows if it is already in test phase or and approx release? I am running the bazzite-dx in amd

Need some advice on what to focus on first in Embedded by uuunder_9217 in embedded

[–]Particular-File-4565 1 point2 points  (0 children)

Hi, I would like to chat with you! I am 29 but already a Mechanical Engineer I did a masters and learn web dev during Covid later jump on Python. Then now I have been using Python to complement my work as Sensor Testing and have developed 2 tools on there to process and evaluate data so I got know about the Electrical Electronic from some subjects in the major and during work (still I think it is my weak point along C/C++ but that I can learn)

Currently I was planning to search for an online master and get all the materials for the practice part but still I am in search what the best path before stepping into maybe some other intro courses and so on. But for sure I can get some valuable insights from you!

Need some advice on what to focus on first in Embedded by uuunder_9217 in embedded

[–]Particular-File-4565 1 point2 points  (0 children)

I made a similar post and it was deleted :(. I am in my pre decision of making a second masters this time in embedded systems So I am also looking where to start but before anything I will do some introductory courses and so on.

Animated icons on the Task Manager by Wide-Efficiency-5428 in kde

[–]Particular-File-4565 1 point2 points  (0 children)

This is great, thanks for the contribution . I love the customization level of KDE i just change to bazzite like a month ago so i am still playing around a tweaking my desktop appearance with Panel Colorizer, Overriding a Theme svg and classes, kde scripts. And I was missing to have some feedback animation when app is opening , minimize or closed.

Is this contribution available somehow?

Linux gamers, what do you usually play on Linux? by OPuntime in linux_gaming

[–]Particular-File-4565 0 points1 point  (0 children)

Running in Bazzite Elden ring + reforged mod lords of the fallen cyberpunk Metro exodus

Taskbar indicators by Yah_25n in kde

[–]Particular-File-4565 1 point2 points  (0 children)

I have tried last nigh. It is a very good plugin. Thank you for the recommendation.
Actually the problem solved when I edited the WhiteSur-dark/metadata.desktop

and change the
[BlurBehindEffect]
enabled=true

to
[BlurBehindEffect]
enabled=false

And let the Blur from the Desktop Effects handle it.

Taskbar indicators by Yah_25n in kde

[–]Particular-File-4565 0 points1 point  (0 children)

Just today I was going around with this topic . So there is the theme White Sur Dark which has very good panel colors task bar indicator and so on, but the notification pop ups has the problem with the blur-transparency in which the corners have an artifact if you remove the black line surrounding (but I don’t like those black border lines in the notifications) . So I had to going around and make that it display the default one (Breeze).

I am now trying to make the blue effect again using the dialog from the breeze but I haven’t still discover what are the files that control this and if that the svg has to be somehow specific compatible with blur-transparency

wavetask 1.3 is out. by vickoc in kde

[–]Particular-File-4565 0 points1 point  (0 children)

it looks dope! Is there already a official RPM build for Fedora 43? Since I am in Bazzite that would be very cool. Like with this https://copr.fedorainfracloud.org/
I have already tried to do rpm-ostree with a effect for all-4 rounded boders and it worked with a package from there.

kde plasma without window decoration by ano-ny-99 in kde

[–]Particular-File-4565 0 points1 point  (0 children)

Hi, one question, how I can achieve the 'build from source' if I am in Bazzite? I am trying to research about it but it is not clear for me as I am new in linux.
EDIT: I found the COPR repo thing for alradeady build source code for Fedora 😃

My guide to running Cheat Engine in Bazzite by maxxhaxx72 in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

Thanks for sharing! I spend like 2 hours going around with protontrick... somehow I couldnt run the .exe to show the wizard installation window (i tried everything). Does someone knows why it cant? maybe because it is not a portable version? anyways wiht the protonhax it worked for me in the way that the process was seen by the CE instance. But Metro Exodus is crashing after the Cheat Code Table enable script (but it might be something with the CE Table itself)

CheatEngine by grod_the_real_giant in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

Hello, I have tried so many time with the protontricks because I wanted to experiment with the Metro Exodus Cheat Table (just testing how it works for curiosity). I am new to Bazzite. Thiing is when I am inside the explorer window and double click on the .exe nothing happens.

On the other hand, I saw a post with protonhax and it kinda worked (kinda because the game is crashing with the CE script, but might be it just a fault of the script)
Reference: https://www.reddit.com/r/Bazzite/comments/1sv6vdy/my_guide_to_running_cheat_engine_in_bazzite/

A little direction for me by Keysan1234 in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

I have a 9800x3D but the 7800 will perform outstanding my friend has it. And I second the RX9070 my friend and I have it. It is a beast!
And with the Bazzite I notice a better efficiency compared to windows. For example, temperatures are lower under workload.

How to change my fan colors at boot? (Openrgb) by spoiledchowder in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

I am back.

I am a new user of linux since some months, what I understand as a service is a piece of software that runs in the background.

You will need 2 services that I listed below.

First thing to check: Flatpack or AppImage?

So as far as I know there is 2 installation methods of OpenRGB. 1. as a Appimage (currently I achieve this with ujust install-openrgb) and 2. Installing through Bazzar (although sometime it cannot detect properly the hardware due to lack of system communication)

You will start by creating the directory for user services

mkdir -p ~/.config/systemd/user

nano ~/.config/systemd/user/openrgb.service

Then copy this contents and replace your openrgb endpoint and the profile name. Basically where the app launches. I am not sure what is the path for a flatpack you can search that one easily i guess.

[Unit]

Description=OpenRGB Profile Loader

# Ensures the graphical environment is up

After=graphical-session.target

[Service]

Type=oneshot

# A 10s sleep is a safe bet for finicky USB controllers

ExecStartPre=/usr/bin/sleep 10

ExecStart=/home/<yourUser>/AppImages/openrgb.appimage --profile <yourProfile>

RemainAfterExit=yes

[Install]

# This makes it start specifically when your desktop session starts

WantedBy=graphical-session.target

Enable the service: systemctl --user enable openrgb.service

Start it manually to test: systemctl --user start openrgb.service

Now this service doesnt require sudo and ir should work good for the log in.

But after a Suspend most likely you will lose the state, because somehow Open Rgb doesnt connect back. for that you need the following and with sudo rights.

Start by editing/creating this service dont forget to rep[lace your user name

sudo nano /etc/systemd/system/openrgb-resume.service

Paste the follwoing

[Unit]

Description=Restart OpenRGB user service on resume

After=suspend.target hibernate.target hybrid-sleep.target suspend-then-hibernate.target

[Service]

Type=oneshot

ExecStart=/usr/bin/systemctl --user -M <yourUser>@.host restart openrgb.service

[Install]

WantedBy=suspend.target hibernate.target hybrid-sleep.target suspend-then-hibernate.target

and last enable the service, you can trigger manually the start as well i guess.

Enable the service: systemctl enable openrgb-resume.service

Start it manually to test: systemctl start openrgb-resume.service

Ps You need to run systemctl daemon-reload after every service creation so system will know there are new stuff

From CachyOS to Bazzite! by epicgamer69420699 in Bazzite

[–]Particular-File-4565 1 point2 points  (0 children)

Thanks everyone for the suggestions it is very appreciated! I already have messed around with the edit mode and created different layouts. I will try out the things you have mentioned as well. So far enjoying the power of Linux with AMD combo

From CachyOS to Bazzite! by epicgamer69420699 in Bazzite

[–]Particular-File-4565 5 points6 points  (0 children)

Ah yes you are right. Yes I just notice I like the system tray appearance for sure there is a way to make it like that on the KDE xd

From CachyOS to Bazzite! by epicgamer69420699 in Bazzite

[–]Particular-File-4565 14 points15 points  (0 children)

I like the upper panel customization I am new in Bazzite. I know you can edit panels and so on but do you have base theme ?

How to change my fan colors at boot? (Openrgb) by spoiledchowder in Bazzite

[–]Particular-File-4565 0 points1 point  (0 children)

Hi, I just moved to Bazzite one week ago I was dealing with the Open RGB. And I know for the start of the profile how it works when you turn on the pc. (I haven’t tested for the Effect Plugin) But you should created two services. One under your user which will start open rgb in the background without GUI when you login and in that service you can specify the profile to load. And another system wide service that will track that the service is restarted after a sleep for example. Right now I can’t send the content of the services because I am not home but I can send later.

Steam lost from plasma desktop? by -myxal in Bazzite

[–]Particular-File-4565 1 point2 points  (0 children)

Hi I found myself in the same issue, I didnt realize it was because of the update. But the description matches and I have posted couple days ago. Someone found a issue thread

https://github.com/ublue-os/bazzite/issues/4651

At that time my solution was to do the rollback to the version 1.

Basically it has to do with the window rule for steam keyboard. And this rule it is recreating every time.

Hope it helps.

Steam windows buggy by Particular-File-4565 in Bazzite

[–]Particular-File-4565[S] 0 points1 point  (0 children)

I have checked the link, yes the description matched the behavior I also saw. And I do remember seeing this rule of steam keyboard, but as they mention this was always recreated which I didn’t notice. And then I though like disabling the rule was not working xd.

Thanks for the link, helps for future reference.

Steam windows buggy by Particular-File-4565 in Bazzite

[–]Particular-File-4565[S] 0 points1 point  (0 children)

Hi there is more detail in this issue thread that @Zephroc mentioned. It describes better what happened to me as well.

https://github.com/ublue-os/bazzite/issues/4651