Skip to content

Instantly share code, notes, and snippets.

View sanzaru's full-sized avatar

Martin Albrecht sanzaru

View GitHub Profile
import SwiftUI
struct ContentView: View {
@State private var showSheet = false
var body: some View {
ZStack {
Button(
action: { showSheet = true },
label: {
@sanzaru
sanzaru / macos-disable-resize
Created May 31, 2024 15:13 — forked from olssonm/macos-disable-resize
Disable resizing of the macOS dock
defaults write com.apple.dock size-immutable -bool true; killall Dock