Skip to content

Instantly share code, notes, and snippets.

@RobertBoes
RobertBoes / disable.reg
Created February 22, 2020 20:17
Make windows use UTC instead of GMT (unix dual boot time sync)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=-
@RobertBoes
RobertBoes / starship.toml
Last active April 14, 2023 11:22
Starship custom command - Laravel version
[custom.laravel]
when = "test -f artisan"
command = '''
cat composer.lock| pcregrep -M '"name": "laravel/framework",\n.*"version":' | grep -Eo 'v([0-9]*\.[0-9]*\.[0-9]*)'
'''
format = "via [$symbol($output )]($style)"
symbol = " "
style = "fg:#FF2D20 bold"