There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Resolved3874 , in I accidently rebooted during pacman update and now my system dosen't show option to boot into endeavour os. Systemd just shows option to boot into firmware interface please help!

Can’t help but I just did this myself. Was a fairly fresh install so I didn’t lose anything other than have to reconfigure some stuff and install some things.

Buuuuut

What happened dto me was something crashed during the update and my computer went to a black screen. So I just left it for a bit to hopefully finish even without the display. Turned the computer off and my nvme was just gone. Ended up having to get a new one.

257m OP ,

Did systemd or grub not even show up?

Resolved3874 ,

Nope. I think the drive just died at a bad time honestly. I’ve had issues with it in the passed and the computer itself came from an e-scrap pile because the water pump for the CPU cooler was dead. Has worked great since swapping that out until the nvme died. Even after installing the new nvme and reinstalling EOS I couldnt see the old nvme.

squid , in Screen goes black periodically when playing video games

Free sync enabled with HDMI cable? If so I’d advice turning free sink off or switching to display port

penquin OP ,

Is that something I can turn off in a setting in plasma? Or in the game?

squid ,

Its been a while sinse I’ve used plasma, I had the same issue but I was using nvidia at the time and nvidia has a tool to set refresh rate, screen size and a lot of other things, gsync/freesync being one of them. Now most monitors do have if gsync/freesync enabled an option to turn it off. but before you do that if you have other display port/ HDMI cables around then switching though them would be advantageous as youll avoid screen tearing

penquin OP ,

AMD has no such app. I wish it did. Also, I’ll be switching to another DP. Is she seems to be much better when I used an HDMI instead of dp

spongeborgcubepants , in Stop Using Bash

Still using bash occasionally while mainlining zsh, it’s just one of the most ubiquitous shells out there.

I’d rephrase your post title to “Use whatever shell you like, but try not to write Bash scripts”

At least scripts you want others to use… and you are going to be very grateful in the future when you might switch shells

rotopenguin , in Screen goes black periodically when playing video games
@rotopenguin@infosec.pub avatar

Are you sitting on a gas strut chair?

MetaRobert , in It's time to let go, Apache Software Foundation

There are still plenty of active commiters to the Trunk. Though, at a glance, it’s maintenance, not development. github.com/apache/openoffice/commits/trunk

Holzkohlen , in LMDE 6 “Faye” released! – The Linux Mint Blog

Nice

Cwilliams , in Announcing composefs 1.0 – Alexander Larsson

Im a little confused. What is Composefs?

tubbadu , in How to make a rule for all fullscreen windows to also automatically go "Keep Below Others"? [KDE]

“fullscreen” cannot be used as a condition in windows rules AFAIK, but you can achieve this with a simple kwin script (the syntax is very easy, nothing to be scared with). You can find on the KDE website a tutorial and the whole API set.
Let me show you: We are going to add an event listener listening to any client going fullscreen (or de-fullscreening), and then we will apply the “keep below” property to the fullscreen ones.
you first need to add a rule to listen to clients changing fullscreen status: (references)


<span style="color:#323232;">workspace.clientAdded.connect(client </span><span style="font-weight:bold;color:#a71d5d;">=> </span><span style="color:#323232;">{
</span><span style="color:#323232;">    client.fullScreenChanged.connect(</span><span style="font-weight:bold;color:#a71d5d;">function</span><span style="color:#323232;">() {fullscreenChanged(client)})
</span><span style="color:#323232;">});
</span>

This will call the function fullscreenChanged each time a new client changes its fullscreen status, passing to the function the client. ( I don’t know why but workspace.clientFullScreenSet does not work, it would have been better, but whatever)

We need now to write the fullscreenChanged function. It should change the KeepBelow status, evaluating if the client has been fullscreened or de-fullscreened:


