Salta al contenuto principale



Arduino (Italian Electronics Company) acquired by US-Based Qualcomm


cross-posted from: lemmy.world/post/37022550

Today we’re sharing some truly exciting news: Arduino has entered into an agreement to join the Qualcomm Technologies, Inc. family! This is a huge step in our journey – one that allows us to keep growing, thriving, and making technology accessible to everyone, while bringing our values of openness, simplicity, and community spirit to an […]


READ THE TOS! lol


In order to protect your privacy even more efficiently, you need to do something very simple whenever using an online service or a software. Something that most people fail to do is reading the terms of service, also known as a TOS, from companies or developers' software. This usually will tell you straight up whether they're spying on you, selling your data, or using it to sell ads. This will solve a lot of problems with people not realizing that some software is actually the opposite of privacy, but they keep using it thinking it enhances their privacy.

don't like this

in reply to Lunatique

For every company where I have felt the need to read their terms of service and privacy policies beforehand, only once have I felt comfortable enough to go ahead and use their service.

The other twenty or so times? I have backed out. Usually I email the company first for clarity, which has always resulted in them dodging and dancing around their terrible terms and privacy practices.

It's great to be informed, but the real solutions needed are regulations and consumer protections. Being informed just results in me never using 99% of software or services.

in reply to Lunatique

If like me you are both lazy and not a lawyer, check ToS;DR tosdr.org/ but honestly it's like labels on food products.

You don't need the damn label to know that Coca Cola is not good but water is... so yes, don't use Facebook, great. You knew that already if you care just a bit about privacy.

Still, if you want to go there, please do check tosdr.org/ and if you can contribute back.

What I personally find more useful is F-Droid because if an app is not present on it, it's rarely because technically it can't, it's often because of anti-patterns. The app tries to go on F-Droid only to realize it's not "just" another store but they have rules, good rules IMHO, like no Google Analytics and whatever backends to track user behavior.

Also Android app analysis like exodus-privacy.eu.org/ is quite good, same idea, finding anti-patterns but not in code (which isn't a good start if it's not FOSS anyway) but rather in how the app actually behaves.

TL;DR: yes, do read the ToS if you can, but if you can't don't just press "yes" or avoid and move on, rely on the work of others like ToS;DR, F-Droid or exodus-privacy!

Questa voce è stata modificata (2 settimane fa)
in reply to utopiah

I don't really agree that if an app is not on f-droid then it's always bad, maybe a developer don't want to stay behind more stores
Questa voce è stata modificata (2 settimane fa)
in reply to Axolotl_cpp

I did not say it was always bad :

if an app is not present on it, it’s rarely because technically it can’t, it’s often because of anti-patterns.


So we agree. What sparked this reasoning though was github.com/Mentra-Community/Me… which as you can see squarely fits in that pattern, namely :

  • interesting open-source project targeting Android
  • not focusing on distributing via F-Droid
  • upon checking how to do so, discover that beside their available bandwidth, their current choices is not compatible with F-Droid.

I think it's a great example because it shows that developers themselves might not be aware of the consequence of their choices on privacy. This very project is about augmented reality and the value they try to demonstrate is that, unlike Meta for example, they do care about privacy. Yet, in practice, they do rely on Google components that do share data back.

So sure, I didn't say nor do I think ALL projects missing from F-Droid are because they have anti patterns... but more often than not they do.

PS: also noticed WireGuard is like that too. They force upgrades via their own distribution system and AFAICT F-Droid insists that it's up to the user to upgrade if they want to. It's a hard stance and it has consequences, e.g. maybe some people on F-Droid do not get WireGuard official app, maybe they get a less secure one, maybe they get it out of F-Droid and side-step the anti-pattern ... but it's also understandable.



Denver, CO.


(I’m not actually in Denver anymore, I’m back home in Cascadia, but this was shot out that way a few days ago, and I’m trying to post only one work a day or less, so I don’t flood the community, and to give each of my works, and each of yours, greater appreciation. Thank you for understanding.)

This was shot in Union Station; I was completely new to Denver, having been there for less than thirty seconds, drinking in new architecture and taking the culture in. I think I took 120 exposures in this train station alone, and I think this is the one I liked the best. It’s such a simple image, and yet the color in it is delicious, almost food-like.

Thank you for seeing my work!








White House memo says furloughed federal workers aren't entitled to back pay


Furloughed federal workers aren't guaranteed compensation for their forced time off during the government shutdown, according to a draft White House memo described to Axios by three sources.

