aboutsummaryrefslogtreecommitdiff
path: root/.config/rofi
diff options
context:
space:
mode:
authorAnInternetTroll <lucafulger@gmail.com>2022-05-17 19:24:34 +0000
committerAnInternetTroll <lucafulger@gmail.com>2022-05-17 19:24:34 +0000
commitd0e7c5b5a7dcb3747811ae64edb443ef435218ff (patch)
tree8b3195148949c641486eb6549517a70bfdde8c98 /.config/rofi
parente45a18c42e406935b138f6e20b9f6d83cdfb0063 (diff)
downloaddotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar.gz
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar.bz2
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar.lz
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar.xz
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.tar.zst
dotfiles-d0e7c5b5a7dcb3747811ae64edb443ef435218ff.zip
Add sway config
Diffstat (limited to '.config/rofi')
-rw-r--r--.config/rofi/config.rasi12
-rw-r--r--.config/rofi/rofi/config.rasi93
2 files changed, 6 insertions, 99 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
index 7f633a0..513a94b 100644
--- a/.config/rofi/config.rasi
+++ b/.config/rofi/config.rasi
@@ -22,12 +22,12 @@ element-text, element-icon {
* {
dark-black: #1e2122;
- bg-col: #222526;
- border-col: #282b2c;
- selected-col: #282b2c;
- blue: #8dae88;
- fg-col: #d4be98;
- fg-col2: #df736d;
+ bg-col: #282a36;
+ border-col: #6272a4;
+ selected-col: #44475a;
+ blue: #bd93f9;
+ fg-col: #f8f8f2;
+ fg-col2: #ff5555;
width: 600;
}
diff --git a/.config/rofi/rofi/config.rasi b/.config/rofi/rofi/config.rasi
deleted file mode 100644
index 513a94b..0000000
--- a/.config/rofi/rofi/config.rasi
+++ /dev/null
@@ -1,93 +0,0 @@
-configuration{
- modi: "drun";
- lines: 5;
- font: "Iosevka 12";
- show-icons: true;
- icon-theme: "Oranchelo";
- terminal: "alacritty";
- drun-display-format: "{icon} {name}";
- display-drun: "  ";
- location: 0;
- separator-style: "solid";
- disable-history: false;
- hide-scrollbar: true;
-}
-
-@theme "/dev/null"
-
-element-text, element-icon {
- background-color: inherit;
- text-color: inherit;
-}
-
-* {
- dark-black: #1e2122;
- bg-col: #282a36;
- border-col: #6272a4;
- selected-col: #44475a;
- blue: #bd93f9;
- fg-col: #f8f8f2;
- fg-col2: #ff5555;
- width: 600;
-}
-
-window {
- padding: 20px;
- height: 360px;
- border: 3px;
- border-color: @border-col;
- background-color: @bg-col;
-}
-
-mainbox {
- padding: 5px;
- border-radius: 13px;
- background-color: @bg-col;
-}
-
-inputbar {
- children: [prompt,entry];
- background-color: @bg-col;
- border-radius: 5px;
- padding: 2px;
-}
-
-prompt {
- background-color: @blue;
- padding: 5px 5px 0px;
- text-color: @bg-col;
- border-radius: 3px;
-}
-
-textbox-prompt-colon {
- expand: false;
- str: ":";
-}
-
-entry {
- padding: 6px;
- text-color: @fg-col;
- background-color: @bg-col;
-}
-
-listview {
- border: 0px 0px 0px;
- padding: 6px 0px 0px;
- columns: 2;
- background-color: @bg-col;
-}
-
-element {
- padding: 5px;
- background-color: @bg-col;
- text-color: @fg-col ;
-}
-
-element-icon {
- size: 25px;
-}
-
-element selected {
- background-color: @selected-col ;
- text-color: @fg-col2 ;
-}