dots-of-war/scripts/scripts/wpms.sh

16 lines
192 B
Bash
Executable file

#!/bin/sh
file="$(echo ~/wpms/* | xargs realpath | rofi -dmenu)"
if [ -f "$file" ]; then
echo "$(date +%s) $(rofi -dmenu)" >> "$file"
else
notify-send "No valid file given :/"
fi