update.
- 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:
1
bin/chbg
1
bin/chbg
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
# to change wallpapers both niri workspace and niri tab view
|
||||
WP_DIR="$HOME/.local/share"
|
||||
|
||||
|
||||
10
bin/fuzzel-vsc-entries.ps1
Executable file
10
bin/fuzzel-vsc-entries.ps1
Executable 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"))
|
||||
8
bin/fuzzel-win+r.ps1
Executable file
8
bin/fuzzel-win+r.ps1
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/pwsh
|
||||
|
||||
$option=(fuzzel --dmenu --prompt-only="Command to execute: ")
|
||||
|
||||
$option -and (
|
||||
# garbage `start-process`.
|
||||
systemd-run --user --scope --slice=AgExecBar.slice --unit="$(($option -split " ")[0])-$PID".scope /bin/sh -c "$option"
|
||||
)
|
||||
Reference in New Issue
Block a user