add right click clear
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 10s
Python / lint-format (pull_request) Successful in 18s
Python / test (pull_request) Successful in 28s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m14s

This commit is contained in:
2026-06-18 20:36:28 +02:00
parent c102d0e38f
commit e37332fe6b
4 changed files with 7 additions and 31 deletions
-28
View File
@@ -1,28 +0,0 @@
#!/usr/bin/env bash
OS="arch"
if [[ $(ls ./tmp) ]]; then
exec mkdir ./tmp
fi
cd ./tmp
main() {
local OPTARG OPTIND opt
while getopts "arch:nix:" opt; do
case "$opt" in
arch) OS=$OPTARG ;;
nix) OS=$OPTARG ;;
*) fatal 'bad option' ;;
esac
done
if [[ $OS = "arch" ]]; then
exec yay -Sy
elif [[ $OS = "nix" ]]; then
exec nixos-rebuild build --flake $HOME/Gits/NixOS/#nixos
PKGS=$(exec nix store diff-closures /run/current-system ./result)
fi
}
main "$@"