diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-23 11:13:18 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-23 11:13:18 +0100 |
commit | 72efe134f645a5212f875c153dd8db4a64cbe968 (patch) | |
tree | d23229285071bf381515657b94919852ebf426c9 /Common/rofi/launchers/text | |
parent | e33d5f8d10d34e5a3a4bb292015961dd574f4c93 (diff) | |
download | dotfiles-72efe134f645a5212f875c153dd8db4a64cbe968.tar.gz dotfiles-72efe134f645a5212f875c153dd8db4a64cbe968.zip |
changes
Diffstat (limited to 'Common/rofi/launchers/text')
19 files changed, 0 insertions, 1438 deletions
diff --git a/Common/rofi/launchers/text/launcher.sh b/Common/rofi/launchers/text/launcher.sh deleted file mode 100755 index b5c28a6..0000000 --- a/Common/rofi/launchers/text/launcher.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# style_1 style_2 style_3 style_4 style_5 style_6 style_7 - -theme="style_2" - -dir="$HOME/.config/rofi/launchers/text" -styles=($(ls -p --hide="colors.rasi" $dir/styles)) -color="${styles[$(( $RANDOM % 10 ))]}" - -# comment this line to disable random colors -sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir)) -theme="${themes[$(( $RANDOM % 7 ))]}" - -rofi -no-lazy-grab -show drun \ --modi run,drun,window \ --theme $dir/"$theme" - diff --git a/Common/rofi/launchers/text/style_1.rasi b/Common/rofi/launchers/text/style_1.rasi deleted file mode 100644 index 2dc1a73..0000000 --- a/Common/rofi/launchers/text/style_1.rasi +++ /dev/null @@ -1,176 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 2; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 1; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 12px; - padding: 40; - width: 50%; - height: 50%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 4px 0px 0px; -} - -element { - border: 0px; - padding: 1px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @bg; - text-color: @green; -} -element selected.normal { - background-color: @bg; - text-color: @ac; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @bg; - text-color: @ac; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 20px; -} - -button { - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 20px; - border-color: @fg; -} - -button selected { - text-color: @fg; - border: 3px; - border-radius: 20px; - border-color: @ac; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_2.rasi b/Common/rofi/launchers/text/style_2.rasi deleted file mode 100644 index c762dd6..0000000 --- a/Common/rofi/launchers/text/style_2.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 15; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 6px; - padding: 30; - width: 20%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 5px; - text-color: @bg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_3.rasi b/Common/rofi/launchers/text/style_3.rasi deleted file mode 100644 index 74e3b0d..0000000 --- a/Common/rofi/launchers/text/style_3.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 6; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 6px; - padding: 15; - width: 20%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 5px; - text-color: @bg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_4.rasi b/Common/rofi/launchers/text/style_4.rasi deleted file mode 100644 index 4b81aa8..0000000 --- a/Common/rofi/launchers/text/style_4.rasi +++ /dev/null @@ -1,179 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 15; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 1; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 30; - width: 20%; - height: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 15px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @ac; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @ac; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @red; - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @green; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_5.rasi b/Common/rofi/launchers/text/style_5.rasi deleted file mode 100644 index af45c55..0000000 --- a/Common/rofi/launchers/text/style_5.rasi +++ /dev/null @@ -1,181 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 5; - columns: 3; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: true; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 300px; - width: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 5px; - scrollbar: false; - padding: 25px 5px -20px 5px; -} - -element { - border: 4px; - border-radius: 4px; - padding: 15px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @bg; - text-color: @fg; - border-color: @green; -} -element selected.normal { - background-color: @bg; - text-color: @fg; - border-color: @fg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @bg; - text-color: @fg; - border-color: @fg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @se; - margin: 5px; - padding: 15px; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @bg; - text-color: @fg; - border: 4px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_6.rasi b/Common/rofi/launchers/text/style_6.rasi deleted file mode 100644 index b05bc90..0000000 --- a/Common/rofi/launchers/text/style_6.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: true; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 30%; - width: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 5px; - scrollbar: false; - padding: 35px 5px 25px 5px; -} - -element { - border: 0px; - border-radius: 100%; - padding: 15px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 15px; - text-color: @bg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_7.rasi b/Common/rofi/launchers/text/style_7.rasi deleted file mode 100644 index 9b6d471..0000000 --- a/Common/rofi/launchers/text/style_7.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 2; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 1; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 20px; - padding: 30; - width: 40%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 100%; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @ac; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @ac; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @red; - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -button selected { - background-color: @green; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/styles/berry.rasi b/Common/rofi/launchers/text/styles/berry.rasi deleted file mode 100644 index 65ab4f1..0000000 --- a/Common/rofi/launchers/text/styles/berry.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #280F28ff; - se: #2D142Cff; - fg: #ffffffA6; - ac: #EE4540ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/black.rasi b/Common/rofi/launchers/text/styles/black.rasi deleted file mode 100644 index 77366f1..0000000 --- a/Common/rofi/launchers/text/styles/black.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #101010ff; - se: #151515ff; - fg: #f5f5f5ff; - ac: #42A5F5ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/bluish.rasi b/Common/rofi/launchers/text/styles/bluish.rasi deleted file mode 100644 index ad8b84f..0000000 --- a/Common/rofi/launchers/text/styles/bluish.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #EFF0F1FF; - se: #E3E3E3FF; - fg: #000000A6; - ac: #000B83FF; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/cocoa.rasi b/Common/rofi/launchers/text/styles/cocoa.rasi deleted file mode 100644 index 3c641a4..0000000 --- a/Common/rofi/launchers/text/styles/cocoa.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #3C3945FF; - se: #413E4Aff; - fg: #F7C7B2ff; - ac: #B38184ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/colors.rasi b/Common/rofi/launchers/text/styles/colors.rasi deleted file mode 100644 index 5b5d2b7..0000000 --- a/Common/rofi/launchers/text/styles/colors.rasi +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * - * bluish berry nordic nightly gotham mask faded cocoa - * black white - * - */ - -@import "berry.rasi" diff --git a/Common/rofi/launchers/text/styles/faded.rasi b/Common/rofi/launchers/text/styles/faded.rasi deleted file mode 100644 index c9567e0..0000000 --- a/Common/rofi/launchers/text/styles/faded.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #57678CFF; - se: #5E6C91ff; - fg: #FFFCFFff; - ac: #FF83A7ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/gotham.rasi b/Common/rofi/launchers/text/styles/gotham.rasi deleted file mode 100644 index 4d13693..0000000 --- a/Common/rofi/launchers/text/styles/gotham.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #24334Aff; - se: #29384Fff; - fg: #FEFFF1ff; - ac: #3A6081ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/mask.rasi b/Common/rofi/launchers/text/styles/mask.rasi deleted file mode 100644 index afb1cfa..0000000 --- a/Common/rofi/launchers/text/styles/mask.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #3E4667ff; - se: #434C6Dff; - fg: #FAF7CCff; - ac: #CA8CA5ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/nightly.rasi b/Common/rofi/launchers/text/styles/nightly.rasi deleted file mode 100644 index 75d3a00..0000000 --- a/Common/rofi/launchers/text/styles/nightly.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #25344Bff; - se: #2A3950ff; - fg: #FEFFF1ff; - ac: #A162F7ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/nordic.rasi b/Common/rofi/launchers/text/styles/nordic.rasi deleted file mode 100644 index 8ff9560..0000000 --- a/Common/rofi/launchers/text/styles/nordic.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #425775ff; - se: #475C7Bff; - fg: #ffffffcc; - ac: #FDBB6Dff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/white.rasi b/Common/rofi/launchers/text/styles/white.rasi deleted file mode 100644 index 48f1c8c..0000000 --- a/Common/rofi/launchers/text/styles/white.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #ffffffff; - se: #f5f5f5ff; - fg: #000000ff; - ac: #2900D0ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} |