Why it matters: If the White House acts on that legal analysis, it would dramatically escalate President Trump's pressure on Senate Democrats to end the week-old shutdown by denying back pay to as many as 750,000 federal workers after the shutdown.

https://www.axios.com/2025/10/07/trump-memo-furloughed-federal-workers-backpay




Tip #758

Return to the top of the page on Vivaldi Social by clicking the feed header.

To see the latest posts on Vivaldi Social after having made your way down the feed, you need to scroll to the top of the page, where the newest posts are waiting for you automatically or require a simple click to load (aka slow mode). There are a few ways you can do it, so find what works for you.

To jump to the top of the page:

  • Click the feed header (Home, Trending, Notifications, etc.)
  • Press “Home” on your keyboard.
  • Scroll with the mouse wheel until you reach the top of the page.
  • Create a Keyboard Shortcut or Mouse Gesture for the action in the Vivaldi browser.


Vivaldi Social's homepage open in the Vivaldi browser. An arrow points at the header of the feed.
#Mastodon #Vivaldi #VivaldiSocial

vivaldi.com/blog/tips/tip-758/



How to manage configuration files


I'm trying to find a better solution to manage configuration files, both user's dotfiles and system files in /etc.
I'm running an ubuntu server where I have a bunch services with custom configurations, and systemd drop-in files, but on top of that I also have some scripts and user dotfiles that I need to track.

What I'm doing right now is that I have a folder full of symlinks in the admin user's directory (poor username choice, btw) and I'm using bindfs to mount this directory inside a git repository, this way git won't see them as symlinks, and will version them as regular files. The problem with doing this is that as git deletes and rewrites files, bindfs fails to track the changes and converts the symlink to regular files.

I looked into chezmoi, but that is only meant to track user dotfiles and will refuse to add a file from /etc, that is unless doing some extra work. But even so, chezmoi will not track the user:group of files, so I would still have to manage that manually.

I also looked into GNU Stow, and that would not complain about files from /etc or anywhere, but it similarly will not track permissions and I would have to manage that manually.

I see that some people are using ansible to manage dotfiles, but at that point, it would make sense to just migrate to ansible, except I don't want to rebuild my server from scratch to use ansible. Also it looks like a lot to learn.

Is there a better solution I'm not seeing? Maybe something using git hooks?

Edit:

I ended up using pre-commit and post-merge git hooks to launch a python script. The python script reads from a yaml file where I annotate the file paths and permissions, and then copies to or from the file location to the git repository.

I used the sudoers file to allow the admin user to run this specific script with specific arguments as root without password (because the git commands are run from VS Code and not manually), which is dangerous, be careful when doing that. I have taken special care to make this secure:
* I used absolute paths for everything, to avoid allowing running from a different pwd as a way to copy different files
* The script itself is installed in a root-owned location, so an unprevileged user cannot edit it
* The configuration yaml is root-owned, so an unprevileged user cannot modify which files are copied or their permissions
* Configuration files that can grant permission are not managed by this script (the yaml, /etc/passwd, /etc/groups, polkit rules, the sudoers file, ...)

Questa voce è stata modificata (1 settimana fa)
in reply to edinbruh

You could use aliases on your .bashrc for git (and a bare repo), that would let you manage your $HOME and /etc directly with git without using symlinks, only downside is having them separated in two aliases and two repos.

# user config repo
alias dotfiles='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'

# system config repo
alias etcfiles='sudo git --git-dir=$HOME/.etcfiles --work-tree=/etc'

It is also recommended that you run:
<alias> config --local status.showUntrackedFiles no

in the terminal for both the dotfiles and etcfiles aliases (you can pick the aliases and git-dir names you want)

The aliases help you have a custom named folder instead of .git located in a custom path, and you can manage them without symlinks as you use git directly on the file's original location, this would solve your issue of other solutions that depend on symlinks

Note: you could technically have the root directory --work-tree=/ as a work tree to use only one command, but It is not recommended to give git the possibility to rewrite any file on the entire file system.

Some reference links:

Text

Questa voce è stata modificata (2 settimane fa)
in reply to edinbruh

I have a simple bash script that manages folders and files with a way to route them to whatever location. Then I run the script and it does all the symlinking for me. This is what I do for systemd unit files and my own dotfiles


UK Age Verification Data Confirms What Critics Always Predicted: Mass Migration To Sketchier Sites


A month old now, but it's important on the unnecessary surveillance creep we keep having. First this, then digital ID.

