Files
linux-scripts/paru-helper
2023-07-18 21:56:23 -05:00

12 lines
151 B
Bash
Executable File

#!/bin/bash
paru
read -p "Do you want to recompile xmonad? (y/n) " yn
case $yn in
y ) xmonad --recompile;;
n ) exit;;
* ) exit 1;;
esac