Project

panes

0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
A ruby gem for MacAdmins to help manage access to System Preference Panes. Easily enable or disable access to individual panes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.2.33
= 5.18.1
>= 11.2.2
 Project Readme

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