Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add buttons to GUI to open relevant sections of the System Settings preferences panel [ENHANCEMENT] #53

Closed
KieranConlon opened this issue Mar 15, 2023 · 4 comments
Labels

Comments

@KieranConlon
Copy link

KieranConlon commented Mar 15, 2023

Add button to open System Settings - Accessibility API

The installation intructions for granting permissions requires that the app needs Accessibility permissions to work properly.
Suggestion to simplify access to the correct setting in System Settings by adding a button/control on the GUI to run a bash command to open System Settings on the correct panel.

On macOS Ventura (and I think Monterrey too) the command is:

open "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"

Add button to open System Settings - Xcode Source Editor Extension

The installation intructions for enabling the extension requires that the Copilot is added as an Xcode extension.
Suggestion to simplify access to the correct setting in System Settings by adding a button/control on the GUI to run a bash command to open System Settings on the correct panel.

On macOS Ventura the command is:

open "x-apple.systempreferences:com.apple.ExtensionsPreferences"  

NOTE: I don't have a macOS Monterrey install, these steps should be checked & verified.
On macOS Monterrey, access to the Extensions preference panel is not supported by URLScheme, may need to use AppleScript instead:

tell application "System Preferences"
	activate
	set the current pane to pane id "com.apple.preferences.extensions"
end tell

or using bash

osascript -e 'tell Application "System Preferences"' -e 'activate' -e 'set the current pane to pane id "com.apple.preferences.extensions"' -e 'end tell'

List of methods for opening System Settings obtained from bvanpeski - SystemPreferences

@intitni intitni added low priority enhancement New feature or request labels Mar 16, 2023
@dustturtle
Copy link

why I can not see copilot for xcode in extensions? mac os 12.6

@dustturtle
Copy link

@intitni

@intitni
Copy link
Owner

intitni commented Mar 30, 2023

@dustturtle Please do not reply to a random issue with your own question. Please check #42 to see if it can solve your problem.

@intitni intitni added pending release Finished, but not yet released released and removed pending release Finished, but not yet released labels May 18, 2023
@intitni
Copy link
Owner

intitni commented May 18, 2023

Released in 0.16.0

@intitni intitni closed this as completed May 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants