Cli tool #9

Merged
Zacharias-Brohn merged 33 commits from cli-tool into main 2026-02-22 21:43:51 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 77060d2457 - Show all commits
+2 -2
View File
@@ -25,13 +25,13 @@ Searcher {
function preview(path: string): void {
previewPath = path;
Quickshell.execDetached(["sh", "-c", `python3 ${Quickshell.shellPath("scripts/SchemeColorGen.py")} --path=${previewPath} --thumbnail=${Paths.cache}/imagecache/thumbnail.jpg --output=${Paths.state}/scheme.json --scheme=${Config.colors.schemeType}`]);
Quickshell.execDetached(["sh", "-c", `zshell-cli scheme generate --path=${previewPath} --thumbnail=${Paths.cache}/imagecache/thumbnail.jpg --output=${Paths.state}/scheme.json --scheme=${Config.colors.schemeType}`]);
showPreview = true;
}
function stopPreview(): void {
showPreview = false;
Quickshell.execDetached(["sh", "-c", `python3 ${Quickshell.shellPath("scripts/SchemeColorGen.py")} --path=${root.actualCurrent} --thumbnail=${Paths.cache}/imagecache/thumbnail.jpg --output=${Paths.state}/scheme.json --scheme=${Config.colors.schemeType}`]);
Quickshell.execDetached(["sh", "-c", `zshell-cli scheme generate --path=${root.actualCurrent} --thumbnail=${Paths.cache}/imagecache/thumbnail.jpg --output=${Paths.state}/scheme.json --scheme=${Config.colors.schemeType}`]);
}
list: wallpapers.entries
+1 -1
View File
@@ -6,7 +6,7 @@ arch=('any')
url='https://github.com/Zacharias-Brohn/z-bar-qt'
license=('GPL-3.0-only')
depends=('python' 'python-pillow' 'python-materialyoucolor' 'libnotify' 'swappy' 'dart-sass'
'app2unit' 'wl-clipboard' 'dconf' 'cliphist')
'app2unit' 'wl-clipboard' 'dconf' 'cliphist' 'python-typer')
makedepends=('python-build' 'python-installer' 'python-hatch' 'python-hatch-vcs')
source=("$pkgname::git+$url.git#branch=cli-tool")
sha256sums=('SKIP')