Rofi 設定檔

主題

相關文件

相關文件
Rofi / Configuration
Rofi / default_configuration.rasi
Rofi / default_theme.rasi

設定檔路徑

設定檔路徑
~/.config/rofi/config.rasi

範例

Dump Config

在「設定採用佈景主題」這篇有提到「roif」的「主要設定檔路徑」在「~/.config/rofi/config.rasi」。

我們可以透過執行下面的指令,將「Rofi 目前的設定值」給「Dump」出來。

rofi -dump-config

執行下面的指令,則是將「Rofi 預設的設定值」給「Dump」出來。

rofi -dump-config -no-config

顯示的內容,可以參考範例「dump-default-config / config.rasi」。

額外一提,執行下面的指令,則是將「目前關於佈景主題的設定值」給「Dump」出來。

rofi -dump-theme

執行下面的指令,則是將「預設關於佈景主題的設定值」給「Dump」出來。

rofi -dump-theme -no-config

顯示的內容,可以參考範例「dump-default-theme / theme.rasi」。

關於「~/.config/rofi/config.rasi」的內容架構

關於「~/.config/rofi/config.rasi」的內容架構,類似如下

configuration {

}

或是

configuration {

}
@theme "/usr/share/rofi/themes/Arc-Dark.rasi"

或是

configuration {

}
@import "extra-config.rasi"
@theme "/usr/share/rofi/themes/Arc-Dark.rasi"

下一步

接下來,我們來進一步了解「Rofi的啟動模式(Mode)」的相關概念。