Worrying levels of authoritarianism that solves nothing. Government are supposed to represent us, not ignore us and treat us like children. Who are they working for?



in reply to schizoidman

Many governments are astonishingly dumb. If I were in charge and wanted to make pro-Israel politics, I would let them demonstrate whatever they want. Just would keep completely ignoring those demonstrations and avoid the theme altogether.

Peaceful demonstrations are completely useless, no need to fight them.

Luckily, most governments are dumb.

in reply to Lembot_0004

They do it already basically, but Bologna is a peculiar setting and this ban is an unsurprising ragebait


Major US Midwest port [Cleveland] begins electrifying operations to reduce emissions


For those wondering how a mid-continent city has a port, the Great Lakes are connected to the ocean via the St. Lawrence, and have a system of locks allowing mid-sized cargo ships to travel substantially inland.
Questa voce è stata modificata (2 settimane fa)


Microsoft makes it even harder to install Windows 11 without a Microsoft Account or internet


The company has already blocked the popular oobe\bypassnro command that people used to skip parts of the initial setup, and now, Microsoft is doubling down on its efforts. In the latest Windows 11 preview builds, the software giant makes it much harder to install Windows 11 without a Microsoft Account.

https://www.neowin.net/news/microsoft-makes-it-even-harder-to-install-windows-11-without-a-microsoft-account-or-internet/

#tech


How Mark Carney is complicating Canada’s climate progress


From cancelling the carbon tax to pausing the electric vehicle mandate, the Carney government is making sweeping changes to the country’s environmental rules
in reply to CompactFlax

We kinda need both.

Oil isn’t just for cars and power plants. Oil is a chemical used in so many things, from asphalt to medicine.

But we should be transitioning to green energy, which is less centralized than a few big power plants, less polluting, and therefore more secure from threats. It’s also getting cheaper and cheaper by the month.

I want a strong Canada that can run our own critical supply chains, and I want a green Canada that doesn’t let our mines throw their tailings into our drinking water and our air is clean. And I want a secure Canada that can stand up to bullies without fear.

in reply to panda_abyss

You make good points about our dependency on oil and gas for chemistry. I think it makes it even more important to reduce our reliance on it globally for personal transportation.





Anyone else live somewhere that has had people joining in a WiFi naming joke?


My WiFi is ‘Secret Rebel Base’.

My neighbours have added ‘Java the Hub’, ‘Obi Lan Kenobi’, and ‘Red WiFi-ve Standing By’. This makes me happy.

Anyone else live in a neighbourhood that embraces this kind of WiFi silliness?

in reply to Hossenfeffer

Sadly in my apartment complex they seem to all use the default name given by the router (like Carrier-randomnumbers).

I have a friend who named his WiFi "Connecting..." which is diabolical


in reply to Severus_Snape

A good person would be more concerned about some other kind of persecutions taking place right now.

Seems almost like Donald and Elon advocating against whites discrimination in South Africa.



CommunityHasNoFollowers error


It appears that some instances have not resolved the unsubscribes properly, and I'm seeing errors like the below:
2025-10-07T12:20:11.488023Z  WARN Error encountered while processing the incoming HTTP request: lemmy_server::root_span_builder: CommunityHasNoFollowers: CommunityHasNoFollowers
   0: lemmy_apub::activities::community::announce::receive
             at crates/apub/src/activities/community/announce.rs:161
   1: lemmy_server::root_span_builder::HTTP request
           with http.method=POST http.scheme="http" http.host=lemmy.domain.ext http.target=/inbox otel.kind="server" request_id=02568c66-9ed6-4eb0-b533-77b19rcdef56 http.status_code=400 otel.status_code="OK"
             at src/root_span_builder.rs:16

Is there a way to determine which communities are throwing this error, and force the unsubscribe?
in reply to fmstrat

Is that the whole log? Have you enabled the trace level?
in reply to asudox

This was with the default logging:
RUST_LOG=warn,extism=info,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=debug,lemmy_db_schema=debug,lemmy_db_views=debug,lemmy_routes=debug,lemmy_utils=debug,lemmy_websocket=debug

Any idea which one I should set to trace?


Matthias Pfefferle discusses the Fediverse's origins and evolution with Evan Prodromou, highlighting decentralized social networks, protocols, privacy, and the future of federated systems.


in reply to DeathByBigSad

