update hyprland and add screencopy permissions

This commit is contained in:
2025-04-09 17:38:13 +03:00
parent a40aef94bc
commit c14e4d7d46
13 changed files with 201 additions and 82 deletions

View File

@@ -0,0 +1,31 @@
#!/run/current-system/sw/bin/bun
import { $ } from "bun";
const splashes = [
"not ben shaped pear-o",
"\"I use Nix, btw!\" - OCbwoy3",
"I use Nix, btw!",
"Nix beats arch",
"You like kissing boys, don't you?",
"Now with gay furries :3",
"Now with femboys :3",
];
const debug: boolean = false as false | true;
if (debug === true) {
splashes.forEach(async(a)=>{
await $`notify-send "Welcome to... your PC?" "${a}"`;
})
} else {
const randomSplash = splashes[Math.floor(Math.random() * splashes.length)];
await $`notify-send "Welcome to... your PC?" "${randomSplash}"`;
}