diff --git a/hypr/scripts/find-generation.sh b/hypr/scripts/find-generation.sh deleted file mode 100755 index dac3045..0000000 --- a/hypr/scripts/find-generation.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env -S bash - -for line in $(home-manager generations | grep -o '/.*') - do - res=$(find $line | grep specialisation | head -1) - output=$? - - if [[ $output -eq 0 ]] && [[ $res != "" ]]; then - echo $res - exit - fi -done