I’m an amnesiac and one of the first things I learned is that memories don’t really matter. The past is over, what matters is what you choose to do and not what you did. Obviously people do terrible and sometimes unforgivable things. I can sympathize with people who can’t let stuff go, but I personally just can’t be bothered by it anymore though. I have and will offer support to even my abusers.

To me, a person is how they act and what they want in the present. Lived experience affects everything a person does, the parts of a person’s past that are relevant reveal themselves in the present through how a person is.



Anime su mangaka: Jun Fukuyama nel cast di Egao no Taenai Shokuba Desu; è Masayuki Todo, ex editor di Futami


Nuovo ingresso d’autore per l’anime Egao no Taenai Shokuba Desu (Un posto di lavoro stranamente meraviglioso per mangaka): Jun Fukuyama si unisce al cast nel ruolo di Masayuki Todo, ex editor della protagonista Nana Futami. L’aggiunta rafforza un ensemble vocale già ricco e conferma l’attenzione della produzione verso interpreti di primo piano.

TUTTI I DETTAGLI E DOVE VEDERLO IN STREAMING: Anime su mangaka: Jun Fukuyama nel cast di Egao no Taenai Shokuba Desu; è Masayuki Todo, ex editor di Futami



Blanca 3, anticipazioni terza puntata del 13 ottobre 2025: Blanca si riavvicina a Liguori, Eva è gelosa di Domenico


La terza puntata di Blanca 3 andrà in onda lunedì 13 ottobre 2025 in prima serata su Rai 1. L’episodio “Il Delfino” intreccia il caso di puntata con i nodi sentimentali: Blanca e Liguori tornano a indagare fianco a fianco, mentre Eva Faraldi fatica a nascondere la gelosia per il legame tra Blanca e Domenico.

LEGGI LE ANTICIPAZIONI: Blanca 3, anticipazioni terza puntata del 13 ottobre 2025: Blanca si riavvicina a Liguori, Eva è gelosa di Domenico



Dell Latitude Touchpad Deadzone and Fingerprint


I recently got my hands on a Dell Latitude E7470 and installed Fedora Workstation. Even though I enabled two finger scroll (and disabled touchpad edge scroll), the right side of the touchpad still has a dead zone of considerable size. So, when I start a mouse movement too far on the right side, it wont register.

I tried a few things, like adding quirk configs, but the zone is still there. Bios had no option to disable. (I reinstalled with UEFI, prior installation was legacy uefi / bios, so I have to give it a look again).

Does someone have a way to disable the dead zone?

Also, the fingerprint sensor doesn't work. From what I could research, it is a broadcom device with officials drivers for MS and Ubuntu. I tried some stuff to get this thing running, but it didn't work out. I still have to try a bios update after the reinstall. Is there a way to get this thing running under Fedora? It's not a crucial feature, but a nice to have for sure.

in reply to xtapa

So it looks like the touchpad problem is a known issue with that particular model. A web search turned up an Arch Linux forum post from 2017 with the same issue. Unfortunately, there was no solution posted.

Your touchpad shows up as a PS/2 device, right? I have a ThinkPad A475 with a PS/2 trackpad that won’t function at all in Linux unless I add i8042.reset as a GRUB argument.

Maybe see if that helps?

in reply to Fives

Your touchpad shows up as a PS/2 device, right?


Yes.

I am not an expert with GRUB at all. For some reason, this sounds very aggressive and with a high chance of side effects. Theres nothing of worth on the device though, so I guess I'll give it a try.

in reply to xtapa

If you enter it in at boot time it’s not permanent, so it’ll either work or it won’t, but it shouldn’t break anything.
in reply to xtapa

maybe playing around some values in synclient can fix it. that's how i created a dead zone in my panasonic laptop. (some area is keep touched while using keyboard so)


Autoproduzione sementi ortaggi


Ciao a tutti.
Qualcuno di voi si autoproduce le sementi per l'orto?

reshared this



This Month’s Quote

Give to every human being every right that you claim for yourself.

Robert G Ingersoll

#blog #quotes #zenmischief




Can we update the wiki? Most streaming sites no longer work.


Clearly the feds are onto us. They actively monitor this place and will put forth as much effort as possible to shut sites down.

Hold on, let me update this. Why are you stupid people/mods ok with such a shit list of garbage that doesn't work? Why do you condone giving free media a bad name? Holy shit, have some fucking standards. Don't just accept everything that's shoved into your idiot face.

This is disgusting. You all make me sick.

Questa voce è stata modificata (2 settimane fa)
in reply to twinklefruit

