Skip to content

Commit

Permalink
~ Update icon to template icon and add version to menu
Browse files Browse the repository at this point in the history
  • Loading branch information
modernben committed Aug 3, 2023
1 parent 1631357 commit 9a8780a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Providers/NativeAppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function boot(): void
$ipInfo = IP::getIPInfo();

MenuBar::create()
->icon(public_path('menuBarIcon.png'))
->icon(public_path('menuBarIconTemplate.png'))
->withContextMenu(
Menu::new()
->event(ClickedCopyV4Link::class, 'IPv4: ' . $externalIpv4 ?: 'N/A')
Expand All @@ -29,6 +29,7 @@ public function boot(): void
->separator()
->link('https://whatismyipaddress.com', 'What Is My IP?')
->separator()
->link('https://github.com/modernben/iptracker/releases/', 'Version: ' . config('nativephp.version'))
->quit()
)
->label('Booting...')
Expand Down

0 comments on commit 9a8780a

Please sign in to comment.