aboutsummaryrefslogtreecommitdiff
path: root/rofi/launchers/type-2
diff options
context:
space:
mode:
Diffstat (limited to 'rofi/launchers/type-2')
-rwxr-xr-xrofi/launchers/type-2/launcher.sh20
-rw-r--r--rofi/launchers/type-2/shared/colors.rasi18
-rw-r--r--rofi/launchers/type-2/shared/fonts.rasi12
-rw-r--r--rofi/launchers/type-2/style-1.rasi171
-rw-r--r--rofi/launchers/type-2/style-10.rasi194
-rw-r--r--rofi/launchers/type-2/style-11.rasi183
-rw-r--r--rofi/launchers/type-2/style-12.rasi179
-rw-r--r--rofi/launchers/type-2/style-13.rasi179
-rw-r--r--rofi/launchers/type-2/style-14.rasi188
-rw-r--r--rofi/launchers/type-2/style-15.rasi151
-rw-r--r--rofi/launchers/type-2/style-2.rasi171
-rw-r--r--rofi/launchers/type-2/style-3.rasi171
-rw-r--r--rofi/launchers/type-2/style-4.rasi180
-rw-r--r--rofi/launchers/type-2/style-5.rasi182
-rw-r--r--rofi/launchers/type-2/style-6.rasi172
-rw-r--r--rofi/launchers/type-2/style-7.rasi172
-rw-r--r--rofi/launchers/type-2/style-8.rasi184
-rw-r--r--rofi/launchers/type-2/style-9.rasi179
18 files changed, 0 insertions, 2706 deletions
diff --git a/rofi/launchers/type-2/launcher.sh b/rofi/launchers/type-2/launcher.sh
deleted file mode 100755
index 3422cd7..0000000
--- a/rofi/launchers/type-2/launcher.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-
-## Author : Aditya Shakya (adi1090x)
-## Github : @adi1090x
-#
-## Rofi : Launcher (Modi Drun, Run, File Browser, Window)
-#
-## Available Styles
-#
-## style-1 style-2 style-3 style-4 style-5
-## style-6 style-7 style-8 style-9 style-10
-## style-11 style-12 style-13 style-14 style-15
-
-dir="$HOME/.config/rofi/launchers/type-2"
-theme='style-1'
-
-## Run
-rofi \
- -show drun \
- -theme ${dir}/${theme}.rasi
diff --git a/rofi/launchers/type-2/shared/colors.rasi b/rofi/launchers/type-2/shared/colors.rasi
deleted file mode 100644
index 103ad63..0000000
--- a/rofi/launchers/type-2/shared/colors.rasi
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Colors
- *
- * Available Colors Schemes
- *
- * adapta catppuccin everforest navy paper
- * arc cyberpunk gruvbox nord solarized
- * black dracula lovelace onedark yousai
- *
- **/
-
-/* Import color-scheme from `colors` directory */
-
-@import "~/.config/rofi/colors/onedark.rasi"
diff --git a/rofi/launchers/type-2/shared/fonts.rasi b/rofi/launchers/type-2/shared/fonts.rasi
deleted file mode 100644
index 50499c9..0000000
--- a/rofi/launchers/type-2/shared/fonts.rasi
+++ /dev/null
@@ -1,12 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Fonts
- *
- **/
-
-* {
- font: "Iosevka Nerd Font 10";
-}
diff --git a/rofi/launchers/type-2/style-1.rasi b/rofi/launchers/type-2/style-1.rasi
deleted file mode 100644
index fe2c342..0000000
--- a/rofi/launchers/type-2/style-1.rasi
+++ /dev/null
@@ -1,171 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 400px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 15px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @selected;
- text-color: @background;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 6;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 5px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 8px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-10.rasi b/rofi/launchers/type-2/style-10.rasi
deleted file mode 100644
index 09e3a41..0000000
--- a/rofi/launchers/type-2/style-10.rasi
+++ /dev/null
@@ -1,194 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-* {
- /* For Screens with 1920x1080 resolution */
- screen-margin: 180px 150px;
- box-spacing: 40px;
- icon-size: 96px;
- element-padding: 30px;
- element-spacing: 15px;
-
- /* For Screens with 1366x768 resolution */
- /*
- screen-margin: 120px 60px;
- box-spacing: 40px;
- icon-size: 64px;
- element-padding: 20px;
- element-spacing: 10px;
- */
- /* Use this as reference and create for your screen resolution */
-}
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: true;
- width: 1366px;
- height: 768px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: @box-spacing;
- margin: @screen-margin;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px 50% 0px 0px;
- padding: 15px;
- border: 0px solid;
- border-radius: 100%;
- border-color: @selected;
- background-color: @selected;
- text-color: @background;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 8;
- lines: 3;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: @element-spacing;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: @element-spacing;
- margin: 0px;
- padding: @element-padding;
- border: 0px solid;
- border-radius: 30px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- orientation: vertical;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- border: 0px 0px 4px 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: @icon-size;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 150px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-11.rasi b/rofi/launchers/type-2/style-11.rasi
deleted file mode 100644
index 58fa61e..0000000
--- a/rofi/launchers/type-2/style-11.rasi
+++ /dev/null
@@ -1,183 +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: "Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: true;
- width: 1366px;
- height: 768px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 150px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px 0px 2px 0px;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 12px;
- border-radius: 100%;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- padding: 12px;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 3;
- lines: 10;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 20px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 8px;
- border: 0px solid;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element alternate.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element selected.normal {
- border: 0px 0px 2px 2px;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @selected;
-}
-element-icon {
- padding: 0px 0px 0px 0px;
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 100px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-12.rasi b/rofi/launchers/type-2/style-12.rasi
deleted file mode 100644
index 858a905..0000000
--- a/rofi/launchers/type-2/style-12.rasi
+++ /dev/null
@@ -1,179 +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: " Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: true;
- width: 1366px;
- height: 768px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 200px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 15px;
- border-radius: 100%;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 350px;
- padding: 15px 20px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 4;
- lines: 10;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 8px;
- border: 0px solid;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- padding: 0px 0px 0px 0px;
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 100px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-13.rasi b/rofi/launchers/type-2/style-13.rasi
deleted file mode 100644
index b21ca00..0000000
--- a/rofi/launchers/type-2/style-13.rasi
+++ /dev/null
@@ -1,179 +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: " Apps";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 100%;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 50px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 15px;
- border-radius: 15px;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 350px;
- padding: 15px 20px;
- border-radius: 15px;
- background-color: @background-alt;
- text-color: @foreground;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 10;
- lines: 1;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 30px 10px;
- border: 0px solid;
- border-radius: 20px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- orientation: vertical;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- padding: 0px 0px 0px 0px;
- background-color: transparent;
- text-color: inherit;
- size: 96px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 50px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-14.rasi b/rofi/launchers/type-2/style-14.rasi
deleted file mode 100644
index 049979b..0000000
--- a/rofi/launchers/type-2/style-14.rasi
+++ /dev/null
@@ -1,188 +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: " Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 1200px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 10px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 20px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
- orientation: horizontal;
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
- orientation: vertical;
-}
-
-prompt {
- enabled: true;
- expand: false;
- padding: 15px 50px;
- border-radius: 10px;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- padding: 15px 20px;
- border-radius: 10px;
- background-color: @background-alt;
- text-color: @foreground;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 4;
- lines: 1;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 8px;
- border: 0px solid;
- border-radius: 10px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- orientation: horizontal;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element alternate.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element selected.normal {
- border: 0px 2px 0px 2px;
- border-radius: 10px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @selected;
-}
-element-icon {
- padding: 0px;
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 20px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-15.rasi b/rofi/launchers/type-2/style-15.rasi
deleted file mode 100644
index 4b14fc1..0000000
--- a/rofi/launchers/type-2/style-15.rasi
+++ /dev/null
@@ -1,151 +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: " Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 450px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "listview", "entry" ];
-}
-
-/*****----- Inputbar -----*****/
-entry {
- enabled: true;
- expand: false;
- padding: 20px 0px;
- background-color: @selected;
- text-color: @background;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 3;
- lines: 3;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 0px;
- margin: 0px;
- padding: 20px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 15px;
- margin: 0px;
- padding: 20px 10px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- orientation: vertical;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 64px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-2.rasi b/rofi/launchers/type-2/style-2.rasi
deleted file mode 100644
index 49502a0..0000000
--- a/rofi/launchers/type-2/style-2.rasi
+++ /dev/null
@@ -1,171 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 700px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 20px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 15px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 8;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 5px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 5px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @background;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-3.rasi b/rofi/launchers/type-2/style-3.rasi
deleted file mode 100644
index 5e3a6f9..0000000
--- a/rofi/launchers/type-2/style-3.rasi
+++ /dev/null
@@ -1,171 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 800px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 15px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @foreground;
- text-color: @background;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 10;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 5px;
- margin: 0px;
- padding: 10px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 6px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @background;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-4.rasi b/rofi/launchers/type-2/style-4.rasi
deleted file mode 100644
index f5ab848..0000000
--- a/rofi/launchers/type-2/style-4.rasi
+++ /dev/null
@@ -1,180 +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: "Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 800px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 30px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 12px;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- padding: 12px;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 10;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 5px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element alternate.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element selected.normal {
- border: 0px 0px 0px 4px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @selected;
-}
-element-icon {
- padding: 0px 0px 0px 10px;
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-5.rasi b/rofi/launchers/type-2/style-5.rasi
deleted file mode 100644
index 50ce121..0000000
--- a/rofi/launchers/type-2/style-5.rasi
+++ /dev/null
@@ -1,182 +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: "Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 700px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 16px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 30px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 16px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 12px;
- border-radius: 16px;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- padding: 12px;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 7;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 5px;
- border: 0px solid;
- border-radius: 16px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element alternate.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element selected.normal {
- border: 0px 5px 0px 5px;
- border-radius: 16px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @selected;
-}
-element-icon {
- padding: 0px 0px 0px 10px;
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 16px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-6.rasi b/rofi/launchers/type-2/style-6.rasi
deleted file mode 100644
index 2f0ab2b..0000000
--- a/rofi/launchers/type-2/style-6.rasi
+++ /dev/null
@@ -1,172 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: west;
- anchor: west;
- fullscreen: false;
- width: 450px;
- height: 100%;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 12px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @selected;
- text-color: @background;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 6;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 5px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 6px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-7.rasi b/rofi/launchers/type-2/style-7.rasi
deleted file mode 100644
index 49e14be..0000000
--- a/rofi/launchers/type-2/style-7.rasi
+++ /dev/null
@@ -1,172 +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: "";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 750px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 15px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: @selected;
- text-color: @background;
- children: [ "prompt", "entry" ];
-}
-
-prompt {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 5;
- lines: 3;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 5px;
- margin: 0px;
- padding: 10px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 15px;
- margin: 0px;
- padding: 20px 10px;
- border: 0px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- orientation: vertical;
- cursor: pointer;
-}
-element normal.normal {
- background-color: @background;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @background-alt;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 64px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 15px;
- border: 2px solid;
- border-radius: 12px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-8.rasi b/rofi/launchers/type-2/style-8.rasi
deleted file mode 100644
index ee20df1..0000000
--- a/rofi/launchers/type-2/style-8.rasi
+++ /dev/null
@@ -1,184 +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: " Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 1000px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 20px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 20px;
- margin: 40px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "textbox-prompt-colon", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 15px;
- border-radius: 100%;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- padding: 15px;
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- padding: 15px 0px;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 6;
- lines: 3;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 20px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 20px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- orientation: vertical;
- cursor: pointer;
-}
-element normal.normal {
- background-color: transparent;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: transparent;
- text-color: @foreground;
-}
-element-icon {
- padding: 30px;
- border-radius: 20px;
- background-color: @background-alt;
- text-color: inherit;
- size: 64px;
- cursor: inherit;
-}
-element-text {
- padding: 10px;
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-element-text selected {
- border-radius: 100%;
- background-color: @selected;
- text-color: @background;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 20px;
- border: 2px solid;
- border-radius: 20px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}
diff --git a/rofi/launchers/type-2/style-9.rasi b/rofi/launchers/type-2/style-9.rasi
deleted file mode 100644
index 75dc924..0000000
--- a/rofi/launchers/type-2/style-9.rasi
+++ /dev/null
@@ -1,179 +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: " Applications";
- drun-display-format: "{name}";
-}
-
-/*****----- Global Properties -----*****/
-@import "shared/colors.rasi"
-@import "shared/fonts.rasi"
-
-/*****----- Main Window -----*****/
-window {
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 800px;
- x-offset: 0px;
- y-offset: 0px;
-
- enabled: true;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 20px;
- border-color: @selected;
- background-color: @background;
- cursor: "default";
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 15px;
- margin: 40px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px 0px 0px 0px;
- border-color: @selected;
- background-color: transparent;
- children: [ "inputbar", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 100%;
- border-color: @selected;
- background-color: @background-alt;
- text-color: @foreground;
- children: [ "prompt", "textbox-prompt-colon", "entry" ];
-}
-
-prompt {
- enabled: true;
- padding: 15px;
- border-radius: 100%;
- background-color: @selected;
- text-color: @background;
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "::";
- padding: 15px;
- background-color: inherit;
- text-color: inherit;
-}
-entry {
- enabled: true;
- padding: 15px 0px;
- background-color: inherit;
- text-color: inherit;
- cursor: text;
- placeholder: "Search...";
- placeholder-color: inherit;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 6;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 15px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-scrollbar {
- handle-width: 5px ;
- handle-color: @selected;
- border-radius: 0px;
- background-color: @background-alt;
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- margin: 0px;
- padding: 0px;
- border: 0px solid;
- border-radius: 0px;
- border-color: @selected;
- background-color: transparent;
- text-color: @foreground;
- orientation: horizontal;
- cursor: pointer;
-}
-element normal.normal {
- background-color: transparent;
- text-color: @foreground;
-}
-element selected.normal {
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @selected;
-}
-element-icon {
- padding: 10px;
- border-radius: 100%;
- background-color: @selected;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- highlight: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-error-message {
- padding: 20px;
- border: 2px solid;
- border-radius: 20px;
- border-color: @selected;
- background-color: @background;
- text-color: @foreground;
-}
-textbox {
- background-color: @background;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
- highlight: none;
-}