11
submitted 1 month ago by [email protected] to c/[email protected]

Coming from Manjaro, I had Manjaro in dual boot with Windows for a few years now. I have now also installed Arch Linux. During the Arch installation, I skipped the part with the boot partition and the bootloader. I have been using the bootloader/grub from Manjaro. That works quite well.

But now I want to switch to a bootloader from Arch. With the Arch bootloader I would like to continue to have the choice between Arch, Manjaro and Windows.

I assume that I have to install a corresponding bootloader for Arch in the EFI parallel to the others. But how should I proceed in detail? I have not yet been able to find any corresponding howtos. Which bootloader would you recommend?

[-] [email protected] 4 points 1 month ago

What's the difference between oneshot and simple?

9
submitted 1 month ago by [email protected] to c/[email protected]

I try to download a file with curl directly after logging into Gnome. This usually fails because mostly the WiFi connection is only established after login. If I wait long enough in the login screen before logging in, the connection is already established and the download works.

So far I have used Manjaro. WiFi was already active long before the login screen of GDM was even displayed. The download therefore always worked.

The download is initiated with a *.desktop file in ~/.config/autostart.

Is there another way to start the download after the user is logged in and the WiFi connection is really ready?

10
submitted 1 month ago by [email protected] to c/[email protected]

Since I no longer had an icon for Steam in Gnome, I tried to reinstall Steam via pacman -S steam. That didn't bring me an icon in the Gnome overview either, but that was because I had created a separate *.desktop file in ~/.local/share/applications. I removed this and the icon in the overview came back. But now I have the problem that the games I call up via Steam no longer start. For one game, the launcher starts, but then displays the message “Please start Steam first” (Steam is already running, otherwise I wouldn't be able to start the game). Other games bring up the message that no wine-mono is supposedly installed. But it is installed.

A reinstallation of Steam has not changed anything. What can I do?

5
cp with backup, limit count (discuss.tchncs.de)
submitted 2 months ago by [email protected] to c/[email protected]

If I copy files with backup (cp --backup=numbered), the old file is renamed to something like oldfile.ext.~1~. I get my old files. Can this be limited to a certain number of old files, for example 30? I don't want to have keep more than that...

6
Bigger thumbnails? (discuss.tchncs.de)
submitted 3 months ago by [email protected] to c/[email protected]

I have searched the settings in the app, but didn't found such a setting. I want to have bigger thumbnails for posts with images and link previews. Is that available or if not can this be implemented? I have added a screenshot from "Thunder" with exact such bigger thumbnails. Can this be done?

5
submitted 3 months ago by [email protected] to c/[email protected]

Creating *.desktop files for WIndows/Wine applications, specify sometimes a Icon like this:

[Desktop Entry]
Name=Game to start
Comment=Play this game on Steam
Exec=steam steam://rungameid/738520
Icon=steam_icon_738520
Terminal=false
Type=Application
Categories=Game;

with Icon=steam_icon_738520. Is this extracted from the *.exe file and how do i get the name mentioned here? I know, that i can use the path to a *.png, but i would prefer to use the *.exe file itself.

1
submitted 3 months ago by [email protected] to c/[email protected]

In einem Projekt schiebe ich Video von meinen Kameras in ein Verzeichnis auf den Rasperry Pi4. Ein Cronjob geht dieses Verzeichnis dann durch und konvertiert diese Videos mit ffmpeg. Seit letzter Woche schlägt dies fehl. Folgendes Kommando wird dabei benutzt: ffmpeg -y -i "/tmp/4B9A9487.MP4" -vf format=yuv420p -c:v h264_v4l2m2m -b:v 8M -c:a aac -movflags +faststart "/tmp/4B9A9487_cv.mp4". Für einige Video klapp dies, für andere erhalte ich die Fehlermeldung: [h264_v4l2m2m @ 0x558fae9600] Could not find a valid device.

Das es aber für einige funktioniert, für andere nicht, glaube ich nicht, das dies am fehlenden device liegt. Denn wenn ich die Auflösung des Videos reduziere, funktioniert es durchaus. So klappt folgender Befehl mit den bisher fehlgeschlagenen Videos problemlos: ffmpeg -y -i "/tmp/4B9A9487.MP4" -vf format=yuv420p -c:v h264_v4l2m2m -b:v 8M -s 1280x720 -c:a aac -movflags +faststart "/tmp/4B9A9487_cv.mp4".

