From 5c4a9851e63c1a9c69a558de426fe1a4e5b19822 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Wed, 6 Mar 2024 09:31:10 +0100 Subject: [PATCH] =?UTF-8?q?:zap:=20*=C2=A7ls=E2=86=92ls*=20and=20KDE=20Neo?= =?UTF-8?q?n=206=20and=20njs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bash/.bash_aliases | 6 ++++-- .config/Seafile/Seafile Client.conf | 16 ---------------- README.md | 5 ++++- bin/§vim_plugins.mjs | 6 +++++- 4 files changed, 13 insertions(+), 20 deletions(-) delete mode 100644 .config/Seafile/Seafile Client.conf diff --git a/.bash/.bash_aliases b/.bash/.bash_aliases index 6bc54f6..9581b43 100644 --- a/.bash/.bash_aliases +++ b/.bash/.bash_aliases @@ -42,7 +42,7 @@ history_most_used(){ LC_ALL=C cat ~/.bash_history | cut -d ';' -f 2- | §awk 1 | ls ~/bin | grep -P "^§" | sed 's/^§/~\/bin\/ §/' } -alias §ls='ls -pQFh --group-directories-first' +alias ls='ls -pQFh --group-directories-first' alias §less='less -R -S' alias §cd.='clear;§ls' @@ -64,7 +64,9 @@ alias §find.='find . -maxdepth 1' alias pdftk='java -jar $HOME/bin/pdftk-all.jar' bw-session(){ bw logout - login=`kwallet-query kdewallet -f accounts -r Bitwarden 2> /dev/null` + # login=`kwallet-query kdewallet -f accounts -r Bitwarden 2> /dev/null` + login=$(§kwallet.mjs --wallet kdewallet readPassword accounts bw-json) + echo "$login" export BW_CLIENTSECRET=`echo "$login" | jq -r .secret` export BW_CLIENTID=`echo "$login" | jq -r .id` bw login --apikey --raw diff --git a/.config/Seafile/Seafile Client.conf b/.config/Seafile/Seafile Client.conf deleted file mode 100644 index b01b3b1..0000000 --- a/.config/Seafile/Seafile Client.conf +++ /dev/null @@ -1,16 +0,0 @@ -[Behavior] -hideDockIcon=false -hideMainWindowWhenStarted=true - -[MainWindow] -pos=@Point(1094 150) -size=@Size(640 585) - -[RepoTreeView] -expandedCategories-e77d1fb=Sd\xedleno se skupinama\tNed\xe1vno aktualizovan\xe9\tMoje knihovny - -[Settings] -computerName=TUXEDO-InfinityBook-s15gen6 - -[UsedServerAddresses] -main=https://seafile.jaandrle.cz/ diff --git a/README.md b/README.md index 3a04efe..aec6ee0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,8 @@ Sekce obsahuje log změn v Tuxedo laptopu s KDE Neon. - mostly OK - [ ] desktop exceptionally freeze for less than a second: *investigation → report a bug* -- [ ] logout/poweroff dialog not showing and not working: *investigation → report a bug* … see below +- [x] FIXED by update: ~logout/poweroff dialog not showing and not working: *investigation → report a bug* … see below~ +- [ ] Kup is missing in Settings (only restore files option is available): *investigation → report a bug* - [x] krunner not launching → created `/usr/share/dbus-1/services/org.kde.krunner.service` (see below) - [x] meta+tab (last virtual desktop) → workaround [./bin/kde6-workarounds.mjs](./bin/kde6-workarounds.mjs) - [x] klipper (edit last item) → workaround [./bin/kde6-workarounds.mjs](./bin/kde6-workarounds.mjs) @@ -54,6 +55,8 @@ Sekce obsahuje log změn v Tuxedo laptopu s KDE Neon. - [ ] [Fingerprint reader support : r/tuxedocomputers](https://www.reddit.com/r/tuxedocomputers/comments/176fscp/fingerprint_reader_support/), still receiving “no match” - [ ] [Clipboard support in Wayland · Issue #5157 · vim/vim](https://github.com/vim/vim/issues/5157#issuecomment-776008833) - [x] ctrl+tab using [k0kubun/xremap: Key remapper for X11 and Wayland](https://github.com/k0kubun/xremap) and `sudo crontab -e`+`@reboot` and [./.config/xremap.yml](./.config/xremap.yml) +- [ ] Wayland go to sleep even the external monitor is connected (HDMI) *→ seems to be this issue [438716 – Lid close leads to suspend even when external monitor is attached](https://bugs.kde.org/show_bug.cgi?id=438716)* +- [ ] [`npx npmkill` — Why are node_modules SO BIG 🤦‍♂️ #javascript #software #technology #code #webdev - YouTube](https://www.youtube.com/shorts/VgPNtow7fNM?app=desktop&si=Kl7CH3vCoyH7tqFU) ```bash qdbus org.kde.ksmserver /KSMServer org.kde.KSMServerInterface.logout 1 diff --git a/bin/§vim_plugins.mjs b/bin/§vim_plugins.mjs index 3495f81..485a5c4 100755 --- a/bin/§vim_plugins.mjs +++ b/bin/§vim_plugins.mjs @@ -153,7 +153,11 @@ async function actionUpdate(){ }).then(f=> s.echo(f).to(dirs.one_files+fileName(url))); })); echo("One-file plugin(s) updated."); - s.cd(dirs.bundle).$().run`git commit -m "Update"`; + try{ + s.cd(dirs.bundle).$().run`git commit -m "Update"`; + } catch(e){ + echo(e?.message); + } updateRepo(dirs.pack, getPack()); $.exit(0);