Merge pull request #63 from odknt/master
Add configuration variables for custom time format
This commit is contained in:
commit
67389cced0
2 changed files with 8 additions and 4 deletions
10
src/Bar.ahk
10
src/Bar.ahk
|
@ -164,7 +164,7 @@ Bar_init(m) {
|
||||||
|
|
||||||
Bar_initCmdGui()
|
Bar_initCmdGui()
|
||||||
{
|
{
|
||||||
Global Bar_#0_#0, Bar_#0_#0H, Bar_#0_#0W, Bar_#0_#1, Bar_cmdGuiIsVisible, Config_backColor_#1_#3, Config_barCommands, Config_fontName, Config_fontSize, Config_foreColor_#1_#3
|
Global Bar_#0_#0, Bar_#0_#0H, Bar_#0_#0W, Bar_#0_#1, Bar_cmdGuiIsVisible, Config_backColor_#1_#3, Config_barCommands, Config_fontName, Config_fontSize, Config_foreColor_#1_#3, Config_dateFormat, Config_timeFormat
|
||||||
|
|
||||||
Bar_cmdGuiIsVisible := False
|
Bar_cmdGuiIsVisible := False
|
||||||
wndTitle := "bug.n_BAR_0"
|
wndTitle := "bug.n_BAR_0"
|
||||||
|
@ -392,7 +392,7 @@ Bar_updateStatic(m) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Bar_updateStatus() {
|
Bar_updateStatus() {
|
||||||
Local anyText, bat1, bat2, bat3, GuiN, m, mute, vol
|
Local anyText, bat1, bat2, bat3, GuiN, m, mute, vol, date
|
||||||
|
|
||||||
anyText := Config_readinAny()
|
anyText := Config_readinAny()
|
||||||
If Config_readinBat {
|
If Config_readinBat {
|
||||||
|
@ -441,9 +441,11 @@ Bar_updateStatus() {
|
||||||
GuiControl, , Bar_#%m%_volume, % " VOL: " SubStr(" " vol, -2) "% "
|
GuiControl, , Bar_#%m%_volume, % " VOL: " SubStr(" " vol, -2) "% "
|
||||||
}
|
}
|
||||||
If Config_readinDate
|
If Config_readinDate
|
||||||
GuiControl, , Bar_#%m%_date, % " " A_DDD ", " A_DD ". " A_MMM ". " A_YYYY " "
|
FormatTime, date, , % Config_dateFormat
|
||||||
|
GuiControl, , Bar_#%m%_date, % date
|
||||||
If Config_readinTime
|
If Config_readinTime
|
||||||
GuiControl, , Bar_#%m%_time, % " " A_Hour ":" A_Min " "
|
FormatTime, time, , % Config_timeFormat
|
||||||
|
GuiControl, , Bar_#%m%_time, % time
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,8 @@ Config_init() {
|
||||||
Config_readinTime := True
|
Config_readinTime := True
|
||||||
Config_readinVolume := False
|
Config_readinVolume := False
|
||||||
Config_readinInterval := 30000
|
Config_readinInterval := 30000
|
||||||
|
Config_dateFormat := "ddd, dd, MM, yyyy"
|
||||||
|
Config_timeFormat := "HH:mm"
|
||||||
|
|
||||||
;; Windows ui elements
|
;; Windows ui elements
|
||||||
Config_bbCompatibility := False
|
Config_bbCompatibility := False
|
||||||
|
|
Loading…
Reference in a new issue