mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00
cal: Get default week start day from Calendar
Making it configurable in system settings :^) The --start-day option can still overwrite this global default. This change makes it no longer possible to use unveil: as we have to load the Calendar config file, which might be in a dynamic location. It's also neccessary to add `cpath` to the pledge, as opening a nonexistent config file with Core::ConfigFile::open_for_app creates it.
This commit is contained in:
parent
114da3a275
commit
94e14bbe65
2 changed files with 17 additions and 5 deletions
|
@ -15,6 +15,9 @@ An overview of a whole year is displayed when a `year` is passed without a `mont
|
|||
|
||||
The current day is always highlighted.
|
||||
|
||||
Months and years are specified with numbers. Weeks start at what's configured in the Calendar system settings,
|
||||
unless the `--starting-day` option is passed.
|
||||
|
||||
Days, months and years are specified with numbers. Week starts at Sunday.
|
||||
|
||||
## Options
|
||||
|
@ -45,6 +48,7 @@ Su Mo Tu We Th Fr Sa
|
|||
24 25 26 27 28 29 30
|
||||
31
|
||||
|
||||
# Display an entire year
|
||||
$ cal 2023
|
||||
Year 2023
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue