aboutsummaryrefslogtreecommitdiff
path: root/rofi/launchers/type-7/style-10.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-7/style-10.rasi
parentc57e8ab185623510e527400a34d729b313daffc4 (diff)
feat(polybar): switch to 24h date
Diffstat (limited to 'rofi/launchers/type-7/style-10.rasi')
-rw-r--r--rofi/launchers/type-7/style-10.rasi207
1 files changed, 0 insertions, 207 deletions
diff --git a/rofi/launchers/type-7/style-10.rasi b/rofi/launchers/type-7/style-10.rasi
deleted file mode 100644
index 124df89..0000000
--- a/rofi/launchers/type-7/style-10.rasi
+++ /dev/null
@@ -1,207 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: false;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #11092D;
- background-alt: #281657;
- foreground: #FFFFFF;
- selected: #DF5296;
- active: #6E77FF;
- urgent: #8E3596;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: west;
- anchor: west;
- fullscreen: false;
- width: 400px;
- x-offset: 20px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 0px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 10px;
- padding: 10px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview", "mode-switcher" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- padding: 100px 40px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/j.jpg", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 8px 12px;
- border: 0px 2px 2px 2px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: true;
- padding: 8px 12px;
- border: 2px 2px 0px 0px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- padding: 8px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 5;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 8px;
- border-radius: 0px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 8px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 8px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}