diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi deleted file mode 100644 index 766851e..0000000 --- a/config/rofi/config.rasi +++ /dev/null @@ -1,15 +0,0 @@ -configuration { - modi: [ combi ]; - combi-modi: [drun, window, ssh]; - // font: "Fira Code 14"; - icon-theme: "Papirus"; - show-icons: true; -} -@theme "./material.rasi" - -* { - font: "Fira Code 12"; -} -element-icon { - size: 30; -} \ No newline at end of file diff --git a/config/rofi/material.rasi b/config/rofi/material.rasi deleted file mode 100644 index faf7cf2..0000000 --- a/config/rofi/material.rasi +++ /dev/null @@ -1,44 +0,0 @@ -* { - background-color: #303030; - border-color: #282828; - text-color: #9e9e9e; - spacing: 0; - width: 512px; -} - -inputbar { - border: 1px 1px 0 1px; - children: [prompt,entry]; -} - -prompt { - padding: 16px; - border: 0 1px 0 0; -} - -textbox { - background-color: #2e343f; - border: 0 0 1px 0; - border-color: #282C33; - padding: 8px 16px; -} - -entry { - padding: 16px; -} - -listview { - cycle: false; - margin: 0 0 -1px 0; - border: 1px; - scrollbar: false; -} - -element { - border: 0 0 1px 0; - padding: 16px; -} - -element selected { - background-color: #2d2d2d; -} diff --git a/install.conf.yaml b/install.conf.yaml index c0836fc..f06b59d 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -30,7 +30,6 @@ ~/.config/VSCodium/User/settings.json: config/vscodium.json ~/.config/chromium-flags.conf: config/chromium/flags ~/.config/electron-flags.conf: config/chromium/flags - ~/.config/rofi: config/rofi/ ~/.config/flameshot/flameshot.ini: config/flameshot.ini ~/.config/dunst/dunstrc: config/dunstrc @@ -39,6 +38,7 @@ - shell: - [git submodule update --init --recursive, Installing submodules] - [scripts/install-yay, Installing yay] + - [scripts/install-rofi, Installing Rofi] # - [scripts/ungoogled_chromium, Setting up ungoogled chromium repo] - create: diff --git a/scripts/install-rofi b/scripts/install-rofi new file mode 100755 index 0000000..3cba373 --- /dev/null +++ b/scripts/install-rofi @@ -0,0 +1,11 @@ +#!/bin/sh + +TMP_LOCATION=/tmp/rofi + +cd $HOME + +git -C /tmp/rofi pull || git clone --depth=1 https://github.com/adi1090x/rofi.git $TMP_LOCATION + +chmod +x $TMP_LOCATION/setup.sh + +$TMP_LOCATION/setup.sh \ No newline at end of file