If I use ~/.amethyst
and change something in the preference pane it would be great if Amethyst could update my .amethyst
file
I'm increasingly convinced that this is a good idea.
Im really interested in this feature. Im going to be getting a new work laptop soon and it will require manually copying my amethyst config from the preferences pane to a dotfile. What needs to be discussed on this? Id be happy to dive into swift and this codebase to help contribute on this.
What's the status here?
What's the status here?
Looking for status as well - If you need help on this let me know. 馃拑
Also very interested in a status. I setup macOS as I setup my Linux: I sync my dotfiles on Github and use a bootstrap script to setup everything automatically.
Since Amethyst does not currently have a configuration file, I actually sync the file "com.amethyst.Amethyst.plist" from my ~/Library/Preferences folder. It works more or less to be honest... A true configuration file would be the best!
What's the status? Thank you
For those interested, here is how I sync my settings for the moment. I have a script that actually configures the plist file with my preferences like the following (this is a mere example, adjust it however you want):
# Set windows to always stay in floating mode
defaults write com.amethyst.Amethyst.plist floating '(
{
id = "com.apple.systempreferences";
"window-titles" = (
);
},
{
id = "com.tapbots.Tweetbot3Mac";
"window-titles" = (
);
}
)'
defaults write com.amethyst.Amethyst.plist floating-is-blacklist 1
# Follow window when moved to different workspace
defaults write com.amethyst.Amethyst.plist follow-space-thrown-windows 1
# Configure layouts
defaults write com.amethyst.Amethyst.plist layouts '(
tall, wide, floating, fullscreen
)'
# Restore layouts when application starts
defaults write com.amethyst.Amethyst.plist restore-layouts-on-launch 1
# Set window margins
defaults write com.amethyst.Amethyst.plist window-margins 1
defaults write com.amethyst.Amethyst.plist window-margin-size 6
# Do not display layout names
defaults write com.amethyst.Amethyst.plist enables-layout-hud 0
defaults write com.amethyst.Amethyst.plist enables-layout-hud-on-space-change 0
# Disable automatic update check as it is done by Homebrew
defaults write com.amethyst.Amethyst.plist SUEnableAutomaticChecks 0
# Delete the plist cache - MUST ALWAYS BE LAST
defaults read com.amethyst.Amethyst.plist > /dev/null 2>&1
I'd love to see this feature. Amethyst's default keyboard shortcuts mess up Polish keyboard input. Several characters are entered with Option
+ Shift
+ letter. Every time I install Amethyst on a new Mac I forget about it and wonder why I can't type in certain capital letters. It would be great if I could just check in Amethyst's config file in my dotfiles with keyboard shortcuts that don't conflict with the Polish keyboard layout.
Most helpful comment
I'm increasingly convinced that this is a good idea.