Geändert hat sich nur die Angabe der Auflösung mit -s 1280x720. Das Input Video hat hier 3840x2160. Ich vermute daher das der Rasperry Pi hier irgendwo mit 3840x2160 nicht mehr klar kommt und daher abbricht.

Was ist denn die maximale Auflösung die der Rasperry Pi hier unterstützt?

2
submitted 3 months ago by [email protected] to c/[email protected]

I use Darktable 5.0.1. I don't know if this is a bug or just a user error on my part. But I can remember that it worked differently in 4.8.x.

When I am in the lighttable module, I can select “rejected only” in the filter. I would now expect to see all rejected images. However, the opposite is the case. I now see all images that have not been rejected. However, if I select “all except rejected”, I see the rejected images.

Why is the filter effect reversed?

[-] [email protected] 5 points 3 months ago* (last edited 3 months ago)

That's not the point. I travel a lot and here the phone is occasionally checked by the local authorities. I have no control over what the Chinese authorities do with the phone when they take it with them. Needless to say, I don't plug the phone into any USB ports myself. The fact that apps from the Playstore are not affected by this is also OK, but I have installed very few apps via the Playstore, most of them are from F-Droid.

To make a long story short: There were several such situations on my last trip and I was happy that I had this “Auto Blocker” active. But it's not a permanent solution.

13
submitted 3 months ago by [email protected] to c/[email protected]

On Samsung Phones. there is a function called "Auto Blocker". If this is enabled, this blocks installing apps from unknown sources and via USB and ADB. In principle, this is a useful feature, but it also prevents the installation of updates via F-Droid. Even if F-Droid is classified as trustworthy in general and can therefore theoretically install apps and updates automatically, activating this function prevents automatic updates. If this function is deactivated, new apps and updates are installed automatically on request.

Is there a way to activate this function and still receive automatic updates via F-Droid? Does the installation of the F-Droid.apk via ADB/USB change anything in this constellation?

15
Autocomplete custom scripts? (discuss.tchncs.de)
submitted 3 months ago by [email protected] to c/[email protected]

As my time with linux, I created a lot of scripts. Some of them have input parameters and sometimes I just forget this parameters.

So I wonder if there is some way to create autocomplete parameters, like i autocomplete a path by pressing the tab key?

For example a script. ./test.sh can be completed with parameter-one, eg. ./test.sh parameter-one or ./test.sh parameter-two. If i type now ./test.sh followed by tab it should add parameter-one if i press tab again it should change to parameter-two.

How can I do that? I'm on bash…

5
submitted 4 months ago by [email protected] to c/[email protected]

When I send a notification with notify-send -i /path/to/my/icon.png "title" "message" , it appears wonderfully in Gnome 47.4. However, the icon is very tiny. According to the screenshots I saw, the icon can be very large. It is also obviously displayed in addition to the app icon. Is there a way to send such an icon in the message or another way to create desktop notifications?

8
submitted 4 months ago by [email protected] to c/[email protected]

I'm using Gnome as DE and was really happy with it until my last update. I would like to re-install Gnome, but want to remove before that all Gnome stuff, settings and dependencies. This is no problem for the packages installed via pacman and also it's dependencies. But I fear that I don't know how to remove all relevant settings. Is there some special folder or set of files to remove, before I can start from scratch?

[-] [email protected] 9 points 7 months ago

This looks like something usefull. Some observations after first start...

  • why does the app requests full file rights, after I selected my local notes folder? If the app has access to that folder (and subfolders), this should be enough.
  • for code, examples a code font should be used and not the same font as article text
  • i use markdown a lot for code. With this it should be possible to select the whole code block by single click. When using css, this should be possible with > user-select:all
  • auto line break should be disabled in the same context. This seems to be already the case for code block but not for single line code
  • i would love to see support for yaml. But in the form that i can hide the yaml block
  • i think the search feature doesn't work yet. If I have for example a note with the title Manjaro.md and I type "manjaro", it isn't found. The search should also search the text inside the notes or at least the yaml tags (if supported)
  • please keep the local folder and don't invest your resources in a sync mechanism. There are so much possibilities like WebDAV, rsync, SFTP and a lot of clouds. To much to make anyone happy. There are some Android apps which sync such things with an ease.
  • I keep my rare images in a hidden subfolder of the notes folder like ".media". Not only images, also linked PDF and so on. Such images are not displayed. They seems to be not found

