mirror of
https://github.com/ksyasuda/rice.git
synced 2025-12-05 02:53:39 -08:00
add stuff
This commit is contained in:
@@ -1,68 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Custom Rofi Script
|
||||
|
||||
BORDER="#1F1F1F"
|
||||
SEPARATOR="#1F1F1F"
|
||||
FOREGROUND="#A9ABB0"
|
||||
BACKGROUND="#1F1F1F"
|
||||
BACKGROUND_ALT="#282c34"
|
||||
HIGHLIGHT_BACKGROUND="#56a7b5"
|
||||
HIGHLIGHT_FOREGROUND="#FFFFFF"
|
||||
HIGHLIGHT_FOREGROUND="#a8d385"
|
||||
# HIGHLIGHT_FOREGROUND="#6b2144"
|
||||
|
||||
BLACK="#000000"
|
||||
WHITE="#ffffff"
|
||||
RED="#e53935"
|
||||
GREEN="#43a047"
|
||||
YELLOW="#fdd835"
|
||||
BLUE="#1e88e5"
|
||||
MAGENTA="#00897b"
|
||||
CYAN="#00acc1"
|
||||
PINK="#d81b60"
|
||||
PURPLE="#8e24aa"
|
||||
INDIGO="#3949ab"
|
||||
TEAL="#00897b"
|
||||
LIME="#c0ca33"
|
||||
AMBER="#ffb300"
|
||||
ORANGE="#fb8c00"
|
||||
BROWN="#6d4c41"
|
||||
GREY="#757575"
|
||||
BLUE_GREY="#546e7a"
|
||||
DEEP_PURPLE="#5e35b1"
|
||||
DEEP_ORANGE="#f4511e"
|
||||
LIGHT_BLUE="#039be5"
|
||||
LIGHT_GREEN="#7cb342"
|
||||
|
||||
# Launch Rofi
|
||||
rofi -no-lazy-grab -show drun \
|
||||
-display-drun "Applications :" -drun-display-format "{name}" \
|
||||
-hide-scrollbar true \
|
||||
-bw 0 \
|
||||
-lines 12 \
|
||||
-line-padding 10 \
|
||||
-padding 60 \
|
||||
-width 20 \
|
||||
-height 50 \
|
||||
-xoffset 10 -yoffset 40 \
|
||||
-location 1 \
|
||||
-fullscreen \
|
||||
-columns 4 \
|
||||
-show-icons -icon-theme "Qogir-dark" \
|
||||
-font "FiraCode Nerd Font 34" \
|
||||
-markup \
|
||||
-color-enabled true \
|
||||
-color-window "$BACKGROUND,$BORDER,$SEPARATOR" \
|
||||
-color-normal "$BACKGROUND_ALT,$FOREGROUND,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
|
||||
-color-active "$BACKGROUND,$MAGENTA,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
|
||||
-color-urgent "$BACKGROUND,$YELLOW,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND"
|
||||
|
||||
# More Options
|
||||
# -fullscreen \
|
||||
|
||||
# Theming help
|
||||
# color window = background, border, separator
|
||||
# color normal = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
# color active = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
# color urgent = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
1
scripts/menu_full
Symbolic link
1
scripts/menu_full
Symbolic link
@@ -0,0 +1 @@
|
||||
../rofi/launchers/ribbon/launcher.sh
|
||||
68
scripts/menu_full_old
Executable file
68
scripts/menu_full_old
Executable file
@@ -0,0 +1,68 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Custom Rofi Script
|
||||
|
||||
BORDER="#1F1F1F"
|
||||
SEPARATOR="#1F1F1F"
|
||||
FOREGROUND="#A9ABB0"
|
||||
BACKGROUND="#1F1F1F"
|
||||
BACKGROUND_ALT="#282c34"
|
||||
HIGHLIGHT_BACKGROUND="#56a7b5"
|
||||
HIGHLIGHT_FOREGROUND="#FFFFFF"
|
||||
HIGHLIGHT_FOREGROUND="#a8d385"
|
||||
# HIGHLIGHT_FOREGROUND="#6b2144"
|
||||
|
||||
BLACK="#000000"
|
||||
WHITE="#ffffff"
|
||||
RED="#e53935"
|
||||
GREEN="#43a047"
|
||||
YELLOW="#fdd835"
|
||||
BLUE="#1e88e5"
|
||||
MAGENTA="#00897b"
|
||||
CYAN="#00acc1"
|
||||
PINK="#d81b60"
|
||||
PURPLE="#8e24aa"
|
||||
INDIGO="#3949ab"
|
||||
TEAL="#00897b"
|
||||
LIME="#c0ca33"
|
||||
AMBER="#ffb300"
|
||||
ORANGE="#fb8c00"
|
||||
BROWN="#6d4c41"
|
||||
GREY="#757575"
|
||||
BLUE_GREY="#546e7a"
|
||||
DEEP_PURPLE="#5e35b1"
|
||||
DEEP_ORANGE="#f4511e"
|
||||
LIGHT_BLUE="#039be5"
|
||||
LIGHT_GREEN="#7cb342"
|
||||
|
||||
# Launch Rofi
|
||||
rofi -no-lazy-grab -show drun \
|
||||
-display-drun "Applications :" -drun-display-format "{name}" \
|
||||
-hide-scrollbar true \
|
||||
-bw 0 \
|
||||
-lines 12 \
|
||||
-line-padding 10 \
|
||||
-padding 60 \
|
||||
-width 20 \
|
||||
-height 50 \
|
||||
-xoffset 10 -yoffset 40 \
|
||||
-location 0 \
|
||||
-fullscreen \
|
||||
-columns 5 \
|
||||
-show-icons -icon-theme "Surfn Arc Breeze" \
|
||||
-font "FiraCode Nerd Font 34" \
|
||||
-markup \
|
||||
-color-enabled true \
|
||||
-color-window "$BACKGROUND,$BORDER,$SEPARATOR" \
|
||||
-color-normal "$BACKGROUND_ALT,$FOREGROUND,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
|
||||
-color-active "$BACKGROUND,$MAGENTA,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND" \
|
||||
-color-urgent "$BACKGROUND,$YELLOW,$BACKGROUND_ALT,$HIGHLIGHT_BACKGROUND,$HIGHLIGHT_FOREGROUND"
|
||||
|
||||
# More Options
|
||||
# -fullscreen \
|
||||
|
||||
# Theming help
|
||||
# color window = background, border, separator
|
||||
# color normal = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
# color active = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
# color urgent = background, foreground, background-alt, highlight-background, highlight-foreground
|
||||
1
scripts/menu_small
Symbolic link
1
scripts/menu_small
Symbolic link
@@ -0,0 +1 @@
|
||||
../rofi/launchers/slate/launcher.sh
|
||||
@@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
## Created By Aditya Shakya
|
||||
|
||||
#MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 5 -xoffset -14 -yoffset -52 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< " Lock| Logout| Reboot| Shutdown")"
|
||||
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 5 -xoffset -14 -yoffset -52 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< " Lock| Logout| Reboot| Shutdown")"
|
||||
case "$MENU" in
|
||||
*Lock) i3lock-fancy ;;
|
||||
*Logout) openbox --exit;;
|
||||
*Reboot) systemctl reboot ;;
|
||||
*Shutdown) systemctl -i poweroff
|
||||
esac
|
||||
1
scripts/powermenu
Symbolic link
1
scripts/powermenu
Symbolic link
@@ -0,0 +1 @@
|
||||
../rofi/powermenu/powermenu.sh
|
||||
12
scripts/powermenu_old
Executable file
12
scripts/powermenu_old
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
## Created By Aditya Shakya
|
||||
|
||||
#MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 5 -xoffset -14 -yoffset -52 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< " Lock| Logout| Reboot| Shutdown")"
|
||||
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 5 -xoffset -14 -yoffset -52 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< " Lock| Logout| Reboot| Shutdown")"
|
||||
case "$MENU" in
|
||||
*Lock) i3lock-fancy ;;
|
||||
*Logout) openbox --exit;;
|
||||
*Reboot) systemctl reboot ;;
|
||||
*Shutdown) systemctl -i poweroff
|
||||
esac
|
||||
Reference in New Issue
Block a user