Added rofi config
This commit is contained in:
		
							
								
								
									
										110
									
								
								rofi/powermenu/type-1/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										110
									
								
								rofi/powermenu/type-1/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,110 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-1"
 | 
			
		||||
theme='style-1'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
shutdown=' Shutdown'
 | 
			
		||||
reboot=' Reboot'
 | 
			
		||||
lock=' Lock'
 | 
			
		||||
suspend=' Suspend'
 | 
			
		||||
logout=' Logout'
 | 
			
		||||
yes=' Yes'
 | 
			
		||||
no=' No'
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p "$host" \
 | 
			
		||||
		-mesg "Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 250px;}' \
 | 
			
		||||
		-theme-str 'mainbox {children: [ "message", "listview" ];}' \
 | 
			
		||||
		-theme-str 'listview {columns: 2; lines: 1;}' \
 | 
			
		||||
		-theme-str 'element-text {horizontal-align: 0.5;}' \
 | 
			
		||||
		-theme-str 'textbox {horizontal-align: 0.5;}' \
 | 
			
		||||
		-dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										18
									
								
								rofi/powermenu/type-1/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								rofi/powermenu/type-1/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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"
 | 
			
		||||
							
								
								
									
										12
									
								
								rofi/powermenu/type-1/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								rofi/powermenu/type-1/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Fonts
 | 
			
		||||
 *
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    font: "JetBrains Mono Nerd Font 10";
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										161
									
								
								rofi/powermenu/type-1/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										161
									
								
								rofi/powermenu/type-1/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,161 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       400px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     10px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     10px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     10px 14px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     5px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										161
									
								
								rofi/powermenu/type-1/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										161
									
								
								rofi/powermenu/type-1/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,161 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      2px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     5px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										161
									
								
								rofi/powermenu/type-1/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										161
									
								
								rofi/powermenu/type-1/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,161 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       350px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      1px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     8px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     8px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     8px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     8px 12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     8px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     8px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     8px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     5px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     8px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										161
									
								
								rofi/powermenu/type-1/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										161
									
								
								rofi/powermenu/type-1/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,161 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               30px 10px 30px 10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     10px 14px;
 | 
			
		||||
    border-radius:               15px 10px 15px 10px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border-radius:               10px 15px 10px 15px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px 10px 15px 10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     5px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px 10px 15px 10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.0;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										167
									
								
								rofi/powermenu/type-1/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										167
									
								
								rofi/powermenu/type-1/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,167 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       605px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     10px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     10px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", dummy, "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     10px 14px;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    border:                      0px 2px 0px 2px;
 | 
			
		||||
    border-radius:               4px;
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										111
									
								
								rofi/powermenu/type-2/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										111
									
								
								rofi/powermenu/type-2/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,111 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
## style-6   style-7   style-8   style-9   style-10
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-2"
 | 
			
		||||
theme='style-1'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
shutdown=''
 | 
			
		||||
reboot=''
 | 
			
		||||
lock=''
 | 
			
		||||
suspend=''
 | 
			
		||||
logout=''
 | 
			
		||||
yes=''
 | 
			
		||||
