Skip to content

Instantly share code, notes, and snippets.

View mrcndn's full-sized avatar

Emre Candan mrcndn

View GitHub Profile
@mrcndn
mrcndn / main.dart
Created August 5, 2023 21:24
go_router test
import 'package:animations/animations.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
void main() {
runApp(const MyApp());
}
final router = GoRouter(
initialLocation: '/',
@mrcndn
mrcndn / workbench-ui-fix.sh
Created November 7, 2019 06:20 — forked from AmreeshTyagi/workbench-ui-fix.sh
Exclude MySQL Workbench from dark theme with mojave Mac dark theme
#!/bin/bash
defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes
echo "Successfully patched!"
echo "Now restart MySQL Workbench to see the Workbench in light theme."
#Restart MySQL Workbench after executing this.