aboutsummaryrefslogtreecommitdiff
path: root/fvwm/.fvwm/fvwmscript/FvwmScript-DateTime
blob: 1d316d90c3955671bf7675064afdfd7848323b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
WindowTitle {DateTime}
WindowSize  120 35
Font "xft:Iosevka Comfy:size=12"

Init
 Begin
  Set $Date = (GetOutput {exec date "+%Y-%m-%d"} 1 -1)
  Set $Time = (GetOutput {exec date "+%H:%M"} 1 -1)

  ChangeTitle 1 $Date
  ChangeTitle 2 $Time
End

PeriodicTasks
 Begin
  If (RemainderOfDiv (GetTime) 15)==0 Then
  Begin
   Set $Date = (GetOutput {exec date "+%Y-%m-%d"} 1 -1)
   Set $Time = (GetOutput {exec date "+%H:%M"} 1 -1)

   ChangeTitle 1 $Date
   ChangeTitle 2 $Time
  End
End

Widget 1
Property
 Position 0 0
 Size 120 20
 Font "xft:Iosevka Comfy:size=12"
 Type ItemDraw
 Flags NoReliefString
 Title {}
Main
 Case message of
  SingleClic :
  Begin
  End
End

Widget 2
Property
 Position 0 20
 Size 120 15
 Font "xft:Iosevka Comfy:size=12"
 Type ItemDraw
 Flags NoReliefString
 Title {}
Main
 Case message of
  SingleClic :
  Begin
  End
End