<span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">fullscreenChanged</span><span style="color:#323232;">(client){
</span><span style="color:#323232;">    </span><span style="color:#795da3;">console</span><span style="color:#323232;">.</span><span style="color:#0086b3;">warn</span><span style="color:#323232;">(client, client.fullScreen) </span><span style="font-style:italic;color:#969896;">// not needed, just to debug 
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">if</span><span style="color:#323232;">(client.fullScreen){
</span><span style="color:#323232;">        </span><span style="font-style:italic;color:#969896;">// set as keep below
</span><span style="color:#323232;">        client.keepBelow </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">true</span><span style="color:#323232;">;
</span><span style="color:#323232;">    } </span><span style="font-weight:bold;color:#a71d5d;">else </span><span style="color:#323232;">{
</span><span style="color:#323232;">        </span><span style="font-style:italic;color:#969896;">// unset as keep below
</span><span style="color:#323232;">        client.keepBelow </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">false</span><span style="color:#323232;">;
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>

so the final script will be:


<span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">fullscreenChanged</span><span style="color:#323232;">(client){
</span><span style="color:#323232;">    </span><span style="color:#795da3;">console</span><span style="color:#323232;">.</span><span style="color:#0086b3;">warn</span><span style="color:#323232;">(client, client.fullScreen) </span><span style="font-style:italic;color:#969896;">// not needed, just to debug 
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">if</span><span style="color:#323232;">(client.fullScreen){
</span><span style="color:#323232;">        </span><span style="font-style:italic;color:#969896;">// set as keep below
</span><span style="color:#323232;">        client.keepBelow </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">true</span><span style="color:#323232;">;
</span><span style="color:#323232;">    } </span><span style="font-weight:bold;color:#a71d5d;">else </span><span style="color:#323232;">{
</span><span style="color:#323232;">        </span><span style="font-style:italic;color:#969896;">// unset as keep below
</span><span style="color:#323232;">        client.keepBelow </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">false</span><span style="color:#323232;">;
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span><span style="color:#323232;">
</span><span style="color:#323232;">workspace.clientAdded.connect(client </span><span style="font-weight:bold;color:#a71d5d;">=> </span><span style="color:#323232;">{
</span><span style="color:#323232;">    client.fullScreenChanged.connect(</span><span style="font-weight:bold;color:#a71d5d;">function</span><span style="color:#323232;">() {fullscreenChanged(client)})
</span><span style="color:#323232;">});
</span>

you can follow the instruction on the tutorial on how to install it. Hope this helps!
(I haven’t tested it much, in case of any problem feel free to ask!)

ours , in Firefox 118 Available With Performance Improvements, Automated Translations

Also fixed a weird bug I had where YouTube wouldn’t load on my laptop but it worked fine on my PC.

Starfish , in Looking for a good distro for use on a USB stick

Not Fedora, but MX Linux and Antix are good for persistent installation on usb-sticks. See here: https://antixlinux.com/the-most-extensive-live-usb-on-the-planet/

BewitchedBargain , in Ask Lemmy: Traditional vs natural mouse scrolling; which do you use?

I noticed this in video games rather than on-screen text scrolling. Some of them had a weapon selection, but instead had mouse-wheel-down “decrease” the weapon slot, and mouse-wheel-up “increase” it. However, the game also used the mouse wheel for other things, thus changing it to my preference had some unexpected side effect.

In any case, mouse-wheel to scroll view works because of the mouse-pointer paradigm. Move both mouse-wheel and mouse in the same direction, and the pointer is further along the content. Move them in opposite directions, and the pointer tends to hold position relative to content.

timbuck2themoon , in NewsFlash 3.0 Released with Slick New Look

The flatpak works well for me. Always ends up using too much RAM but the latest versions seem to be better about it now.

TomaTomaToma , in tui-sudoku
@TomaTomaToma@lemmy.ml avatar

It is one space off in the first row (numbers)

christos OP ,
@christos@lemmy.world avatar

Do you have this problem from the start? Is this the only problem you are facing? Have you installed the dependecies?

chrismit3s ,

You can see it in the image you linked.

christos OP ,
@christos@lemmy.world avatar

Oh, I see. Phew, you gave me a scare for a moment. That I will fix right now, easy. Thanks for the feedback!

christos OP ,
@christos@lemmy.world avatar

Fixed.

malkauns , in Pidgin broken after upgrade to 23.04

ppl still use pidgin??

CrimeDad OP ,

I use it for IRC and XMPP. Are there better options?

yum13241 , in Firefox 118 Available With Performance Improvements, Automated Translations

Imagine being excited about a 2 year old version of a browser.

ENipo ,

What?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines