use .birthdays as default file

This commit is contained in:
finga 2019-11-16 14:38:55 +01:00
parent 3f55626ce3
commit 9143df0017
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ birthdays
shellscript for printing upcoming birthdays shellscript for printing upcoming birthdays
in ~/birthdays: in ~/.birthdays:
it is important to put a tabulator between date (month/day) and the message, on the end you should write a newline! it is important to put a tabulator between date (month/day) and the message, on the end you should write a newline!

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
conf_file="$HOME/birthdays" conf_file="$HOME/.birthdays"
days_left=30 days_left=30
readarray lines < "$conf_file" readarray lines < "$conf_file"