wmtools/i3bar_date.nim

67 lines
1.7 KiB
Nim
Raw Normal View History

2022-02-06 21:10:06 +01:00
import std/os
import std/times
import std/osproc
import std/re
2022-02-06 21:10:06 +01:00
import i3bar_base
let args = getArguments()
proc getObject(date: string): i3barData =
let data = i3barData(
full_text: date,
color: foreground,
border: blue
)
return data
proc openCalendar(datestr: string) =
var c = """yad --calendar \
--undecorated --fixed --close-on-unfocus --no-buttons \
--width="222" --height="193" \
--posx="1650" --posy="25" \
--title="yad-calendar" --borders 0 > /dev/null
"""
discard execCmd(c)
2022-02-06 21:10:06 +01:00
proc getDate() =
let now = now()
let d = now.format("yyyy-MM-dd")
let data = getObject(d)
outputJSON(data)
if len(args) > 0 and args[0] == "1":
openCalendar(now.format("ddd dd HH:MM"))
2022-02-06 21:10:06 +01:00
proc main() =
getDate()
#while true:
# let input = parseInput()
# if input.button == 1:
2022-02-06 21:10:06 +01:00
main()
#DATE="$(date +"%a %d %H:%M")"
#if [ "$(xdotool getwindowfocus getwindowname)" = "yad-calendar" ]; then
# exit 0
#fi
#eval "$(xdotool getmouselocation --shell)"
#eval "$(xdotool getdisplaygeometry --shell)"
## X
#if [ "$((X + YAD_WIDTH / 2 + BORDER_SIZE))" -gt "$WIDTH" ]; then #Right side
# : $((pos_x = WIDTH - YAD_WIDTH - BORDER_SIZE))
#elif [ "$((X - YAD_WIDTH / 2 - BORDER_SIZE))" -lt 0 ]; then #Left side
# : $((pos_x = BORDER_SIZE))
#else #Center
# : $((pos_x = X - YAD_WIDTH / 2))
#fi
## Y
#if [ "$Y" -gt "$((HEIGHT / 2))" ]; then #Bottom
# : $((pos_y = HEIGHT - YAD_HEIGHT - BAR_HEIGHT - BORDER_SIZE))
#else #Top
# : $((pos_y = BAR_HEIGHT + BORDER_SIZE))
#fi
#yad --calendar --undecorated --fixed --close-on-unfocus --no-buttons \
# --width="$YAD_WIDTH" --height="$YAD_HEIGHT" --posx="$pos_x" --posy="$pos_y" \
# --title="yad-calendar" --borders=0 >/dev/null &