Upload from GitHub

This commit is contained in:
2025-02-28 11:41:18 +01:00
commit c1afb50799
302 changed files with 37418 additions and 0 deletions

View File

@@ -0,0 +1,123 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 14";
show-icons: false;
icon-theme: "Papirus";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
@import "styles/colors.rasi"
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border-radius: 0px;
height: 42%;
width: 100%;
location: north;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 1% 1% 1% 0%;
background-color: @background-alt;
text-color: @foreground;
}
textbox-prompt-colon {
expand: false;
str: "System |";
background-color: @background-alt;
text-color: @foreground;
padding: 1% 0.5% 1% 7%;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
background-color: @background-alt;
text-color: @foreground;
expand: false;
border: 0% 0% 0.2% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border;
margin: 0% 33.25% 0% 20%;
padding: 0.5%;
position: center;
}
listview {
background-color: @background;
margin: 0% 0% 0% 0%;
spacing: 3%;
cycle: true;
dynamic: true;
layout: horizontal;
}
mainbox {
background-color: @background;
children: [ listview, inputbar ];
spacing: 0%;
padding: 5% 0% 5% 13.25%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: horizontal;
border-radius: 0%;
}
element-text {
background-color: #00000000;
text-color: inherit;
font: "feather 64";
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 6.5% 4% 6.5% 4%;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 0.2%;
}
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
}
element selected {
background-color: @selected;
text-color: @foreground;
border: 0% 0% 0.2% 0%;
border-radius: 0%;
border-color: @border;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View File

@@ -0,0 +1,93 @@
configuration {
font: "JetBrainsMono Nerd Font 36";
drun-display-format: "{name}";
fullscreen: false;
threads: 0;
matching: "fuzzy";
scroll-method: 0;
disable-history: false;
fullscreen: true;
}
* {
transparent: #00000000;
foreground: #F2F2F2EE;
background-selected: #F2F2F245;
background-active: #F2F2F230;
background-white: #F2F2F211;
background-black: #00000066;
urgent: #E91E6366;
urgent-selected: #E91E6377;
}
window {
transparency: "real";
background-color: @transparent;
text-color: @foreground;
location: northwest;
anchor: northwest;
}
inputbar {
margin: 0;
padding: 0;
children: [ entry-wrapper ];
}
listview {
background-color: @transparent;
lines: 6;
spacing: 5%;
cycle: false;
dynamic: true;
layout: horizontal;
}
mainbox {
background-color: @background-black;
children: [ inputbar, listview ];
padding: calc(50% - 70px) 0% 0% 15%;
}
element {
background-color: @transparent;
text-color: @foreground;
orientation: horizontal;
border-radius: 10px;
padding: 30px;
vertical: 0.5;
}
element-text {
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 9px;
}
element normal.active,
element alternate.active {
background-color: @background-active;
text-color: @foreground;
}
element selected {
background-color: #29B6F6;
text-color: #212121;
}
element selected.urgent {
background-color: @urgent-selected;
text-color: @foreground;
}
element selected.active {
background-color: @background-active;
color: @foreground-selected;
}

View File

@@ -0,0 +1,70 @@
#!/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
#
# column_circle column_square column_rounded column_alt
# card_circle card_square card_rounded card_alt
# dock_circle dock_square dock_rounded dock_alt
# drop_circle drop_square drop_rounded drop_alt
# full_circle full_square full_rounded full_alt
# row_circle row_square row_rounded row_alt
theme="drop_square"
dir="$HOME/.config/rofi/powermenu"
uptime=$(uptime -p | sed -e 's/up //g')
rofi_command="rofi -theme $dir/$theme"
# Options
shutdown=""
reboot=""
lock=""
suspend=""
logout=""
# Message
msg() {
rofi -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n"
}
# Variable passed to rofi
options="$shutdown\n$reboot\n$lock\n$suspend\n$logout"
chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 2)"
case $chosen in
$shutdown)
systemctl poweroff
;;
$reboot)
systemctl reboot
;;
$lock)
if [[ -f /usr/bin/i3lock ]]; then
i3lock
elif [[ -f /usr/bin/betterlockscreen ]]; then
betterlockscreen -l
fi
;;
$suspend)
mpc -q pause
amixer set Master mute
systemctl suspend
;;
$logout)
if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then
openbox --exit
elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then
bspc quit
elif [[ "$DESKTOP_SESSION" == "i3" ]]; then
i3-msg exit
fi
;;
esac

View File

@@ -0,0 +1,9 @@
* {
background: #280F28ff;
background-alt: #2D142Cff;
foreground: #ffffffA6;
border: #EE4540ff;
border-alt: #C92A42ff;
selected: #510A3299;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #EFF0F1FF;
background-alt: #E3E3E3FF;
foreground: #000000A6;
border: #000B83FF;
border-alt: #3DAEE9FF;
selected: #93CEE9FF;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #3C3945FF;
background-alt: #413E4Aff;
foreground: #F7C7B2ff;
border: #B38184ff;
border-alt: #F3B69Eff;
selected: #B381841a;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,10 @@
/*
* Change the colorscheme for every menu simply by editing this file...
*
* Available Color Schemes
*
* bluish berry nordic nightly gotham mask faded cocoa
*
*/
@import "nordic.rasi"

View File

@@ -0,0 +1,9 @@
* {
background: #57678CFF;
background-alt: #5E6C91ff;
foreground: #FFFCFFff;
border: #FF83A7ff;
border-alt: #F4BB6Cff;
selected: #A0B5F44c;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #24334Aff;
background-alt: #29384Fff;
foreground: #FEFFF1ff;
border: #3A6081ff;
border-alt: #715979ff;
selected: #C46C854C;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #3E4667ff;
background-alt: #434C6Dff;
foreground: #FAF7CCff;
border: #CA8CA5ff;
border-alt: #F0B2B3ff;
selected: #EFD4B61a;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #25344Bff;
background-alt: #2A3950ff;
foreground: #FEFFF1ff;
border: #A162F7ff;
border-alt: #45E3FFff;
selected: #6F88FE1a;
urgent: #DA4453FF;
}

View File

@@ -0,0 +1,9 @@
* {
background: #2E3440ff;
background-alt: #2E3440ff;
foreground: #8FBCBBff;
border: #bbbbbbff;
border-alt: #ccccccff;
selected: #444444ff;
urgent: #777777FF;
}