mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
|
#!/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
|