You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
366 B
12 lines
366 B
class FluxBeta < Cask
|
|
url 'https://justgetflux.com/mac/fluxbeta.zip'
|
|
homepage 'https://justgetflux.com/'
|
|
version 'latest'
|
|
sha256 :no_check
|
|
link 'Flux.app'
|
|
|
|
after_install do
|
|
# Don't ask to move the app bundle to /Applications
|
|
system '/usr/bin/defaults', 'write', 'org.herf.Flux', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|
|
|