aboutsummaryrefslogtreecommitdiff
path: root/rofi/powermenu/type-6/style-2.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/powermenu/type-6/style-2.rasi
parentc57e8ab185623510e527400a34d729b313daffc4 (diff)
feat(polybar): switch to 24h date
Diffstat (limited to 'rofi/powermenu/type-6/style-2.rasi')
-rw-r--r--rofi/powermenu/type-6/style-2.rasi147
1 files changed, 0 insertions, 147 deletions
diff --git a/rofi/powermenu/type-6/style-2.rasi b/rofi/powermenu/type-6/style-2.rasi
deleted file mode 100644
index f437590..0000000
--- a/rofi/powermenu/type-6/style-2.rasi
+++ /dev/null
@@ -1,147 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- show-icons: false;
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #2D1B14;
- background-alt: #462D23;
- foreground: #FFFFFF;
- selected: #E25F3E;
- active: #716251;
- urgent: #934A1C;
-}
-
-/*
-USE_BUTTONS=YES
-*/
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 1000px;
- x-offset: 0px;
- y-offset: 0px;
-
- padding: 0px;
- border: 0px solid;
- border-radius: 24px;
- border-color: @selected;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- background-color: transparent;
- orientation: horizontal;
- children: [ "imagebox", "listview" ];
-}
-
-/*****----- Imagebox -----*****/
-imagebox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/d.png", height);
- children: [ "inputbar", "dummy", "message" ];
-}
-
-/*****----- User -----*****/
-userimage {
- margin: 0px 0px;
- border: 10px;
- border-radius: 10px;
- border-color: @background-alt;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/d.png", height);
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- padding: 15px;
- border-radius: 100%;
- background-color: @urgent;
- text-color: @foreground;
- children: [ "dummy", "prompt", "dummy"];
-}
-
-dummy {
- background-color: transparent;
-}
-
-prompt {
- background-color: inherit;
- text-color: inherit;
-}
-
-/*****----- Message -----*****/
-message {
- enabled: true;
- margin: 0px;
- padding: 15px;
- border-radius: 100%;
- background-color: @active;
- text-color: @foreground;
-}
-textbox {
- background-color: inherit;
- text-color: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 3;
- lines: 2;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 20px;
- margin: 20px;
- background-color: transparent;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- padding: 40px 10px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- cursor: pointer;
-}
-element-text {
- font: "feather bold 32";
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-element selected.normal {
- background-color: var(selected);
- text-color: var(background);
-}