no=''
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p "Uptime: $uptime" \
 | 
			
		||||
		-mesg "Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
 | 
			
		||||
		-theme-str 'mainbox {children: [ "message", "listview" ];}' \
 | 
			
		||||
		-theme-str 'listview {columns: 2; lines: 1;}' \
 | 
			
		||||
		-theme-str 'element-text {horizontal-align: 0.5;}' \
 | 
			
		||||
		-theme-str 'textbox {horizontal-align: 0.5;}' \
 | 
			
		||||
		-dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										18
									
								
								rofi/powermenu/type-2/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								rofi/powermenu/type-2/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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"
 | 
			
		||||
							
								
								
									
										12
									
								
								rofi/powermenu/type-2/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								rofi/powermenu/type-2/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Fonts
 | 
			
		||||
 *
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    font: "JetBrains Mono Nerd Font 10";
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     40px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-10.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-10.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       1200px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     25px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     20px 24px;
 | 
			
		||||
    border-radius:               100% 0px 0px 100%;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               0px 100% 100% 0px;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @active;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px 50px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     70px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 48";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     40px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										172
									
								
								rofi/powermenu/type-2/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										172
									
								
								rofi/powermenu/type-2/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,172 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               15px 15px 0px 15px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               15px 15px 15px 0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px 5px 15px 5px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     40px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               50px 20px 50px 20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    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 {
 | 
			
		||||
    border:                      0px 0px 2px 2px ;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            var(background-alt);
 | 
			
		||||
    text-color:                  var(selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    east;
 | 
			
		||||
    anchor:                      east;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       115px;
 | 
			
		||||
    x-offset:                    -15px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px 0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 24";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    west;
 | 
			
		||||
    anchor:                      west;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       115px;
 | 
			
		||||
    x-offset:                    15px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px 0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 24";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										172
									
								
								rofi/powermenu/type-2/style-6.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										172
									
								
								rofi/powermenu/type-2/style-6.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,172 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    south;
 | 
			
		||||
    anchor:                      south;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    -15px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px 2px dash 0px 2px dash;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px 0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               30px 12px 30px 12px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 24";
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    border:                      0px 10px dash 0px 10px dash;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            var(selected);
 | 
			
		||||
    text-color:                  var(background);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-7.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-7.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px 100px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     45px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-8.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-8.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    east;
 | 
			
		||||
    anchor:                      east;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       95px;
 | 
			
		||||
    x-offset:                    -20px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    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:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     25px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 24";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										170
									
								
								rofi/powermenu/type-2/style-9.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										170
									
								
								rofi/powermenu/type-2/style-9.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,170 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    north;
 | 
			
		||||
    anchor:                      north;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       530px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    20px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "";
 | 
			
		||||
    padding:                     12px 16px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    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";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     25px 10px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather bold 24";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										105
									
								
								rofi/powermenu/type-3/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										105
									
								
								rofi/powermenu/type-3/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,105 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-3"
 | 
			
		||||
theme='style-1'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
shutdown=''
 | 
			
		||||
reboot=''
 | 
			
		||||
lock=''
 | 
			
		||||
suspend=''
 | 
			
		||||
logout=''
 | 
			
		||||
yes=''
 | 
			
		||||
no=''
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p "Uptime: $uptime" \
 | 
			
		||||
		-mesg "Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/shared/confirm.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										18
									
								
								rofi/powermenu/type-3/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								rofi/powermenu/type-3/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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"
 | 
			
		||||
							
								
								
									
										93
									
								
								rofi/powermenu/type-3/shared/confirm.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										93
									
								
								rofi/powermenu/type-3/shared/confirm.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,93 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "colors.rasi"
 | 
			
		||||
@import                          "fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    columns:                     2;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    padding:                     60px 10px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather 48";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12
									
								
								rofi/powermenu/type-3/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								rofi/powermenu/type-3/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Fonts
 | 
			
		||||
 *
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    font: "JetBrains Mono Nerd Font 12";
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										179
									
								
								rofi/powermenu/type-3/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										179
									
								
								rofi/powermenu/type-3/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,179 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    box-spacing:                 30px;
 | 
			
		||||
    box-margin:                  300px 100px;
 | 
			
		||||
    inputbar-spacing:            30px;
 | 
			
		||||
    list-spacing:                30px;
 | 
			
		||||
    general-padding:             20px;
 | 
			
		||||
    element-padding:             100px 10px;
 | 
			
		||||
    element-radius:              0px;
 | 
			
		||||
    general-radius:              0px;
 | 
			
		||||
    element-font:                "feather 64";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    width:                       1366px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(box-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(box-margin);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(inputbar-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "dummy", "textbox-prompt-colon", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "SYSTEM";
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(list-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-font);
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										179
									
								
								rofi/powermenu/type-3/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										179
									
								
								rofi/powermenu/type-3/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,179 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    box-spacing:                 50px;
 | 
			
		||||
    box-margin:                  300px 200px;
 | 
			
		||||
    inputbar-spacing:            0px;
 | 
			
		||||
    list-spacing:                30px;
 | 
			
		||||
    general-padding:             20px;
 | 
			
		||||
    element-padding:             80px 10px;
 | 
			
		||||
    element-radius:              100%;
 | 
			
		||||
    general-radius:              100%;
 | 
			
		||||
    element-font:                "feather 64";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    width:                       1366px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(box-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(box-margin);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(inputbar-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "dummy", "textbox-prompt-colon", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "SYSTEM";
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               100% 0px 0px 100%;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               0px 100% 100% 0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(list-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-font);
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										180
									
								
								rofi/powermenu/type-3/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										180
									
								
								rofi/powermenu/type-3/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,180 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    box-spacing:                 50px;
 | 
			
		||||
    box-margin:                  370px 350px;
 | 
			
		||||
    message-margin:              0px 350px;
 | 
			
		||||
    inputbar-spacing:            0px;
 | 
			
		||||
    list-spacing:                50px;
 | 
			
		||||
    general-padding:             20px;
 | 
			
		||||
    element-padding:             55px 10px;
 | 
			
		||||
    element-radius:              20px;
 | 
			
		||||
    general-radius:              100%;
 | 
			
		||||
    element-font:                "feather 48";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    width:                       1366px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(box-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(box-margin);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(inputbar-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "dummy", "textbox-prompt-colon", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "SYSTEM";
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(list-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-font);
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										180
									
								
								rofi/powermenu/type-3/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										180
									
								
								rofi/powermenu/type-3/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,180 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    box-spacing:                 70px;
 | 
			
		||||
    box-margin:                  300px 350px;
 | 
			
		||||
    message-margin:              0px 400px;
 | 
			
		||||
    inputbar-spacing:            0px;
 | 
			
		||||
    list-spacing:                40px;
 | 
			
		||||
    general-padding:             20px;
 | 
			
		||||
    element-padding:             60px 10px;
 | 
			
		||||
    element-radius:              80px;
 | 
			
		||||
    general-radius:              100%;
 | 
			
		||||
    element-font:                "feather 48";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    width:                       1366px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(box-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(box-margin);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(inputbar-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "SYSTEM";
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(list-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-font);
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										181
									
								
								rofi/powermenu/type-3/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								rofi/powermenu/type-3/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,181 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "shared/colors.rasi"
 | 
			
		||||
@import                          "shared/fonts.rasi"
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    box-spacing:                 50px;
 | 
			
		||||
    box-margin:                  300px 250px;
 | 
			
		||||
    box-padding:                 50px;
 | 
			
		||||
    message-margin:              0px 400px;
 | 
			
		||||
    inputbar-spacing:            0px;
 | 
			
		||||
    list-spacing:                0px;
 | 
			
		||||
    general-padding:             20px;
 | 
			
		||||
    element-padding:             90px 10px;
 | 
			
		||||
    element-radius:              80px;
 | 
			
		||||
    general-radius:              100%;
 | 
			
		||||
    element-font:                "feather 48";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    /* properties for window widget */
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    width:                       1366px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    /* properties for all widgets */
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(box-spacing);
 | 
			
		||||
    margin:                      var(box-margin);
 | 
			
		||||
    padding:                     var(box-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    children:                    [ "inputbar", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(inputbar-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "dummy", "prompt" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         "SYSTEM";
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @urgent;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @active;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
error-message {
 | 
			
		||||
    padding:                     var(general-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(general-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(list-spacing);
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               var(element-radius);
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-font);
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										105
									
								
								rofi/powermenu/type-4/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										105
									
								
								rofi/powermenu/type-4/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,105 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-4"
 | 
			
		||||
theme='style-5'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
shutdown=''
 | 
			
		||||
reboot=''
 | 
			
		||||
lock=''
 | 
			
		||||
suspend=''
 | 
			
		||||
logout=''
 | 
			
		||||
yes=''
 | 
			
		||||
no=''
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p "Goodbye ${USER}" \
 | 
			
		||||
		-mesg "Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/shared/confirm.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										18
									
								
								rofi/powermenu/type-4/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								rofi/powermenu/type-4/shared/colors.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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"
 | 
			
		||||
							
								
								
									
										93
									
								
								rofi/powermenu/type-4/shared/confirm.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										93
									
								
								rofi/powermenu/type-4/shared/confirm.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,93 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
@import                          "colors.rasi"
 | 
			
		||||
@import                          "fonts.rasi"
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "message", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
    placeholder-color:           @foreground;
 | 
			
		||||
    blink:                       true;
 | 
			
		||||
    markup:                      true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    columns:                     2;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    padding:                     60px 10px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        "feather 48";
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12
									
								
								rofi/powermenu/type-4/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								rofi/powermenu/type-4/shared/fonts.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Fonts
 | 
			
		||||
 *
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
* {
 | 
			
		||||
    font: "JetBrains Mono Nerd Font 12";
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										131
									
								
								rofi/powermenu/type-4/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								rofi/powermenu/type-4/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,131 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    mainbox-spacing:             100px;
 | 
			
		||||
    mainbox-margin:              100px 300px;
 | 
			
		||||
    message-margin:              0px 400px;
 | 
			
		||||
    message-padding:             15px;
 | 
			
		||||
    message-border-radius:       100%;
 | 
			
		||||
    listview-spacing:            50px;
 | 
			
		||||
    element-padding:             55px 60px;
 | 
			
		||||
    element-border-radius:       100%;
 | 
			
		||||
 | 
			
		||||
    prompt-font:                 "JetBrains Mono Nerd Font Bold Italic 64";
 | 
			
		||||
    textbox-font:                "JetBrains Mono Nerd Font 16";
 | 
			
		||||
    element-text-font:           "feather 64";
 | 
			
		||||
 | 
			
		||||
    background-window:           black/5%;
 | 
			
		||||
    background-normal:           white/5%;
 | 
			
		||||
    background-selected:         white/15%;
 | 
			
		||||
    foreground-normal:           white;
 | 
			
		||||
    foreground-selected:         white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            var(background-window);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(mainbox-spacing);
 | 
			
		||||
    margin:                      var(mainbox-margin);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "inputbar", "listview", "message", "dummy" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    font:                        var(prompt-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(message-padding);
 | 
			
		||||
    border-radius:               var(message-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    font:                        var(textbox-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(listview-spacing);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border-radius:               var(element-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-text-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(background-selected);
 | 
			
		||||
    text-color:                  var(foreground-selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										131
									
								
								rofi/powermenu/type-4/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								rofi/powermenu/type-4/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,131 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    mainbox-spacing:             100px;
 | 
			
		||||
    mainbox-margin:              150px 400px;
 | 
			
		||||
    message-margin:              0px 350px;
 | 
			
		||||
    message-padding:             15px;
 | 
			
		||||
    message-border-radius:       15px;
 | 
			
		||||
    listview-spacing:            50px;
 | 
			
		||||
    element-padding:             35px 40px;
 | 
			
		||||
    element-border-radius:       20px;
 | 
			
		||||
 | 
			
		||||
    prompt-font:                 "Iosevka Nerd Font Bold 72";
 | 
			
		||||
    textbox-font:                "Iosevka Nerd Font 14";
 | 
			
		||||
    element-text-font:           "feather 64";
 | 
			
		||||
 | 
			
		||||
    background-window:           black/30%;
 | 
			
		||||
    background-normal:           white/5%;
 | 
			
		||||
    background-selected:         white/15%;
 | 
			
		||||
    foreground-normal:           white;
 | 
			
		||||
    foreground-selected:         white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            var(background-window);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(mainbox-spacing);
 | 
			
		||||
    margin:                      var(mainbox-margin);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "inputbar", "listview", "message", "dummy" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    font:                        var(prompt-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(message-padding);
 | 
			
		||||
    border-radius:               var(message-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    font:                        var(textbox-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(listview-spacing);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border-radius:               var(element-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-text-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(background-selected);
 | 
			
		||||
    text-color:                  var(foreground-selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										133
									
								
								rofi/powermenu/type-4/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										133
									
								
								rofi/powermenu/type-4/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,133 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    mainbox-spacing:             50px;
 | 
			
		||||
    mainbox-margin:              50px;
 | 
			
		||||
    message-margin:              0px 300px;
 | 
			
		||||
    message-padding:             12px;
 | 
			
		||||
    message-border-radius:       12px;
 | 
			
		||||
    listview-spacing:            25px;
 | 
			
		||||
    element-padding:             35px 0px;
 | 
			
		||||
    element-border-radius:       60px;
 | 
			
		||||
 | 
			
		||||
    prompt-font:                 "Iosevka Nerd Font Bold 48";
 | 
			
		||||
    textbox-font:                "Iosevka Nerd Font 12";
 | 
			
		||||
    element-text-font:           "feather 48";
 | 
			
		||||
 | 
			
		||||
    background-window:           black/20%;
 | 
			
		||||
    background-normal:           white/5%;
 | 
			
		||||
    background-selected:         white/15%;
 | 
			
		||||
    foreground-normal:           white;
 | 
			
		||||
    foreground-selected:         white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       1000px;
 | 
			
		||||
    border-radius:               50px;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            var(background-window);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(mainbox-spacing);
 | 
			
		||||
    margin:                      var(mainbox-margin);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "inputbar", "listview", "message", "dummy" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    font:                        var(prompt-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(message-padding);
 | 
			
		||||
    border-radius:               var(message-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    font:                        var(textbox-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(listview-spacing);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border-radius:               var(element-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-text-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(background-selected);
 | 
			
		||||
    text-color:                  var(foreground-selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										153
									
								
								rofi/powermenu/type-4/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										153
									
								
								rofi/powermenu/type-4/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,153 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    mainbox-spacing:             100px;
 | 
			
		||||
    mainbox-margin:              150px 400px;
 | 
			
		||||
    message-margin:              0px 350px;
 | 
			
		||||
    message-padding:             20px;
 | 
			
		||||
    message-border-radius:       100%;
 | 
			
		||||
    listview-spacing:            50px;
 | 
			
		||||
    element-padding:             35px 40px;
 | 
			
		||||
    element-border-radius:       80px;
 | 
			
		||||
 | 
			
		||||
    prompt-font:                 "Iosevka Nerd Font Bold Italic 72";
 | 
			
		||||
    textbox-font:                "Iosevka Nerd Font 16";
 | 
			
		||||
    element-text-font:           "feather Bold 64";
 | 
			
		||||
 | 
			
		||||
    /* Gradients */
 | 
			
		||||
    gradient-1:                  linear-gradient(45, #1E98FD, #06FDA5);
 | 
			
		||||
    gradient-2:                  linear-gradient(0, #F971C6, #7A72EC);
 | 
			
		||||
    gradient-3:                  linear-gradient(70, #FFD56F, #FF6861);
 | 
			
		||||
    gradient-4:                  linear-gradient(135, #44C6FA, #3043A1);
 | 
			
		||||
    gradient-5:                  linear-gradient(to left, #bdc3c7, #2c3e50);
 | 
			
		||||
    gradient-6:                  linear-gradient(to right, #0F2027, #203A43, #2C5364);
 | 
			
		||||
    gradient-7:                  linear-gradient(to top, #12c2e9, #c471ed, #f64f59);
 | 
			
		||||
    gradient-8:                  linear-gradient(to bottom, #FF0099, #493240);
 | 
			
		||||
    gradient-9:                  linear-gradient(0, #1a2a6c, #b21f1f, #fdbb2d);
 | 
			
		||||
    gradient-10:                 linear-gradient(0, #283c86, #45a247);
 | 
			
		||||
    gradient-11:                 linear-gradient(0, #77A1D3, #79CBCA, #E684AE);
 | 
			
		||||
    gradient-12:                 linear-gradient(0, #ff6e7f, #bfe9ff);
 | 
			
		||||
    gradient-13:                 linear-gradient(0, #D31027, #EA384D);
 | 
			
		||||
    gradient-14:                 linear-gradient(0, #DA22FF, #9733EE);
 | 
			
		||||
    gradient-15:                 linear-gradient(0, #1D976C, #93F9B9);
 | 
			
		||||
    gradient-16:                 linear-gradient(0, #232526, #414345);
 | 
			
		||||
    gradient-17:                 linear-gradient(0, #833ab4, #fd1d1d, #fcb045);
 | 
			
		||||
    gradient-18:                 linear-gradient(0, #667db6, #0082c8, #0082c8, #667db6);
 | 
			
		||||
    gradient-19:                 linear-gradient(0, #03001e, #7303c0, #ec38bc, #fdeff9);
 | 
			
		||||
    gradient-20:                 linear-gradient(0, #780206, #061161);
 | 
			
		||||
    
 | 
			
		||||
    background-window:           var(gradient-19);
 | 
			
		||||
    background-normal:           white/10%;
 | 
			
		||||
    background-selected:         white/20%;
 | 
			
		||||
    foreground-normal:           white;
 | 
			
		||||
    foreground-selected:         white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-image:            var(background-window);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(mainbox-spacing);
 | 
			
		||||
    margin:                      var(mainbox-margin);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "inputbar", "listview", "message", "dummy" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    font:                        var(prompt-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(message-padding);
 | 
			
		||||
    border-radius:               var(message-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    font:                        var(textbox-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(listview-spacing);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border-radius:               var(element-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-text-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(background-selected);
 | 
			
		||||
    text-color:                  var(foreground-selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										163
									
								
								rofi/powermenu/type-4/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										163
									
								
								rofi/powermenu/type-4/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,163 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * Author : Aditya Shakya (adi1090x)
 | 
			
		||||
 * Github : @adi1090x
 | 
			
		||||
 * 
 | 
			
		||||
 * Rofi Theme File
 | 
			
		||||
 * Rofi Version: 1.7.3
 | 
			
		||||
 **/
 | 
			
		||||
 | 
			
		||||
/*****----- Configuration -----*****/
 | 
			
		||||
configuration {
 | 
			
		||||
    show-icons:                 false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Global Properties -----*****/
 | 
			
		||||
* {
 | 
			
		||||
    /* Resolution : 1920x1080 */
 | 
			
		||||
    mainbox-spacing:             50px;
 | 
			
		||||
    mainbox-margin:              0px 470px;
 | 
			
		||||
    message-margin:              0px 350px;
 | 
			
		||||
    message-padding:             15px;
 | 
			
		||||
    message-border-radius:       100%;
 | 
			
		||||
    listview-spacing:            25px;
 | 
			
		||||
    element-padding:             45px 40px;
 | 
			
		||||
    element-border-radius:       100%;
 | 
			
		||||
 | 
			
		||||
    prompt-font:                 "Iosevka Nerd Font Bold 32";
 | 
			
		||||
    textbox-font:                "Iosevka Nerd Font 12";
 | 
			
		||||
    element-text-font:           "feather Bold 48";
 | 
			
		||||
 | 
			
		||||
    /* Gradients */
 | 
			
		||||
    gradient-1:                  linear-gradient(45, #1E98FD, #06FDA5);
 | 
			
		||||
    gradient-2:                  linear-gradient(0, #F971C6, #7A72EC);
 | 
			
		||||
    gradient-3:                  linear-gradient(70, #FFD56F, #FF6861);
 | 
			
		||||
    gradient-4:                  linear-gradient(135, #44C6FA, #3043A1);
 | 
			
		||||
    gradient-5:                  linear-gradient(to left, #bdc3c7, #2c3e50);
 | 
			
		||||
    gradient-6:                  linear-gradient(to right, #0F2027, #203A43, #2C5364);
 | 
			
		||||
    gradient-7:                  linear-gradient(to top, #12c2e9, #c471ed, #f64f59);
 | 
			
		||||
    gradient-8:                  linear-gradient(to bottom, #FF0099, #493240);
 | 
			
		||||
    gradient-9:                  linear-gradient(0, #1a2a6c, #b21f1f, #fdbb2d);
 | 
			
		||||
    gradient-10:                 linear-gradient(0, #283c86, #45a247);
 | 
			
		||||
    gradient-11:                 linear-gradient(0, #77A1D3, #79CBCA, #E684AE);
 | 
			
		||||
    gradient-12:                 linear-gradient(0, #ff6e7f, #bfe9ff);
 | 
			
		||||
    gradient-13:                 linear-gradient(0, #D31027, #EA384D);
 | 
			
		||||
    gradient-14:                 linear-gradient(0, #DA22FF, #9733EE);
 | 
			
		||||
    gradient-15:                 linear-gradient(0, #1D976C, #93F9B9);
 | 
			
		||||
    gradient-16:                 linear-gradient(0, #232526, #414345);
 | 
			
		||||
    gradient-17:                 linear-gradient(0, #833ab4, #fd1d1d, #fcb045);
 | 
			
		||||
    gradient-18:                 linear-gradient(0, #667db6, #0082c8, #0082c8, #667db6);
 | 
			
		||||
    gradient-19:                 linear-gradient(0, #03001e, #7303c0, #ec38bc, #fdeff9);
 | 
			
		||||
    gradient-20:                 linear-gradient(0, #780206, #061161);
 | 
			
		||||
    
 | 
			
		||||
    background-window:           var(gradient-6);
 | 
			
		||||
    background-normal:           white/10%;
 | 
			
		||||
    background-selected:         white/20%;
 | 
			
		||||
    foreground-normal:           white;
 | 
			
		||||
    foreground-selected:         white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  true;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-image:            var(background-window);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     var(mainbox-spacing);
 | 
			
		||||
    margin:                      var(mainbox-margin);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "userimage", "inputbar", "listview", "message", "dummy" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- User -----*****/
 | 
			
		||||
userimage {
 | 
			
		||||
    margin:                      0px 400px;
 | 
			
		||||
    border:                      2px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    border-color:                white;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/user.jpeg", both);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    font:                        var(prompt-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      var(message-margin);
 | 
			
		||||
    padding:                     var(message-padding);
 | 
			
		||||
    border-radius:               var(message-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    font:                        var(textbox-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    columns:                     5;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     var(listview-spacing);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     var(element-padding);
 | 
			
		||||
    border-radius:               var(element-border-radius);
 | 
			
		||||
    background-color:            var(background-normal);
 | 
			
		||||
    text-color:                  var(foreground-normal);
 | 
			
		||||
    cursor:                      pointer;
 | 
			
		||||
}
 | 
			
		||||
element-text {
 | 
			
		||||
    font:                        var(element-text-font);
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    cursor:                      inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
element selected.normal {
 | 
			
		||||
    background-color:            var(background-selected);
 | 
			
		||||
    text-color:                  var(foreground-selected);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										117
									
								
								rofi/powermenu/type-5/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										117
									
								
								rofi/powermenu/type-5/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,117 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-5"
 | 
			
		||||
theme='style-1'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
hibernate=''
 | 
			
		||||
shutdown=''
 | 
			
		||||
reboot=''
 | 
			
		||||
lock=''
 | 
			
		||||
suspend=''
 | 
			
		||||
logout=''
 | 
			
		||||
yes=''
 | 
			
		||||
no=''
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p " $USER@$host" \
 | 
			
		||||
		-mesg " Last Login: $lastlogin |  Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
 | 
			
		||||
		-theme-str 'mainbox {children: [ "message", "listview" ];}' \
 | 
			
		||||
		-theme-str 'listview {columns: 2; lines: 1;}' \
 | 
			
		||||
		-theme-str 'element-text {horizontal-align: 0.5;}' \
 | 
			
		||||
		-theme-str 'textbox {horizontal-align: 0.5;}' \
 | 
			
		||||
		-dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$hibernate\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--hibernate' ]]; then
 | 
			
		||||
			systemctl hibernate
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $hibernate)
 | 
			
		||||
		run_cmd --hibernate
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-5/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-5/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #11092D;
 | 
			
		||||
    background-alt:              #281657;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #DF5296;
 | 
			
		||||
    active:                      #6E77FF;
 | 
			
		||||
    urgent:                      #8E3596;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     100px 80px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/a.png", width);
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "dummy","prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         " System";
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     6;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      15px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     30px 10px;
 | 
			
		||||
    border-radius:               12px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-5/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-5/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     100px 80px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/d.png", width);
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "dummy","prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         " System";
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     6;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     15px;
 | 
			
		||||
    margin:                      15px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     28px 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);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px 15px 15px 15px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               100%;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-5/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-5/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #231419;
 | 
			
		||||
    background-alt:              #2D1E23;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #426647;
 | 
			
		||||
    active:                      #2E3F34;
 | 
			
		||||
    urgent:                      #D08261;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       550px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     100px 40px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/e.jpg", width);
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "dummy","prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         " System";
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               5px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     12px;
 | 
			
		||||
    border-radius:               5px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                     15px;
 | 
			
		||||
    margin:                      15px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     30px 10px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										153
									
								
								rofi/powermenu/type-5/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										153
									
								
								rofi/powermenu/type-5/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,153 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #131D1F;
 | 
			
		||||
    background-alt:              #183A43;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #649094;
 | 
			
		||||
    active:                      #E9CC9D;
 | 
			
		||||
    urgent:                      #FEA861;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
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:               10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     150px 40px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/i.jpg", width);
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "dummy","prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         " System";
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px 5px 5px 0px;
 | 
			
		||||
    border-radius:               15px 5px 15px 5px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px 0px 5px 5px;
 | 
			
		||||
    border-radius:               5px 15px 5px 15px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     6;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     25px;
 | 
			
		||||
    margin:                      25px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     40px 10px;
 | 
			
		||||
    border-radius:               15px 30px 15px 30px;
 | 
			
		||||
    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 {
 | 
			
		||||
    border:                      0px 0px 5px 5px;
 | 
			
		||||
    border-color:                @urgent;
 | 
			
		||||
    background-color:            var(background-alt);
 | 
			
		||||
    text-color:                  var(urgent);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										151
									
								
								rofi/powermenu/type-5/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										151
									
								
								rofi/powermenu/type-5/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,151 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #11092D;
 | 
			
		||||
    background-alt:              #281657;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #DF5296;
 | 
			
		||||
    active:                      #6E77FF;
 | 
			
		||||
    urgent:                      #8E3596;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
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:               20px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    children:                    [ "inputbar", "listview", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    spacing:                     20px;
 | 
			
		||||
    padding:                     100px 40px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/j.jpg", width);
 | 
			
		||||
    children:                    [ "textbox-prompt-colon", "prompt"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
textbox-prompt-colon {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    str:                         " System";
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px 0px 0px 10px;
 | 
			
		||||
    border-radius:               100% 100% 0px 100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
prompt {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border:                      0px;
 | 
			
		||||
    border-radius:               0px 100% 100% 100%;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     6;
 | 
			
		||||
    lines:                       1;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    margin:                      30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     35px 10px;
 | 
			
		||||
    border-radius:               55px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @background-alt;
 | 
			
		||||
    text-color:                  @foreground;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										117
									
								
								rofi/powermenu/type-6/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										117
									
								
								rofi/powermenu/type-6/powermenu.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,117 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
## Author : Aditya Shakya (adi1090x)
 | 
			
		||||
## Github : @adi1090x
 | 
			
		||||
#
 | 
			
		||||
## Rofi   : Power Menu
 | 
			
		||||
#
 | 
			
		||||
## Available Styles
 | 
			
		||||
#
 | 
			
		||||
## style-1   style-2   style-3   style-4   style-5
 | 
			
		||||
 | 
			
		||||
# Current Theme
 | 
			
		||||
dir="$HOME/.config/rofi/powermenu/type-6"
 | 
			
		||||
theme='style-1'
 | 
			
		||||
 | 
			
		||||
# CMDs
 | 
			
		||||
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
 | 
			
		||||
uptime="`uptime -p | sed -e 's/up //g'`"
 | 
			
		||||
host=`hostname`
 | 
			
		||||
 | 
			
		||||
# Options
 | 
			
		||||
hibernate=''
 | 
			
		||||
shutdown=''
 | 
			
		||||
reboot=''
 | 
			
		||||
lock=''
 | 
			
		||||
suspend=''
 | 
			
		||||
logout=''
 | 
			
		||||
yes=''
 | 
			
		||||
no=''
 | 
			
		||||
 | 
			
		||||
# Rofi CMD
 | 
			
		||||
rofi_cmd() {
 | 
			
		||||
	rofi -dmenu \
 | 
			
		||||
		-p " $USER@$host" \
 | 
			
		||||
		-mesg " Uptime: $uptime" \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Confirmation CMD
 | 
			
		||||
confirm_cmd() {
 | 
			
		||||
	rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
 | 
			
		||||
		-theme-str 'mainbox {orientation: vertical; children: [ "message", "listview" ];}' \
 | 
			
		||||
		-theme-str 'listview {columns: 2; lines: 1;}' \
 | 
			
		||||
		-theme-str 'element-text {horizontal-align: 0.5;}' \
 | 
			
		||||
		-theme-str 'textbox {horizontal-align: 0.5;}' \
 | 
			
		||||
		-dmenu \
 | 
			
		||||
		-p 'Confirmation' \
 | 
			
		||||
		-mesg 'Are you Sure?' \
 | 
			
		||||
		-theme ${dir}/${theme}.rasi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Ask for confirmation
 | 
			
		||||
confirm_exit() {
 | 
			
		||||
	echo -e "$yes\n$no" | confirm_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Pass variables to rofi dmenu
 | 
			
		||||
run_rofi() {
 | 
			
		||||
	echo -e "$lock\n$suspend\n$logout\n$hibernate\n$reboot\n$shutdown" | rofi_cmd
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Execute Command
 | 
			
		||||
run_cmd() {
 | 
			
		||||
	selected="$(confirm_exit)"
 | 
			
		||||
	if [[ "$selected" == "$yes" ]]; then
 | 
			
		||||
		if [[ $1 == '--shutdown' ]]; then
 | 
			
		||||
			systemctl poweroff
 | 
			
		||||
		elif [[ $1 == '--reboot' ]]; then
 | 
			
		||||
			systemctl reboot
 | 
			
		||||
		elif [[ $1 == '--hibernate' ]]; then
 | 
			
		||||
			systemctl hibernate
 | 
			
		||||
		elif [[ $1 == '--suspend' ]]; then
 | 
			
		||||
			mpc -q pause
 | 
			
		||||
			amixer set Master mute
 | 
			
		||||
			systemctl suspend
 | 
			
		||||
		elif [[ $1 == '--logout' ]]; then
 | 
			
		||||
			if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
 | 
			
		||||
				openbox --exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
 | 
			
		||||
				bspc quit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
 | 
			
		||||
				i3-msg exit
 | 
			
		||||
			elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
 | 
			
		||||
				qdbus org.kde.ksmserver /KSMServer logout 0 0 0
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		exit 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Actions
 | 
			
		||||
chosen="$(run_rofi)"
 | 
			
		||||
case ${chosen} in
 | 
			
		||||
    $shutdown)
 | 
			
		||||
		run_cmd --shutdown
 | 
			
		||||
        ;;
 | 
			
		||||
    $reboot)
 | 
			
		||||
		run_cmd --reboot
 | 
			
		||||
        ;;
 | 
			
		||||
    $hibernate)
 | 
			
		||||
		run_cmd --hibernate
 | 
			
		||||
        ;;
 | 
			
		||||
    $lock)
 | 
			
		||||
		if [[ -x '/usr/bin/betterlockscreen' ]]; then
 | 
			
		||||
			betterlockscreen -l
 | 
			
		||||
		elif [[ -x '/usr/bin/i3lock' ]]; then
 | 
			
		||||
			i3lock
 | 
			
		||||
		fi
 | 
			
		||||
        ;;
 | 
			
		||||
    $suspend)
 | 
			
		||||
		run_cmd --suspend
 | 
			
		||||
        ;;
 | 
			
		||||
    $logout)
 | 
			
		||||
		run_cmd --logout
 | 
			
		||||
        ;;
 | 
			
		||||
esac
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-6/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-6/style-1.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #11092D;
 | 
			
		||||
    background-alt:              #281657;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #DF5296;
 | 
			
		||||
    active:                      #6E77FF;
 | 
			
		||||
    urgent:                      #8E3596;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               15px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    orientation:                 horizontal;
 | 
			
		||||
    children:                    [ "imagebox", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Imagebox -----*****/
 | 
			
		||||
imagebox {
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/a.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/a.png", height);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    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:               10px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     2;
 | 
			
		||||
    lines:                       3;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    margin:                      30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     40px 10px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-6/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-6/style-2.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										147
									
								
								rofi/powermenu/type-6/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								rofi/powermenu/type-6/style-3.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #231419;
 | 
			
		||||
    background-alt:              #2D1E23;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #426647;
 | 
			
		||||
    active:                      #2E3F34;
 | 
			
		||||
    urgent:                      #D08261;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    orientation:                 horizontal;
 | 
			
		||||
    children:                    [ "imagebox", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Imagebox -----*****/
 | 
			
		||||
imagebox {
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/e.jpg", width);
 | 
			
		||||
    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/e.jpg", height);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    padding:                     15px;
 | 
			
		||||
    border-radius:               10px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
    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:               10px;
 | 
			
		||||
    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:                     30px;
 | 
			
		||||
    margin:                      30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     18px 10px;
 | 
			
		||||
    border-radius:               20px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										149
									
								
								rofi/powermenu/type-6/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								rofi/powermenu/type-6/style-4.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,149 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #131D1F;
 | 
			
		||||
    background-alt:              #183A43;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #649094;
 | 
			
		||||
    active:                      #E9CC9D;
 | 
			
		||||
    urgent:                      #FEA861;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    orientation:                 horizontal;
 | 
			
		||||
    children:                    [ "imagebox", "listview" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Imagebox -----*****/
 | 
			
		||||
imagebox {
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    width:                       640px;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     100px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/i.jpg", height);
 | 
			
		||||
    children:                    [ "inputbar", "dummy", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- User -----*****/
 | 
			
		||||
userimage {
 | 
			
		||||
    margin:                      0px 0px;
 | 
			
		||||
    border:                      10px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @background-alt;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/i.jpg", height);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- 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:                     30px;
 | 
			
		||||
    margin:                      30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     20px 10px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										149
									
								
								rofi/powermenu/type-6/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								rofi/powermenu/type-6/style-5.rasi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,149 @@
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * 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:                  #11092D;
 | 
			
		||||
    background-alt:              #281657;
 | 
			
		||||
    foreground:                  #FFFFFF;
 | 
			
		||||
    selected:                    #DF5296;
 | 
			
		||||
    active:                      #6E77FF;
 | 
			
		||||
    urgent:                      #8E3596;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
USE_BUTTONS=YES
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
/*****----- Main Window -----*****/
 | 
			
		||||
window {
 | 
			
		||||
    transparency:                "real";
 | 
			
		||||
    location:                    center;
 | 
			
		||||
    anchor:                      center;
 | 
			
		||||
    fullscreen:                  false;
 | 
			
		||||
    width:                       800px;
 | 
			
		||||
    x-offset:                    0px;
 | 
			
		||||
    y-offset:                    0px;
 | 
			
		||||
 | 
			
		||||
    padding:                     0px;
 | 
			
		||||
    border:                      0px solid;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @selected;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
    background-color:            @background;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Main Box -----*****/
 | 
			
		||||
mainbox {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    orientation:                 horizontal;
 | 
			
		||||
    children:                    [ "listview", "imagebox" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Imagebox -----*****/
 | 
			
		||||
imagebox {
 | 
			
		||||
    expand:                      false;
 | 
			
		||||
    width:                       500px;
 | 
			
		||||
    spacing:                     0px;
 | 
			
		||||
    padding:                     100px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/j.jpg", height);
 | 
			
		||||
    children:                    [ "inputbar", "dummy", "message" ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- User -----*****/
 | 
			
		||||
userimage {
 | 
			
		||||
    margin:                      0px 0px;
 | 
			
		||||
    border:                      10px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    border-color:                @background-alt;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    background-image:            url("~/.config/rofi/images/j.jpg", height);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Inputbar -----*****/
 | 
			
		||||
inputbar {
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @urgent;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
    children:                    [ "dummy", "prompt", "dummy"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dummy {
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
prompt {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Message -----*****/
 | 
			
		||||
message {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    margin:                      0px;
 | 
			
		||||
    padding:                     20px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    background-color:            @active;
 | 
			
		||||
    text-color:                  @background;
 | 
			
		||||
}
 | 
			
		||||
textbox {
 | 
			
		||||
    background-color:            inherit;
 | 
			
		||||
    text-color:                  inherit;
 | 
			
		||||
    vertical-align:              0.5;
 | 
			
		||||
    horizontal-align:            0.5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Listview -----*****/
 | 
			
		||||
listview {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    columns:                     2;
 | 
			
		||||
    lines:                       3;
 | 
			
		||||
    cycle:                       true;
 | 
			
		||||
    dynamic:                     true;
 | 
			
		||||
    scrollbar:                   false;
 | 
			
		||||
    layout:                      vertical;
 | 
			
		||||
    reverse:                     false;
 | 
			
		||||
    fixed-height:                true;
 | 
			
		||||
    fixed-columns:               true;
 | 
			
		||||
    
 | 
			
		||||
    spacing:                     30px;
 | 
			
		||||
    margin:                      30px;
 | 
			
		||||
    background-color:            transparent;
 | 
			
		||||
    cursor:                      "default";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*****----- Elements -----*****/
 | 
			
		||||
element {
 | 
			
		||||
    enabled:                     true;
 | 
			
		||||
    padding:                     20px 10px;
 | 
			
		||||
    border-radius:               0px;
 | 
			
		||||
    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);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user