mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-15 22:43:02 +01:00
update justfile
This commit is contained in:
parent
597526ced8
commit
353679bd0c
1 changed files with 8 additions and 3 deletions
11
justfile
11
justfile
|
@ -7,16 +7,21 @@ vscode-langservers-extracted
|
||||||
yaml-language-server
|
yaml-language-server
|
||||||
"
|
"
|
||||||
|
|
||||||
install-scripts target=(`echo $HOME` + "/.local/bin"):
|
install-scripts target=(`echo $HOME` + "/.local/bin"): build-scripts
|
||||||
cargo build --release --manifest-path scripts/randomwallpaper/Cargo.toml
|
|
||||||
cargo build --release --manifest-path scripts/playtwitch/Cargo.toml
|
|
||||||
cp scripts/randomwallpaper/target/release/randomwallpaper {{target}}/randomwallpaper
|
cp scripts/randomwallpaper/target/release/randomwallpaper {{target}}/randomwallpaper
|
||||||
cp scripts/playtwitch/target/release/playtwitch {{target}}/playtwitch
|
cp scripts/playtwitch/target/release/playtwitch {{target}}/playtwitch
|
||||||
|
cp scripts/gpower/target/release/gpower {{target}}/gpower
|
||||||
|
|
||||||
ln -sf \
|
ln -sf \
|
||||||
`pwd`/scripts/{start-joshuto,withjava} \
|
`pwd`/scripts/{start-joshuto,withjava} \
|
||||||
{{target}}
|
{{target}}
|
||||||
|
|
||||||
|
|
||||||
|
build-scripts:
|
||||||
|
cargo build --release --manifest-path scripts/randomwallpaper/Cargo.toml
|
||||||
|
cargo build --release --manifest-path scripts/playtwitch/Cargo.toml
|
||||||
|
cargo build --release --manifest-path scripts/gpower/Cargo.toml
|
||||||
|
|
||||||
install-lsps-paru:
|
install-lsps-paru:
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
paru -S --needed --noconfirm {{replace(lsps, "\n", " ")}}
|
paru -S --needed --noconfirm {{replace(lsps, "\n", " ")}}
|
||||||
|
|
Loading…
Reference in a new issue