I really like the idea of your app. Could be a good companion for my PrimitiveNotes plug-in for Roundcube. Hopefully you find the time to develop it further.

[-] [email protected] 22 points 9 months ago* (last edited 9 months ago)

Unfortunately, this version violates the DSGVO by sending telemetry without being asked. This shoots the app directly into out. I hope that the developers have an insight here and remove this function as soon as possible.

[-] [email protected] 5 points 11 months ago

Many thx. This would be fantastic

[-] [email protected] 11 points 11 months ago

Nice test. I like Jerboa, especially the technical implementation. But the Usablity and layout of other apps is much better. That's why my default client is Thunder.

[-] [email protected] 4 points 1 year ago* (last edited 1 year ago)

Darktable? It's a RAW developer and photo managing software on Linux, Windows and Mac, a little bit like Adobe Lightroom, but OpenSource. If GPS coordinates are in the RAW, sidecar or jpg files, the photos can be displayed in the map module. Much better, if you have a GPX file and no GPS data embedded, you can assign the photos to the GPX route, as long the timestamp of DateTimeOriginal in Exif is accurate. If the timestamp differs, you can specify the difference.

Maybe Digikam can do the same. But I don't like the KDE framework which is used there. Digikam is available for Linux and Windows (yes, I know it's strange).

[-] [email protected] 4 points 1 year ago

If you can selfhost, you can try my SyncMarks AddOn. It will work on any webextension compatible browser, e.g Firefox, Chrome, Chromium, Edge, Brave, Kiwi and so on. You can sync across all Browsers.

The backend is working with selfhosted PHP/MySQL (or SQLITE) stack. If you can't use this, you can fallback to WebDAV as backend, but with limited functionality.

The addon can work together with the standard sync mechanisms in all these browsers, but it's up to you if you want that.

If the addon is not installed, you can access the backend url with any browser and use it as WebApp. With apps like Tasker or HTTPShortcuts, you can share any url, from any to the backend.

[-] [email protected] 4 points 1 year ago

I have a similar issue but in my case between KDE and Gnome. KDE is much cleaner by display the fonts as Gnome. But I prefer using Gnome, because of the cluttered interface of most KDE applications.

[-] [email protected] 9 points 1 year ago* (last edited 1 year ago)

By default, according to the RFC 6238 standard, they are generated every 30 seconds. But this time step can manually set to faster intervals. However faster as 30 seconds is not very user friendly. RFC 6238

[-] [email protected] 4 points 1 year ago

Feel free to try my SyncMarks. It's available for any Desktop browser and can sync across all Browsers. The backend is working as Web GUI.

Backend: https://codeberg.org/Offerel/SyncMarks-Webapp

Browser Extension: https://codeberg.org/Offerel/SyncMarks-Extension

I don't know what happens with manifest v3, because the Mozilla variant is not compatible to Chromium. Maybe I have to use 2 independent branches. But I try to avoid that. Manifest v3 is a big mess of bullsh*t.

But anyway feel free to try it. You are welcome.

[-] [email protected] 15 points 2 years ago* (last edited 2 years ago)
  • Eternity, but clicking in an Notification E-Mail on the Lemmy Inbox link, does not open Eternity on the Inbox.
  • Voyager is also fine, but i has strange look on Android, looks more like made for Apple.
  • Jerboa is nice to, but lacks options to change the fonts
  • Sync for Lemmy is nice, but its closed source and has ads (can be removed when you pay enough 20,99€)
  • Some other apps in the Playstore, but most of them are not worth to use them
  • Thunder seems to be nice, but I really miss 'Mark as read on scroll' feature, which is very important for me
  • there is 'Commit for Lemmy' on the play store, most features I want are there but a) its not available on F-Droid and b) crash from time to time
  • 'Boost for Lemmy' looks really nice. I couldn't find a setting for 'Mark as read on scroll'. Maybe it's enabled by default. If that's true, I would keep this app. There is a option to remove ads for 3.59€ which is a fine for me. But I have not seen any ad as of now. Be aware that there are 6 Trackers in this app, but since I use PiHole, it's not really important for me.

Currently im using mostly Eternity and hope that some bugs get sorted out sooner or later. But Boost would be good next candidate, if 'Mark as read on scroll' is supported. Arch f not, the next best alternative is Jerboa.

view more: next ›

MoLoPoLY

0 post score
0 comment score
joined 2 years ago