1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-19 13:57:49 +00:00
Dotfiles/.config/polybar/themes/monolit-dracula/polybar-scripts/info-hexdate/info-hexdate.sh
2020-09-05 14:43:37 +03:00

12 lines
404 B
Bash

#!/bin/sh
day=$(timedatectl | grep "Local" | cut -d ":" -f2 | cut -d " " -f3 | cut -d "-" -f3)
month=$(timedatectl | grep "Local" | cut -d ":" -f2 | cut -d " " -f3 | cut -d "-" -f2)
year=$(timedatectl | grep "Local" | cut -d ":" -f2 | cut -d " " -f3 | cut -d "-" -f1)
day=$(echo "obase=16; $day" | bc)
month=$(echo "obase=16; $month" | bc)
year=$(echo "obase=16; $year" | bc)
echo "$day-$month-$year"