Jeena's Hyprland Demo


I switched to Hyprland some time ago and now I made a video showcasing all the features I've implemented for myself, check it out!

In this video I'm showing my current Hyprland setup as a demo. I'm showing features I implemented myself and my configuration of hyprland, waybar, tofi, wlogout, kitty and other tools.

And here the link to my hypr-dotfiles: git.jeena.net/jeena/hypr-dotfi…

Google’s $45 Million Contract With Netanyahu's Office to Spread Israeli Propaganda


Linux phones are more important now than ever.


E: apparently it needs to be said that I am not suggesting you switch to Linux on your phone today; just that development needs to accelerate.

Android has always been a fairly open platform, especially if you were deliberate about getting it that way, but we've seen in recent months an extremely rapid devolution of the Android ecosystem:

  1. The closing of development of an increasing number of components in AOSP.
  2. Samsung, Xiaomi and OnePlus have removed the option of bootloader unlocking on all of their devices. I suspect Google is not far behind.
  3. Google implementing Play Integrity API and encouraging developers to implement it. Notably the EU's own identity verification wallet requires this, in stark contrast to their own laws and policies, despite the protest of hundreds on Github.
  4. And finally, the mandatory implementation of developer verification across Android systems. Yes, if you're running a 3rd-party OS like GOS you won't be directly affected by this, but it will impact 99.9% of devices, and I foresee many open source developers just opting out of developing apps for Android entirely as a result. We've already seen SyncThing simply discontinue development for this reason, citing issues with Google Play Store. They've also repeatedly denied updates for NextCloud with no explanation, only restoring it after mass outcry. And we've already seen Google targeting any software intended to circumvent ads, labeling them in the system as "dangerous" and "untrusted". This will most certainly carry into their new "verification" system.

Google once competed with Apple for customers. But in a world where Google walks away from the biggest antitrust trial since 1998 with yet another slap on the wrist, competition is dead, and Google is taking notes from Apple about what they can legally get away with.

Android as we know it is dead. And/or will be dead very soon. We need an open replacement.

This entry was edited (1 day ago)
in reply to Ulrich

i still think that the Linux Mobile ecosystem is bad(even worse then Desktop Linux), i want it to happen and become as good as Desktop Linux.
also i am pretty sure Google cannot fully get rid of AOSP, especially Android is put on any phone that isn't Google.
tho even before the Goolog fuckery these things where there.
Samsung required a a leaked program to Unlock its bootloader(Odin which is proprietary), and would trip Knox.
Xiaomi required a wait time to unlock its bootloader, and the unlocking bootloader thingy is proprietary.
Banking apps wouldnt work with root and stuff, even before the Play Integrity API forcing thingy.
This entry was edited (2 hours ago)

Is there a GUI OpenVPN client app for Linux?


Hi guys, as the title says looking for a good OpenVPN client for linux. I know OpenVPN 3 exists but it's a pain to be honest.
Edit:I know it is not perfect but I have found that the windscribe VPN Client for Linux supports adding your own VPN config files (both OpenVPN and WireGuard) and has a nice GUI . You don't need to have a windscribe account to use it either. I don't know if other VPNs clients also support this or not
This entry was edited (20 hours ago)
in reply to aprehendedmerlin

Just in case it helps - I followed this guide to get Mint's Network Manager working with the Cisco AnyConnect OpenVPN thing (needed it for work) which worked well for me, I guess the steps should be fairly similar for other stuff.

Edit: fat fingers made me type "caze" instead of "case".

This entry was edited (20 hours ago)
in reply to interdimensionalmeme

I guess because that adds extra complexity that isn't inherently necessary and can be added on top, plus it eats resources. You'll spend the cycles either way basically, at least this way it's optional. I don't bother with a file indexer because with SSDs nowadays, find is pretty fast, and how often do you search for files anyway?

Linux has APIs to get notified on file system events (fanotify, inotify) which would allow such a service to update itself whenever files are created/delete immediately, but locate is way older than that, from the 80s. I think popular DEs have something like that.

There's also ways to search for specific files that come with packages (e.g. dpkg -S), because the package manager already maintains an index of files that were installed by it, so you can use that for most stuff outside /home.

in reply to interdimensionalmeme

Have you tried RTFM? 😛

Jokes aside afaik you could do everything you mentioned with sort, find (with -type f, -printf and -mtime) and grep (filtering via regex with the -e flag).

Alternatively you could try KDE's file explorer dolphin (or even just its search utility kfind) as a graphical alternative.

My point is switching to linux is not quick or easy, but there are few really impassable roadblocks (games with shitty kernel level anticheat for example) and there is a high likelyhood someone in this community has encountered your problems aswell and migjt even know a solution.

in reply to pitiable_sandwich540

using find to sort all pictures in /pics/ by inverted (i.e., most recently accessed first) access time, and filtering only those with an exposure time between 1/20 and 1/100 seconds

find /pics/ -type f \( -iname '*.jpg' -o -iname '*.jpeg' -o -iname '*.png' \) \
  -exec exiftool -ExposureTime -T {} \; -exec bash -c '
    file="$1"
    exposure="$2"

    # Convert exposure to decimal
    if [[ "$exposure" =~ ^([0-9]+)/([0-9]+)$ ]]; then
        num="${BASH_REMATCH[1]}"
        denom="${BASH_REMATCH[2]}"
        exposure_val=$(echo "$num / $denom" | bc -l)
    else
        exposure_val="$exposure"
    fi

    # Filter by exposure between 1/100 and 1/20 seconds
    if (( $(echo "$exposure_val >= 0.01" | bc -l) )) && (( $(echo "$exposure_val <= 0.05" | bc -l) )); then
        atime=$(stat -c %X "$file")  # Access time (epoch)
        echo "$atime $file"
    fi
  ' bash {} $(exiftool -s3 -ExposureTime {}) | sort -nr

In voidtools everything it would be

pic: path:"C:\pics" sort:da-descending ExposureTime:1/20..1/100

But actually doesn't work because "ExposureTime" is only available as an sorting order not a filter but you get the gist ;)

in reply to interdimensionalmeme

Ah yeah okay, I see, that would be quite tedious to implement in bash. Everything looks pretty neat. 😁

Buuut I just looked at KDE's search framework filter options (used by dolphin if you press + f ) and it seems it is indeed possible to search/filter by exposure time with dolphin or via directly in the cli.

in reply to interdimensionalmeme

Seems like a good and useful workflow for sure. Don't know if something equivalent exists, maybe it doesn't.

I'd personally use find for this, but it is a command line tool, and while I have memorized some of the more common options (directories-only would be -type d for example), I'd have to look at the manpage for more advances options. It's not hard exactly but it's not easy-to-use GUI software for sure.

in reply to gnuhaut

I've taken to using chatgpt to make me the more advanced find queries, before on linux I would ONLY use find /path | grep -i somenames
So that's already an improvement, if still a bit tedious

The thing about everything is that it's so ergonomic, fast and powerful.

Being able to search anything and sort everywhich way with the click of a button

Check out this sublime search syntax (this not even half of it ! )

And the re-ordering by columns, and there are just SO MANY columns you can add, like search by EXIF camera exposure, no problem !

I really wish there was something as good as "everything" on linux, it's just awesome.