diff --git a/apps/hyprlock/scripts/random-text.nix b/apps/hyprlock/scripts/random-text.nix index 2d28458..714a0fa 100644 --- a/apps/hyprlock/scripts/random-text.nix +++ b/apps/hyprlock/scripts/random-text.nix @@ -101,8 +101,157 @@ "བཀྲ་ཤིས་བདེ་ལེགས།" ) - idx=$((RANDOM % ''${#greetings[@]})) - greeting="''${greetings[$idx]}" + inspirations=( + "Dream Big" + "Stay True" + "Be Kind" + "Work Hard" + "Keep Going" + "Be Brave" + "Love Life" + "Stay Calm" + "Think Positive" + "Be Happy" + "No Fear" + "Have Faith" + "Trust Yourself" + "Focus Now" + "Take Action" + "Never Settle" + "Rise Up" + "Shine On" + "Stand Tall" + "Live Free" + "Just Begin" + "Create Joy" + "Stay Strong" + "Breathe Deep" + "Be Bold" + "Look Ahead" + "Move Forward" + "Aim High" + "Stay Humble" + "Find Peace" + "Do Good" + "Seek Truth" + "Love More" + "Be Yourself" + "Let Go" + "Keep Smiling" + "Stay Wild" + "Think Big" + "Be Awesome" + "Start Now" + "Enjoy Today" + "Choose Joy" + "Dream On" + "Fly High" + "Stay Focused" + "Be Fearless" + "Don't Stop" + "Make Waves" + "Be Original" + "Stay Curious" + "Be grateful" + "Keep pushing" + "Stay sharp" + "Why not?" + "Be still" + "Keep cool" + "Think twice" + "Be ready" + "Stay gold" + "Game on" + "Level up" + "Code on" + "Git commit" + "Hack on" + ) + + cyberpunk=( + "System: ONLINE" + "Encryption: ACTIVE" + "Access: GRANTED" + "Uptime: OPTIMAL" + "Link: ESTABLISHED" + "Protocol: SECURE" + "Daemon: WATCHING" + "Netrunner: READY" + "Signal: STRONG" + "Proxy: ENGAGED" + "Root: ACCESS" + "Kernel: PANIC" + ) + + strategies=( + "Use filters" + "Simply a mess" + "Go outside" + "Be extravagant" + "Honour thy error" + "Ask your body" + "Breathe more" + "Destroy nothing" + "Don't stress" + "Turn it upside down" + "State the problem" + "Retrace your steps" + "Work at a different speed" + ) + + yojijukugo=( + "一期一会" + "花鳥風月" + "温故知新" + "七転八起" + "自業自得" + "以心伝心" + "羊頭狗肉" + "諸行無常" + ) + + habits=( + "Check posture" + "Drink water" + "Shoulders down" + "Eyes off screen" + "Deep breath" + "Stretch now" + "Unclench jaw" + "Touch grass" + "Blink now" + "Stand up" + ) + + dev=( + "It works locally" + "Sudo please" + "Flake locked" + "Compiling..." + "Git push force" + "rm -rf /" + ":q! to exit" + "Works on my machine" + "Coffee needed" + "Fixing bugs" + "Hello World" + "Null Pointer" + "Segfault" + ) + + # Combine all arrays + combined=( + "''${greetings[@]}" + "''${inspirations[@]}" + "''${cyberpunk[@]}" + "''${strategies[@]}" + "''${yojijukugo[@]}" + "''${habits[@]}" + "''${dev[@]}" + ) + + idx=$((RANDOM % ''${#combined[@]})) + greeting="''${combined[$idx]}" echo "$current_pid" > "$pid_file" echo "$greeting" > "$cache_file"