From 60bae066b418b80d8e4fd9e144d65d1e9010d6f8 Mon Sep 17 00:00:00 2001 From: bh Date: Tue, 31 Mar 2026 18:30:41 +0800 Subject: rofi: add new run mode --- rofi/.config/rofi/rofirun.rasi | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 rofi/.config/rofi/rofirun.rasi (limited to 'rofi') diff --git a/rofi/.config/rofi/rofirun.rasi b/rofi/.config/rofi/rofirun.rasi new file mode 100644 index 0000000..82cc124 --- /dev/null +++ b/rofi/.config/rofi/rofirun.rasi @@ -0,0 +1,49 @@ +/******************************************************* + * RUN LAUNCHER - thin horizontal bar + *******************************************************/ + +configuration { + font: "Noto Sans Nerd Font 10"; + show-icons: false; + display-run: ""; + disable-history: false; + kb-cancel: "Super+c"; +} + +@import "~/.config/rofi/config.rasi" + +window { + background-color: @background; + border: 1px; + border-color: #19e0e0; + padding: 8px 16px; + width: 40%; + anchor: center; + location: center; +} +mainbox { + border: 0; + padding: 0; + children: [ inputbar ]; +} +inputbar { + spacing: 0; + text-color: @normal-foreground; + padding: 2px; + children: [ prompt,textbox-prompt-colon,entry ]; +} +prompt { + spacing: 0; + text-color: @normal-foreground; +} +textbox-prompt-colon { + expand: false; + str: ">"; + margin: 0px 0.5em 0em 0em; + text-color: #FFC600; + text-transform: bold; +} +entry { + spacing: 0; + text-color: @normal-foreground; +} -- cgit v1.2.3