20 lines
410 B
Bash
Executable File
20 lines
410 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Author : Aditya Shakya (adi1090x)
|
|
## Mail : adi1090x@gmail.com
|
|
## Github : @adi1090x
|
|
## Reddit : @adi1090x
|
|
|
|
rofi_command="rofi -theme themes/time.rasi"
|
|
|
|
## Get time and date
|
|
TIME="$(date +"%A, %I:%M %p")"
|
|
DAY="$(date +"%d")"
|
|
MONTH="$(date +"%m")"
|
|
YEAR="$(date +"%Y")"
|
|
|
|
options="$DAY\n$MONTH\n$YEAR"
|
|
|
|
## Main
|
|
chosen="$(echo -e "$options" | $rofi_command -p " $TIME" -dmenu -selected-row 1)"
|