- supress fuzzel runtime warning
- make use of `gtklock` (still some issues on `swayidle`)
- automatic init kwallet
- misc keyboard bindings (and re-implements)
- sorry for definition messup (
This commit is contained in:
2025-10-13 08:16:59 +08:00
parent c52e9f7bad
commit bce68d73ef
6 changed files with 139 additions and 168 deletions

10
bin/fuzzel-vsc-entries.ps1 Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/pwsh
$desktop="$env:HOME/Desktop"
$fsarg=(Get-ChildItem $desktop -FollowSymlink | ForEach-Object {
if ($_ -is [System.IO.DirectoryInfo]) { return "$($_.Name)/" }
else { return $_.Name }
} | fuzzel --dmenu --prompt="Open with VSCode (~/Desktop): ")
$fsarg -and (Start-Process code -ArgumentList @("$desktop/$fsarg"))