Step 1: Get some dank ass flower

Step 2: Follow the advice in this video

Step 3: Rinse and repeat

Questa voce è stata modificata (2 settimane fa)
in reply to twinklefruit

Name the names of streaming platforms that don't work, everything works on this side


The Rachel Maddow Show 10/6/25




Brajla skribo jubileas kaj evoluas

En la jaro 2025 oni festas la 200-jariĝon de brajlo, skribsistemo inventita por blinduloj en 1825 de la tiam 16-jara franco Louis Braille. Versio de brajlo kun esperantaj literoj estis proponita de la sveda pioniro Harald Thilander ĉirkaŭ la jaro 1900, kaj ekde 1904 daŭre aperadas la brajla revuo Esperanta Ligilo. Otto Prytz en detala artikolo speciale verkita por Libera Folio rakontas pri la estiĝo kaj evoluo de la brajla skribo por diversaj lingvoj.

liberafolio.org/2025/10/07/bra…

Questa voce è stata modificata (2 settimane fa)

reshared this



Jon Stewart Makes the Case for Dems Holding the Line in Trump's Shutdown Warfare





in reply to alexei_1917 [mirror/your pronouns]

I have a terminal app in my phone, but I don't normally use it from the touch keyboard..

The main reason I have it is because from it I can install an ssh server (and a few other services, like privoxy and so) and then connect to the phone through ssh and access that CLI from other locations, even places where the internet is restricted/monitored or there isn't a wifi access point (I can create a hotspot from the phone instead). If you are using a work laptop with restricted access, or are traveling and using a computer in your remote location, carrying around with you, in your pocket, a set of CLI / TUI tools and apps that you are familiar with can come in handy.

Also, nowadays you can plug a keyboard directly to your phone (a monitor too) and have it work as a portable terminal device. Of course it would be better if you were able to have a Desktop-grade OS in your phone for this.. but things like termux work if you are a "terminal junkie".

Questa voce è stata modificata (2 settimane fa)
in reply to Ferk

I suppose that would be good for emergencies or less than ideal situations, for all you "terminal junkies" out there, but... I tend to avoid the terminal in the first place, so I wouldn't really have a need for such a thing or understand what people would use it for.



Washington turns its back on US citizens detained with the Global Sumud Flotilla


On October 6, after several US citizens had been detained for days by Israeli forces after attempting to deliver humanitarian aid to Gaza, US ambassador to Israel Mike Huckabee took to X to accuse these activists of taking “a carbon-spewing Hamas-funded boat ride in violation of [international] law intruding into war zone to stand [with] terrorists.”

Last week, Israeli forces detained over 435 activists who were taking part in the Global Sumud Flotilla, the largest civilian-led humanitarian mission of its kind. While dozens are still being held by Israel, those who have been deported and released, allege mistreatment by Israeli forces.

The flotilla saw participation from delegates from 57 countries – but following the seizing of ships by Israeli forces, the US government has taken a unique position in both ignoring the plight of its own citizens and open condemnation of its own citizens by diplomatic personnel.

British parliamentarian Zarah Sultana demanded the United Kingdom call for the freedom of detained US citizen and activist David Adler, writing, “the US won’t act so it’s on us to demand justice.”

According to Laura Colston, mother of detained activist and journalist Alex Colston who alleges her son is being mistreated by Israeli forces, “calls/messages to US Gov’t officials are ignored.”

“When else has a US journalist been unlawfully detained abroad and the State Department has done essentially nothing about it?” wrote Freedom of the Press Foundation on X, in relation to Colston’s detention.

Progressive lawmakers pressure executive branch


Some US lawmakers have challenged the indifference of the executive branch.

Lawmakers have urged Secretary of State Marco Rubio to protect the US citizens aboard the flotilla even before they were detained. In a letter sent on September 29, a group of congressional representatives, led by Representative Rashida Tlaib, argued that “the 24 American citizens on board these ships cannot afford another failure of American leadership.”

On Monday, California representative Ro Khanna said he plans to put pressure on Rubio and Huckabee for Adler’s release, writing, “Our government must stand up for an American citizen’s fair treatment and release.”

Maryland Senator Chris Van Hollen posted a video of him speaking directly with the relatives of US flotilla activists detained by Israel, and called on Huckabee to “do his job.”

“The siege on Gaza is breaking”


The 24 US citizens aboard the flotilla who were captured by Israel include Adler, Colston, anti-imperialist veteran activist Greg Stoker, musicians Leila Hegazy and Carsie Blanton, and others.

“My sister is a New Yorker,” said Hegazy’s twin sister, Omnia, in an October 1 press conference after the flotilla was terrorized by Israeli attacks. “She is being openly threatened by the Israeli government, while our senators are sending money to Israel,” Hegazy said, denouncing her Senators Chuck Schumer and Kirsten Gillibrand for not speaking out for her sister.

The day after songwriter Carsie Blanton was detained by Israeli forces, her brother, Elijah, spoke at a pro-Palestine rally. Blanton said, that, although he does not know his sister’s current whereabouts, or where she is being detained, he knows that she is “not afraid,” because “they can see what we can see,” that “the siege on Gaza is breaking.”

The post Washington turns its back on US citizens detained with the Global Sumud Flotilla appeared first on Peoples Dispatch.



Wayland - How Best to Log My Own Desktop Activities


I'm self employed. I need to record how much time I spend on whatever task for whatever client.

Sounds simple, but I'm terrible at it. I always get to the end of the day without having recorded anything and not knowing what I've actually done.

Basically, I'd like to create a text log of the active window title, and take a screen cap.

I'd like to do this periodically as in every 15 minutes or so.

For the text log I just haven't been able to achieve this at all.

For the screen caps I can use flameshot to take a screenshot from the CLI, but it makes a sound and shows an animation which is sub-optimal.

Any suggestions of where to look much appreciated.

Edit: I'm not asking for a time tracking app. I want something to log the active window title and take a screen cap so I can figure out what I was doing and write it in my time tracking app.

Edit: I'm narrowing in on a solution.

Firstly, a lot of previously available solutions don't work because of recently implemented security features in gnome.

You need to enter unsafe mode by entering the following in the looking glass tool (which you can access by running lg in the alt + f2 dialog):

global.context.unsafe_mode = true

thereafter, this can grab the active window title for you:
gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval "global.display.focus_window.title"

... and this can take a screen cap for you:
gdbus call --session --dest org.gnome.Shell.Screenshot --object-path /org/gnome/Shell/Screenshot --method org.gnome.Shell.Screenshot.Screenshot false false /tmp/screencap.png
Questa voce è stata modificata (2 settimane fa)
in reply to null_dot

Are you deadset on gnome because this would be crazy easy on hyprland
in reply to Communist

No I'm not especially loyal to gnome.

How would I achieve this with hyprland ?

in reply to null_dot

Hyprland has the screenshotting functionality builtin.

hyprctl dispatch capture window

in reply to null_dot

\#!/usr/bin/env bash

# get hyprland event socket path
HIS=$HYPRLAND_INSTANCE_SIGNATURE
EVENT_SOCK="$XDG_RUNTIME_DIR/hypr/$HIS/.socket2.sock"

# fallback / error check
if [ -z "$HIS" ] || [ ! -S "$EVENT_SOCK" ]; then
  echo "Error: cannot locate Hyprland event socket at $EVENT_SOCK" >&2
  exit 1
fi

logfile="${HOME}/hypr_focus.log"

# function to handle a line from the event stream
handle_event() {
  local line="$1"
  # check for activewindow event
  if [[ $line == activewindow* ]]; then
    # format: activewindow>>CLASS,TITLE
    # strip prefix
    local payload=${line#activewindow>>}
    # split on comma (first comma)
    local cls="${payload%%,*}"
    local title="${payload#*,}"
    local ts
    ts=$(date '+%Y-%m-%d %H:%M:%S')
    echo "$ts — $title (class: $cls)" >> "$logfile"
  fi
  # optionally handle activewindowv2 if you want address instead
  # if [[ $line == activewindowv2* ]]; then
  #   ...
  # fi
}

# listen to the socket
socat -u "UNIX-CONNECT:$EVENT_SOCK" - | while IFS= read -r line; do
  handle_event "$line"
done

honestly if you're willing to do some work you can make hyprland do almost anything

**disclaimer i did not test this much

edit: forgot about the screenshot part, should be easy to add though, just add screenshotting everytime focus changes with grim or whatever

Questa voce è stata modificata (2 settimane fa)
in reply to Communist

Thanks.

I didn't really know hyprland was a thing prior to the comments in this thread. It looks great though.

However, the install process seems non-trivial so I'm going to wait until I have a little more time to play around with it.

in reply to null_dot

Feel free to message me on matrix with questions, it's on my profile and I do free infinite troubleshooting