dotfiles/.local/bin/dwmcol
2024-04-23 07:46:41 +05:00

12 lines
209 B
Bash
Executable File

#!/bin/bash
file_path="$HOME/.cache/dwm_bar_color"
if [ -e "$file_path" ]; then
rm "$file_path"
echo "File '$file_path' deleted."
else
touch "$file_path"
echo "File '$file_path' created."
fi