新的滑鼠遊標未出現在清單中 sudo update-alternatives --config x-cursor-theme

新的滑鼠遊標未出現在清單中 sudo update-alternatives --config x-cursor-theme

我嘗試安裝一個新的滑鼠遊標,並將解壓縮/tarred 檔案放入名為 的資料夾中~/.icons

我用 gnome-tweak-tool 選擇了主題,但它無法正確更改。預設遊標不會改變,但其餘的都會改變。我已經嘗試過這種透過手動添加它的方法(現在還有許多其他方法)gksu gedit /usr/share/icons/default/index.theme。我已經嘗試過使用 gnome-tweak-tool、ubuntu adjustment、gconf-editor 甚至sudo update-alternatives --config x-cursor-theme,但是當我嘗試此方法時,我的滑鼠遊標甚至沒有出現在列表中。如何將新的滑鼠遊標新增到此列表中?

答案1

我相信您必須將主題移至該/usr/share/icons目錄才能正常工作。

此外,您還必須找到要安裝的主題index.theme(或任何檔案)並使用該選項將其新增至其中。.themeupdate-alternatives--install

我們以主題為例ComixCursors-LH-白色-小號(包中的左手遊標主題comixcursors-左手安裝 comixcursors-左手)。它的index.theme文件看起來像

[Icon Theme]
Name = Comix Cursor LH White Small Bold
Comment = The left-handed Comix Cursors - White Small Bold
Example = default

但它應該有Inherits一行等於/usr/share/icons保存主題的目錄,否則它將無法運作。所以添加

Inherits = ComixCursors-LH-White-Small

現在談談update-alternatives你的新主題

sudo update-alternatives --install /usr/share/icons/default/index.theme x-cursor-theme /usr/share/icons/ComixCursors-LH-White-Small/index.theme 91

您應該將倒數第二個參數更改為index.theme主題的。如果你這樣做正確的話

sudo update-alternatives --config x-cursor-theme

應該顯示您的新主題,登出並登入後,應該會套用您的新主題。

答案2

可用於更新替代方案的替代方案需要在使用前設定。這通常是由套件腳本完成的。您可以新增主題作為替代方案,如下所示:

update-alternatives --install /usr/share/icons/default/index.theme x-icon-theme /usr/share/icons/$YOURTHEME/cursor.theme 9999

或者您可以將文件連結到 /usr/share/icons/default/index.theme 並忘記替代系統。

相關內容