aboutsummaryrefslogtreecommitdiff
path: root/rofi/launchers/type-5/style-5.rasi
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-07-25 23:50:32 +0200
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-07-25 23:50:32 +0200
commit1b72a07b4459ebdac1399e919bccc8ae215b916d (patch)
tree1c9b3b52fa6138a1b4efbb90f8d1307eb595ec85 /rofi/launchers/type-5/style-5.rasi
parentc57e8ab185623510e527400a34d729b313daffc4 (diff)
feat(polybar): switch to 24h date
Diffstat (limited to 'rofi/launchers/type-5/style-5.rasi')
-rw-r--r--rofi/launchers/type-5/style-5.rasi163
1 files changed, 0 insertions, 163 deletions
diff --git a/rofi/launchers/type-5/style-5.rasi b/rofi/launchers/type-5/style-5.rasi
deleted file mode 100644
index 60e4e22..0000000
--- a/rofi/launchers/type-5/style-5.rasi
+++ /dev/null
@@ -1,163 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";
- window-format: "{w} {c} {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "Iosevka Nerd Font 10";
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 800px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- margin: 0px;
- padding: 0px;
- border-radius: 20px;
- cursor: "default";
- background-color: #162022;
- background-image: url("~/.config/rofi/images/flowers-1.png", width);
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 20px;
- padding: 40px;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px 200px 0px 0px;
- padding: 25px;
- border: 2px;
- border-radius: 20px;
- border-color: white;
- background-image: url("~/.config/rofi/images/flowers-3.png", none);
- children: [ "textbox-prompt-colon", "entry" ];
-}
-
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- padding: 8px 11px;
- border-radius: 8px;
- background-color: white;
- text-color: black;
- str: "";
-}
-entry {
- enabled: true;
- padding: 8px 12px;
- border: 0px;
- background-color: transparent;
- text-color: white;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 8;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- margin: 0px 200px 0px 0px;
- padding: 10px;
- border: 2px;
- border-radius: 20px;
- border-color: white;
- background-image: url("~/.config/rofi/images/flowers-2.png", width);
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 5px 10px;
- border: 0px;
- border-radius: 18px;
- border-color: white;
- background-color: transparent;
- text-color: #162022;
- cursor: pointer;
-}
-element selected.normal {
- background-color: #162022;
- text-color: white;
-}
-element-icon {
- background-color: transparent;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: inherit;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 20px;
- background-color: transparent;
- text-color: white;
-}
-message {
- padding: 0px;
- background-color: inherit;
- text-color: #FF9030;
-}
-textbox {
- padding: 0px;
- border-radius: 0px;
- background-color: inherit;
- text-color: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}