Centos
從終端創建 XFCE4 應用程序快捷方式 (CentOS)
我正在嘗試在命令行中添加一個新的應用程序快捷方式,它會在您按下 時載入終端
Ctrl + Alt + T
。我正在使用該
xfconf-query
實用程序進行監視xfce4-keyboard-shortcuts
,通過鍵盤 GUI 設置快捷方式時得到的輸出是:/commands/custom/<Primary><Alt>t
.我已經能夠從命令行設置其他設置,例如使用以下命令更改主題:
xfconf-query -c xsettings -p /Net/ThemeName -s "Adwaita"
但是,我不確定如何將類似的邏輯應用於我的應用程序快捷方式,我只是不斷收到錯誤。會有人碰巧有任何想法嗎?
我嘗試了以下命令:
xfconf-query -c xfce4-keyboard-shortcuts -p '/commands/custom/<Primary><Alt>t' -s xfce4-terminal
但我收到以下錯誤消息:
Property "/commands/custom/<Primary><Alt>t" does not exist on channel "xfce4-keyboard-shortcuts". If a new property should be created, use the --create option.
先感謝您。
如果該屬性不存在,則必須使用錯誤中指示的
--create
選項(或同義詞)創建它。-n
以下對我有用…xfconf-query -c xfce4-keyboard-shortcuts -n -t 'string' -p '/commands/custom/<Primary><Alt>t' -s xfce4-terminal
請注意,還需要添加值的類型,儘管在 Xfce 設置編輯器中找到的類型的“字元串”不起作用;它必須是“字元串”。