On Friday, August 26, 2016 12:19:17 AM CEST you wrote: > On Thursday, August 25, 2016 9:49:44 PM CEST Martin Steigerwald wrote: > > Am Mittwoch, 24. August 2016, 18:06:14 CEST schrieb inkbottle: > > > On Wednesday, August 24, 2016 9:24:05 AM CEST Marc Haber wrote: > > > > On Fri, Aug 19, 2016 at 12:52:04PM +0200, Martin Steigerwald wrote: > > > > > Am Freitag, 19. August 2016, 10:42:33 CEST schrieb Maximiliano Curia: > > > > > > El 2016-08-18 a las 16:46 -0400, Shmerl escribió: > > > > > > > I didn't monitor this topic, so I could have missed some > > > > > > > announcements > > > > > > > or > > > > > > > previous discussion, so please excuse me if it was already > > > > > > > mentioned > > > > > > > before. When is Plasma 5.7.2 coming to Debian repos? I see some > > > > > > > packages > > > > > > > like kwin-x11 are already 5.7.0, while others like > > > > > > > plasma-desktop > > > > > > > are > > > > > > > 5.6.5. > > > > > > > > > > > > > > In general, what is the reason that they are different versions, > > > > > > > is > > > > > > > it > > > > > > > because they are uploaded gradually, or there are some problems > > > > > > > with > > > > > > > newer versions of some of them and they aren't uploaded until > > > > > > > those > > > > > > > problems are fixed? > > > > > > > > > > > > plasma-workspace tests were failling in the 5.7.[0-2] releases and > > > > > > we > > > > > > decided to wait till this gets fixed, this was finally fixed in > > > > > > 5.7.3 > > > > > > (by > > > > > > moving the failling tests to a non packageable project). By that > > > > > > time > > > > > > 5.8 > > > > > > was announced to be the first lts, so it makes sense to wait for > > > > > > 5.8, > > > > > > which > > > > > > should be released "real soon now"(tm). > > > > > > > > > > Meanwhile Maxy started uploaded KDE Frameworks 5.25 packages, which > > > > > as > > > > > far > > > > > as I got, will be required by (parts of) Plasma 5.8. > > > > > > > > The current ride is a bit bumpy though. My konsole.desktop file got > > > > lost, and one (but only one) of my workstation systems keeps losing > > > > the Panel on login, which is kind of annoying. Where does plasma save > > > > panel configuration? > > > > > > I had tediously sorted scores of Okular windows into a handful of > > > different > > > activities (very convenient, you should give it a try), and this has > > > been > > > bit by bit ground down along logins. > > > So, if someone knows where those session data are stored... > > > > I though I have seen this somewhere, but right now I do not find it in > > ~/.local, ~/.config or ~/.cache. > > > > And I think > > > > martin@merkaba:~/.local/share/kactivitymanagerd> find > > . > > ./resources > > ./resources/database > > ./resources/database-wal > > ./resources/database-shm > > > > is more about what files have been accessed how often in which activities. > > > > Jup, appears so. Its an sqlite3 db that sqlite3 command can display. For > > example use ".tables" on it and then "SELECT * FROM sometable;" > > > > AFAIR the info which app opens on which activity was stored in some > > textfile. > > > > There is ~/.config/session with a file for each app (and lots of probably > > outdated files), yet I don´t see any note in there on which activity they > > appear. > > I've followed your hints: > $ find ~/.kde/ ~/.local ~/.config ~/.cache -type f -iregex '.*akonadi.* > \|.*kde_application_manuals.*' -prune -o -type f -print0|xargs -0 grep -i > activit|wc -l > answers 267 on my box > many of them if not most seeming relevant. > > Looking at the output, it seems all the necessary data to "put" a window > into an activity are here, through hex codes after the following pattern: > xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx > > So this line seems good: > $ find ~/.kde/ ~/.local ~/.config ~/.cache -type f -iregex '.*akonadi.* > \|.*kde_application_manuals.*' -prune -o -type f -print0|xargs -0 grep -i > activit|egrep '[[:xdigit:]]{8}-[[:xdigit:]]{4}-[[:xdigit:]]{4}-[[:xdigit:]] > {4}-[[:xdigit:]]{12}' > > In contrast I previously had searched in the line of: > Google: qdbus org.kde.kglobalaccel /component/plasma_desktop invokeShortcut > "manage activities" > > But this didn't help me in the task of reconstructing the lost session. > (Or at least not much at the time).
I just put here too a line that I use to keep track of what document I've been reading using Okular, here for the last 3 days: find ~/.kde/share/apps/okular/docdata/ -ctime -3 -type f -print0|xargs -0 cat| grep '<documentInfo'|cut -d" -f2|tr '\n' '\0'|xargs -0 -n1 echo Because it comes in very handy sometimes. (of course the two last commands follows this pattern in case you want to put something else that "echo", like "open"...; otherwise it's just plain weired) Chris > > Thanks, > Chris > > > Well maybe someone knows where this is stored, otherwise I´d > > ask in an > > upstream mailing list. > > > > Thanks,