Herzenschein
Just a stern but friendly rabbit furry working as a technical writer, learning germanic languages, gaming on Linux, interested in social psychology, fandom studies, locked-room mysteries and programming. Cis, gay, kinky, pm-friendly, single.
- 3 Posts
- 21 Comments
Herzenschein@pawb.socialto
linuxmemes@lemmy.world•But you should say you're fluent in both on your job application
2·27 days agoSame experience here.
Herzenschein@pawb.socialto
linuxmemes@lemmy.world•But you should say you're fluent in both on your job application
13·28 days agoWhile I do like fish syntax, you don’t really need to learn it. You can just use it for your interactive use in the terminal while writing your scripts in bash.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•The main reason I don't use Elisa as an audiophile
11·6 months agoThe seeming lack of month ordering doesn’t feel like it would be intentional after all.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•Why am I not able to login to discuss.kde with identity.kde?
2·1 year agoYou’ll probably need to send a ticket to sysadmin to have that issue sorted out.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•How to get rid of this paint in KDE/Kwin ?
10·1 year agoIn that section, if you click the button to configure the Mouse Mark effect, you can see the shortcuts for clearing Mouse Mark:
- Clear last mouse mark: Super + Shift + F12
- Clear all mouse marks: Super + Shift + F11
A small correction:
For example, there are Kirigami bindings for Python you can use to do a desktop/mobile app.
Kirigami is QML all the way, it doesn’t need bindings since you’d be writing in QML either way. The Python part is about the actual business logic. :)
I’d be curious to see a blog post in the future mentioning the challenges you might have faced making the dock work on Wayland, and what was needed for that.
Herzenschein@pawb.socialOPMto
KDE@lemmy.kde.social•You can contribute to KDE with non-C++ code
1·1 year agoWhen you search using the Starred filter, usually you get the main project at the top since that’s the one with the most stars.
I added a KRunner web shortcut for this that automatically searches using that filter: https://rabbitictranslator.com/kfluff-web-shortcuts/
Looks like an old bug with kscreen that could cause two screens to merge together and would be worked around exactly the same way you did. I used to have that whenever a blackout happened, but only with Plasma 5, and often on X11.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•Why doesn't KDE's device auto mount just edit the /etc/fstab file?
3·2 years agoWhat’s used under the hood for this is udisks, the same thing used by other file managers to achieve mounting capabilities. It allows you to mount devices without needing to mess with something cryptic and archaic like fstab and doesn’t require root.
You can always keep using fstab of course since it works, but in that case you probably also want to use fstab systemd integration.
The KDE auto mount never worked on plasma 6
Please report your issues on https://bugs.kde.org so they can actually get fixed!
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•KDE Plasma Constantly Stuttering, Try This!!
6·2 years agoEverything. It doesn’t accurately describe the issue (animation stutter when using an HDD or during heavy I/O) and it doesn’t mention the solution (put the cache folder in tmpfs), plus it obviously follows the traditional sensationalist tone used in clickbait.
The point is to be deliberately vague to bait people into watching it.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•Does it make sense to create more communities in the lemmy.kde.social instance?
3·2 years agoIt’s small enough that we actually don’t get many things to moderate either. I don’t think I’ve even done any mod action so far. :D
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•This looks very interesting, something any opensource organization/project might want to emulate. Right ?
1·2 years agoWe’re always open to doc contributions. Interested in any particular areas? 🐰
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•AUA: We are the Plasma dev team. Ask Us Anything about Plasma 6, gear 24.02, Frameworks 6 and everything else in the upcoming Megarelease.
3·2 years agoWhat’s the best or recommended way to test out Plasma 6 RC2?
See also: https://community.kde.org/Plasma/Plasma_6#How_to_use/test_it
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•New programming language needed for KDE?
2·2 years agowithout the need of the moc
I got a bit of a mind freeze reading that sentence since my first thought was “why would someone deliberately give up on Qt’s reflection system” but only then realized they’re still using QMetaObject (the thing that actually enables reflection and signals and slots), just building it with something else.
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•Is it true that Thunderbird collected more donations than KDE?
2·2 years agoAfaik the reason why they’re not using GitLab issues it’s missing some features they need, which Bugzilla has.
Yeah.
https://community.kde.org/Get_Involved/Issue_Reporting/Why_not_GitLab_Issues
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•What is the correct way to place a Kirigami.SearchField inside the window header?
2·2 years agoAlso, you should only use Layout attached properties when the object you’re using it on is a child of a Layout, for example:
ApplicationWindow { ColumnLayout { anchors.fill: parent // Not a child of a layout, so you use anchors Controls.Button { Layout.fillWidth: true // It's a child of a layout, so you use Layout.fillWidth } } }
Herzenschein@pawb.socialMto
KDE@lemmy.kde.social•What is the correct way to place a Kirigami.SearchField inside the window header?
4·2 years agoSo what you want to do is put a Kirigami.SearchField inside the global toolbar created by the Kirigami.Page. It’s not a header.
In the first case you’re putting it inside the page, and because it’s a direct child of a Kirigami.Page, it is automatically laid out for you, which is fine, but not what you want.
In the second case you’re putting it in the header of the ApplicationWindow, but you actually want to put in the global toolbar of the page, so it’s not what you want.
In the third case you’re just putting a SearchField before the initialPage, so it’s loaded on the same level as the page, it’s not what you want.
You can put it in the header property of the Kirigami.Page, but the header area of the page doesn’t include the global toolbar, so they just happen to be close together by chance.
The way I’d have expected to do that would be to override the globalToolBarItem of the Kirigami.Page, but it’s read only, so I don’t really know how to help you with that. You should ask in the Kirigami Matrix room or in the Discuss forum.
My server went down a few times while I was away 😅