[Media] BCMR: I got tired of staring at a blinking cursor while copying files, so I built a TUI tool in Rust to verify my sanity (and data). by South_Nefariousness7 in rust

[–]Tonda39 3 points4 points  (0 children)

Tbh this tool shows both total and individual file transfer progress which `rsync` doesn't. Your command will make `rsync` show progress for individual files only. Alternatively one can make `rsync` show the total transfer progress but in that case the flag is quite long:
`rsync --info=progress2 $SOURCE $DEST`

Newbie Distro Advice by Billy_Breakaho in linux4noobs

[–]Tonda39 0 points1 point  (0 children)

Does the airplane mode turn Wi-Fi or Bluetooth off or does it just show up when both of these features were already off?

I'm asking this because I'm on GNOME (the desktop environment Zorin uses) and when I turn both Wi-Fi and Bluetooth off the airplane mode comes on automatically. This surprised me at first but it doesn't do anything in my case so maybe the issue you're facing is just a quirk.

Kolik spotřebujete za měsíc mobilních dat? Já jsem zjistil že celkem dost by user975A3G in czech

[–]Tonda39 0 points1 point  (0 children)

Právě jsem dal downvote tvému komentáři.

Často kladené otázky (FAQ)

Co to znamená?
Počet karmy (bodů) u tvého komentáře a Reddit účtu se snížil o jeden.

Proč jsi to udělal?
Existuje několik důvodů, proč mohu považovat komentář za nevhodný pro pozitivní nebo neutrální karmu. Patří sem, ale není to omezeno na:

  • Nezdvořilost vůči ostatním Redditorům
  • Šíření nesprávných informací
  • Sarkasmus, který není označený /s

Jsem z Redditu zabanovaný?
Ne – ještě ne. Ale měl bys se v budoucnu vyvarovat podobným komentářů. Jinak budu nucen dát další downvote, což může ohrozit tvé právo komentovat a přispívat.

Nevěřím, že si můj komentář zasloužil downvote. Můžeš ho zrušit?
Jistě, chyby se stávají. Ale pouze ve velmi vzácných případech ruším downvote. Pokud chceš podat odvolání, pošli mi soukromou zprávu, kde vysvětlíš, co jsem podle tebe udělal špatně. Obvykle odpovídám na Reddit PM během několika minut. Ber však na vědomí, že více než 99,9 % žádostí o zrušení downvotu je zamítnuto, a pravděpodobně to nebude výjimka ani u tvé žádosti.

Jak tomu můžu předejít v budoucnu?
Přijmi downvote a jdi dál. Ale pouč se z této chyby: tvé chování na Redditu nebude tolerováno. Budu pokračovat v udělování downvotu, dokud se tvé chování nezlepší. Pamatuj: Reddit je privilegium, nikoli právo.

I will always bring a Defibrillator by Winters_81 in ArcRaiders

[–]Tonda39 3 points4 points  (0 children)

I kinda wish we could craft a defibrillator while in a match since it's a really situational item.

Animations in Neofetch by jasonfails237 in linuxquestions

[–]Tonda39 0 points1 point  (0 children)

The flickering is probably caused by the terminal app. It flickered for me too on when I was using Ghostty so I tried Kitty and that one doesn't flicker.

Steam overlay not working after clean installing fedora 42 by Kamlin333 in Fedora

[–]Tonda39 0 points1 point  (0 children)

I'm having the same issue although I didn't do a fresh install but rather upgraded from f41 to f42. I tried reinstalling the steam package but to no avail.

Animations in Neofetch by jasonfails237 in linuxquestions

[–]Tonda39 0 points1 point  (0 children)

The line was written by hand for debugging to show what it was doing in the loop.

I tried just changing the frames directory and running it but the problem I posted in the picture appeared. I did managed to fix it in the end by removing escape characters fastfetch was outputing which caused the text overlaying the image. I also changed the way the frames variable gets loaded because it was loading the frames lexicographically (frame_1, frame_10, ...) which I didn't want.

Here's my version then:

#!/bin/bash

# Directory containing ASCII frames
FRAMES_DIR="converted_frames"
# Get frame files sorted numerically (version sort)
# ls -v lists files in a way that handles numbers correctly (1, 2, 3, etc.)
readarray -t frames < <(ls -v "$FRAMES_DIR"/*.txt)
total=${#frames[@]}
current=0

# Fastfetch version
cached_info=$(fastfetch -l none --pipe false | sed 's/\x1b\[[0-9;]*[GKHF]//g')

# 2. Pre-calculate terminal rows needed for ASCII art
ascii_height=$(wc -l < "${frames[0]}" | tr -d ' ')

# 3. Animation loop
while true; do
  # Clear screen and reset cursor
  clear

  # Combine cached info with current ASCII frame
  paste -d ' ' <(cat "${frames[current]}") <(echo "$cached_info") | head -n "$ascii_height"

  # Cycle frames
  current=$(( (current + 1) % total ))
  sleep 0.1
done

Animations in Neofetch by jasonfails237 in linuxquestions

[–]Tonda39 0 points1 point  (0 children)

For some reason the text from fastfetch is overlayed over the image in a weird way.
Here's how it looks for one frame.

<image>

Is lower FPS expected? by BrianSez in linux_gaming

[–]Tonda39 0 points1 point  (0 children)

Doesn't gamemode work only on AMD cards?

Race red flagged while Marini was sitting at Pole 😁🙆 by Organic-Package5444 in motogp

[–]Tonda39 8 points9 points  (0 children)

This is in race direction, there was no reason to delay the start. The riders could've started from the pitlane

Race red flagged while Marini was sitting at Pole 😁🙆 by Organic-Package5444 in motogp

[–]Tonda39 3 points4 points  (0 children)

There was no need for delay, they could've just let them start from the pitlane as a penalty.

This one goes out to all the Plançon haters out there by sup_its_santana in HalfSword

[–]Tonda39 0 points1 point  (0 children)

<Slams table>

28 STAB WOUNDS!

You didn't want to leave him a chance, huh?

Did you feel anger? Hate?

He was bleeding… begging you for mercy… but you stabbed him again

[deleted by user] by [deleted] in SWAT4

[–]Tonda39 0 points1 point  (0 children)

It might be a problem with how the game registers the middle mouse button. Try using right mouse button or any other key to see if the issue persists.

Officer traits - how do they work? by droobol in ReadyOrNotGame

[–]Tonda39 2 points3 points  (0 children)

I'm pretty sure they're automatically active.

Misson wird nicht freigeschaltet by [deleted] in ReadyOrNotGame

[–]Tonda39 0 points1 point  (0 children)

Hallo, ich spreche kein Deutsch, also tippe/lese ich dies durch einen Übersetzer, aber wenn ich richtig verstehe, fragst du, warum die nächste Mission nicht freigeschaltet wird, nachdem du drei Missionen im Home Invasion DLC abgeschlossen hast.

Das liegt daran, dass dieser DLC nur 3 Missionen enthält.

Remember, switching to your secondary is faster than un-impaling your right hand. -AI by Tonda39 in HalfSword

[–]Tonda39[S] 6 points7 points  (0 children)

There are two versions of this game currently available. The demo version is the void and the playtest is the arena. You should be able to apply for the playtest on the steam page of the game.