Skip to content

nlscott/panes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A ruby gem to disable or enable system preference panes for macOS

Note: This has not been fully tested since macOS 10.14. Some features will not work on macOS Ventura 13 or later due to changes in System Settings

For more usage see this blog post

To install:
sudo gem install panes
To verify:
gem list

Usage:

Panes requires sudo access to read and write to the main plist file. You can run commands in two ways. From a ruby interactive shell, or running a ruby script directly from the command line.

Example 1: IRB
sudo irb
require 'panes'
Panes.Disable("com.apple.preference.network")
Eaxmple 2: Run a ruby script from terminal

Put your commands in a ruby file and run it via the terminal. For example, create a file named "test-command.rb"

test-command.rb:

#!//usr/bin/ruby

require 'panes'
Panes.Disable("com.apple.preference.network")

Run the command from terminal:

sudo ruby test-command.rb

You must require 'panes' in your ruby file. Then you can run the command below to see all your options.

Panes.Options

This will return:

  • CFBundleIdentifier
  • CreateProfile
  • Disable
  • Enable
  • List
  • OptionalCFBundleIdentifier
  • Options
  • Reset

Examples ...

List CFBundleIdentifiers:

puts Panes.CFBundleIdentifier

CFBundleIdentifier is a string usually in reverse DNS format, that specifies the specific app type of the bundle. Used in macOS to specify Applications.


Create a new "com.apple.systempreferences.plist":

Panes.CreateProfile

If the file "/Library/Preferences/com.apple.systempreferences.plist" doesn't exist, it will be created.

There's no real reason to run this independently, it's used internally when the file isn't found.


Disable a Preference Pane:

The heart of this gem is the Disable method. It takes a specific CFBundleIdentifier or multiple CFBundleIdentifiers.

examples:
#to disable one Pane
Panes.Disable("com.apple.preference.network")
#to disable multiple Panes, use comma separated list
Panes.Disable(
 "com.apple.preference.network",
 "com.apple.preferences.Bluetooth")

Enable a Preference Pane:

Panes.Enable("com.apple.preference.network")

If you decide to enable a pane after it's been disable.


List all Preference Panes:

Panes.List

you'll get a list of available preference panes:

  • Accounts.prefPane
  • Appearance.prefPane
  • AppStore.prefPane
  • Bluetooth.prefPane
  • and so forth ....

List Optional Preference Panes:

puts Panes.OptionalCFBundleIdentifier

These are usually Panes that have been installed by a user like Adobe Flash or Oracle Java

example:
  • com.adobe.flashplayerpreferences
  • com.oracle.java.JavaControlPanel

List options:

Panes.Options

Prints available methods


Reset all changes:

Panes.Reset

This enables all panes and deletes the "/Library/Preferences/com.apple.systempreferences.plist" file

About

A ruby gem for MacAdmins to help manage access to System Preference Panes. Easily enable or disable access to individual panes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published