diff options
Diffstat (limited to 'Common/rofi')
324 files changed, 0 insertions, 22102 deletions
diff --git a/Common/rofi/applets/android/apps.sh b/Common/rofi/applets/android/apps.sh deleted file mode 100755 index 466c629..0000000 --- a/Common/rofi/applets/android/apps.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/six.rasi" - -# Links -terminal="" -files="" -editor="" -browser="" -music="" -settings="" - -# Error msg -msg() { - rofi -theme "$dir/message.rasi" -e "$1" -} - -# Variable passed to rofi -options="$terminal\n$files\n$editor\n$browser\n$music\n$settings" - -chosen="$(echo -e "$options" | $rofi_command -p "Most Used" -dmenu -selected-row 0)" -case $chosen in - $terminal) - if [[ -f /usr/bin/termite ]]; then - termite & - elif [[ -f /usr/bin/urxvt ]]; then - urxvt & - elif [[ -f /usr/bin/kitty ]]; then - kitty & - elif [[ -f /usr/bin/xterm ]]; then - xterm & - elif [[ -f /usr/bin/xfce4-terminal ]]; then - xfce4-terminal & - elif [[ -f /usr/bin/gnome-terminal ]]; then - gnome-terminal & - else - msg "No suitable terminal found!" - fi - ;; - $files) - if [[ -f /usr/bin/thunar ]]; then - thunar & - elif [[ -f /usr/bin/pcmanfm ]]; then - pcmanfm & - else - msg "No suitable file manager found!" - fi - ;; - $editor) - if [[ -f /usr/bin/geany ]]; then - geany & - elif [[ -f /usr/bin/leafpad ]]; then - leafpad & - elif [[ -f /usr/bin/mousepad ]]; then - mousepad & - elif [[ -f /usr/bin/code ]]; then - code & - else - msg "No suitable text editor found!" - fi - ;; - $browser) - if [[ -f /usr/bin/firefox ]]; then - firefox & - elif [[ -f /usr/bin/chromium ]]; then - chromium & - elif [[ -f /usr/bin/midori ]]; then - midori & - else - msg "No suitable web browser found!" - fi - ;; - $music) - if [[ -f /usr/bin/lxmusic ]]; then - lxmusic & - else - msg "No suitable music player found!" - fi - ;; - $settings) - if [[ -f /usr/bin/xfce4-settings-manager ]]; then - xfce4-settings-manager & - else - msg "No suitable settings manager found!" - fi - ;; -esac - diff --git a/Common/rofi/applets/android/backlight.sh b/Common/rofi/applets/android/backlight.sh deleted file mode 100755 index 141b9ae..0000000 --- a/Common/rofi/applets/android/backlight.sh +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/three.rasi" - -# Error msg -msg() { - rofi -theme "$dir/message.rasi" -e "$1" -} - -## Get Brightness -if [[ -f /usr/bin/blight ]]; then - DEVICE=$(ls /sys/class/backlight | head -n 1) - BNESS="$(blight -d $DEVICE get brightness)" - PERC="$(($BNESS*100/255))" - BLIGHT=${PERC%.*} -elif [[ -f /usr/bin/xbacklight ]]; then - VAR="$(xbacklight -get)" - BLIGHT="$(printf "%.0f\n" "$VAR")" -else - msg "No suitable backlight utility found!" - exit 1 -fi - -if [[ $BLIGHT -ge 1 ]] && [[ $BLIGHT -le 29 ]]; then - MSG="Low" -elif [[ $BLIGHT -ge 30 ]] && [[ $BLIGHT -le 49 ]]; then - MSG="Optimal" -elif [[ $BLIGHT -ge 50 ]] && [[ $BLIGHT -le 69 ]]; then - MSG="High" -elif [[ $BLIGHT -ge 70 ]] && [[ $BLIGHT -le 99 ]]; then - MSG="Too Much" -fi - -## Icons -ICON_UP="" -ICON_DOWN="" -ICON_OPT="" - -notify="notify-send -u low -t 1500" -options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)" -case $chosen in - $ICON_UP) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -inc 10 && $notify "Brightness Up $ICON_UP" - fi - ;; - $ICON_DOWN) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN" - fi - ;; - $ICON_OPT) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT" - fi - ;; -esac - diff --git a/Common/rofi/applets/android/colors.rasi b/Common/rofi/applets/android/colors.rasi deleted file mode 100644 index 5ce46fc..0000000 --- a/Common/rofi/applets/android/colors.rasi +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * // Dark - * material-dark/amber material-dark/blue material-dark/blue_grey material-dark/brown material-dark/cyan material-dark/deep_orange - * material-dark/deep_purple material-dark/green material-dark/grey material-dark/indigo material-dark/light_blue material-dark/light_green - * material-dark/lime material-dark/orange material-dark/pink material-dark/purple material-dark/red material-dark/teal - * material-dark/yellow - * // Light - * material-light/amber material-light/blue material-light/blue_grey material-light/brown material-light/cyan material-light/deep_orange - * material-light/deep_purple material-light/green material-light/grey material-light/indigo material-light/light_blue material-light/light_green - * material-light/lime material-light/orange material-light/pink material-light/purple material-light/red material-light/teal - * material-light/yellow - * - * // Other - * adapta, adapta-nokto, arc, arc-dark, adwaita, gruvbox, dark - * armchair, darkpink, fresh, inside, party, sirin - * - */ - -@import "../styles/arc.rasi" diff --git a/Common/rofi/applets/android/confirm.rasi b/Common/rofi/applets/android/confirm.rasi deleted file mode 100644 index 970783f..0000000 --- a/Common/rofi/applets/android/confirm.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Confirm Dialog */ - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "Iosevka Nerd Font 12"; -} - -window { - width: 225px; - padding: 25px; - border: 0px; - border-radius: 12px; - border-color: @accent; - location: center; - y-offset: -20px; -} - -entry { - expand: true; - text-color: @accent; -} diff --git a/Common/rofi/applets/android/five.rasi b/Common/rofi/applets/android/five.rasi deleted file mode 100644 index bcf13fc..0000000 --- a/Common/rofi/applets/android/five.rasi +++ /dev/null @@ -1,91 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - width: 100px; - location: east; - x-offset: -15px; - y-offset: 0px; -} - -listview { - lines: 5; - margin: 8px; - spacing: 8px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ listview ]; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 10px 10px 33px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 10px; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 10px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/applets/android/message.rasi b/Common/rofi/applets/android/message.rasi deleted file mode 100644 index f35d3a2..0000000 --- a/Common/rofi/applets/android/message.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Confirm Dialog */ - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "Iosevka Nerd Font 12"; -} - -window { - width: 360px; - padding: 25px; - border: 0px; - border-radius: 12px; - border-color: @accent; - location: center; - y-offset: -20px; -} - -entry { - expand: true; - text-color: @accent; -} diff --git a/Common/rofi/applets/android/mpd.sh b/Common/rofi/applets/android/mpd.sh deleted file mode 100755 index 6f15be0..0000000 --- a/Common/rofi/applets/android/mpd.sh +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/six.rasi" - -# Gets the current status of mpd (for us to parse it later on) -status="$(mpc status)" -# Defines the Play / Pause option content -if [[ $status == *"[playing]"* ]]; then - play_pause="" -else - play_pause="" -fi -active="" -urgent="" - -# Display if repeat mode is on / off -tog_repeat="" -if [[ $status == *"repeat: on"* ]]; then - active="-a 4" -elif [[ $status == *"repeat: off"* ]]; then - urgent="-u 4" -else - tog_repeat=" Parsing error" -fi - -# Display if random mode is on / off -tog_random="" -if [[ $status == *"random: on"* ]]; then - [ -n "$active" ] && active+=",5" || active="-a 5" -elif [[ $status == *"random: off"* ]]; then - [ -n "$urgent" ] && urgent+=",5" || urgent="-u 5" -else - tog_random=" Parsing error" -fi -stop="" -next="" -previous="" - -# Variable passed to rofi -options="$previous\n$play_pause\n$stop\n$next\n$tog_repeat\n$tog_random" - -# Get the current playing song -current=$(mpc -f %title% current) -# If mpd isn't running it will return an empty string, we don't want to display that -if [[ -z "$current" ]]; then - current="-" -fi - -# Spawn the mpd menu with the "Play / Pause" entry selected by default -chosen="$(echo -e "$options" | $rofi_command -p " $current" -dmenu $active $urgent -selected-row 1)" -case $chosen in - $previous) - mpc -q prev && notify-send -u low -t 1800 " $(mpc current)" - ;; - $play_pause) - mpc -q toggle && notify-send -u low -t 1800 " $(mpc current)" - ;; - $stop) - mpc -q stop - ;; - $next) - mpc -q next && notify-send -u low -t 1800 " $(mpc current)" - ;; - $tog_repeat) - mpc -q repeat - ;; - $tog_random) - mpc -q random - ;; -esac diff --git a/Common/rofi/applets/android/powermenu.sh b/Common/rofi/applets/android/powermenu.sh deleted file mode 100755 index e28c731..0000000 --- a/Common/rofi/applets/android/powermenu.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/five.rasi" - -uptime=$(uptime -p | sed -e 's/up //g') - -# Options -shutdown="" -reboot="" -lock="" -suspend="" -logout="" - -# Confirmation -confirm_exit() { - rofi -dmenu\ - -i\ - -no-fixed-num-lines\ - -p "Are You Sure? : "\ - -theme $dir/confirm.rasi -} - -# Message -msg() { - rofi -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n" -} - -# Variable passed to rofi -options="$shutdown\n$reboot\n$lock\n$suspend\n$logout" - -chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 2)" -case $chosen in - $shutdown) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl poweroff - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $reboot) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl reboot - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $lock) - if [[ -f /usr/bin/i3lock ]]; then - i3lock - elif [[ -f /usr/bin/betterlockscreen ]]; then - betterlockscreen -l - fi - ;; - $suspend) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - mpc -q pause - amixer set Master mute - systemctl suspend - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $logout) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then - openbox --exit - elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then - bspc quit - elif [[ "$DESKTOP_SESSION" == "i3" ]]; then - i3-msg exit - fi - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; -esac diff --git a/Common/rofi/applets/android/quicklinks.sh b/Common/rofi/applets/android/quicklinks.sh deleted file mode 100755 index e2ae62f..0000000 --- a/Common/rofi/applets/android/quicklinks.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/six.rasi" - -# Error msg -msg() { - rofi -theme "$dir/message.rasi" -e "$1" -} - -# Browser -if [[ -f /usr/bin/firefox ]]; then - app="firefox" -elif [[ -f /usr/bin/chromium ]]; then - app="chromium" -elif [[ -f /usr/bin/midori ]]; then - app="midori" -else - msg "No suitable web browser found!" - exit 1 -fi - -# Links -google="" -facebook="" -twitter="" -github="" -mail="" -youtube="" - -# Variable passed to rofi -options="$google\n$facebook\n$twitter\n$github\n$mail\n$youtube" - -chosen="$(echo -e "$options" | $rofi_command -p "Open In : Firefox" -dmenu -selected-row 0)" -case $chosen in - $google) - $app https://www.google.com & - ;; - $facebook) - $app https://www.facebook.com & - ;; - $twitter) - $app https://www.twitter.com & - ;; - $github) - $app https://www.github.com & - ;; - $mail) - $app https://www.gmail.com & - ;; - $youtube) - $app https://www.youtube.com & - ;; -esac - diff --git a/Common/rofi/applets/android/screenshot.sh b/Common/rofi/applets/android/screenshot.sh deleted file mode 100755 index 95abe34..0000000 --- a/Common/rofi/applets/android/screenshot.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/three.rasi" - -# Error msg -msg() { - rofi -theme "$dir/message.rasi" -e "Please install 'scrot' first." -} - -# Options -screen="" -area="" -window="" - -# Variable passed to rofi -options="$screen\n$area\n$window" - -chosen="$(echo -e "$options" | $rofi_command -p '' -dmenu -selected-row 1)" -case $chosen in - $screen) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $area) - if [[ -f /usr/bin/scrot ]]; then - scrot -s 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $window) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot -u 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; -esac - diff --git a/Common/rofi/applets/android/six.rasi b/Common/rofi/applets/android/six.rasi deleted file mode 100644 index f57394b..0000000 --- a/Common/rofi/applets/android/six.rasi +++ /dev/null @@ -1,91 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - width: 100px; - location: east; - x-offset: -15px; - y-offset: 0px; -} - -listview { - lines: 6; - margin: 8px; - spacing: 8px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ listview ]; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 10px 10px 33px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 10px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 10px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/android/three.rasi b/Common/rofi/applets/android/three.rasi deleted file mode 100644 index cdac3de..0000000 --- a/Common/rofi/applets/android/three.rasi +++ /dev/null @@ -1,91 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - width: 100px; - location: east; - x-offset: -15px; - y-offset: 0px; -} - -listview { - lines: 3; - margin: 8px; - spacing: 8px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ listview ]; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 10px 10px 33px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 10px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 10px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/android/volume.sh b/Common/rofi/applets/android/volume.sh deleted file mode 100755 index 429db8c..0000000 --- a/Common/rofi/applets/android/volume.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -dir="$HOME/.config/rofi/applets/android" -rofi_command="rofi -theme $dir/three.rasi" - -## Get Volume -#VOLUME=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%') -MUTE=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $6}' | tr -d '[]%') - -active="" -urgent="" - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"on"* ]]; then - VOLUME="$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%')%" -else - VOLUME="Mu..." -fi - -## Icons -ICON_UP="" -ICON_DOWN="" -ICON_MUTED="" - -options="$ICON_UP\n$ICON_MUTED\n$ICON_DOWN" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$VOLUME" -dmenu $active $urgent -selected-row 0)" -case $chosen in - $ICON_UP) - amixer -Mq set Master,0 5%+ unmute && notify-send -u low -t 1500 "Volume Up $ICON_UP" - ;; - $ICON_DOWN) - amixer -Mq set Master,0 5%- unmute && notify-send -u low -t 1500 "Volume Down $ICON_DOWN" - ;; - $ICON_MUTED) - amixer -q set Master toggle - ;; -esac - diff --git a/Common/rofi/applets/applets/apps.sh b/Common/rofi/applets/applets/apps.sh deleted file mode 100755 index f8129ce..0000000 --- a/Common/rofi/applets/applets/apps.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/apps.rasi" - -# Links -terminal="" -files="" -editor="" -browser="" -music="" -settings="" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -# Variable passed to rofi -options="$terminal\n$files\n$editor\n$browser\n$music\n$settings" - -chosen="$(echo -e "$options" | $rofi_command -p "Most Used" -dmenu -selected-row 0)" -case $chosen in - $terminal) - if [[ -f /usr/bin/termite ]]; then - termite & - elif [[ -f /usr/bin/urxvt ]]; then - urxvt & - elif [[ -f /usr/bin/kitty ]]; then - kitty & - elif [[ -f /usr/bin/xterm ]]; then - xterm & - elif [[ -f /usr/bin/xfce4-terminal ]]; then - xfce4-terminal & - elif [[ -f /usr/bin/gnome-terminal ]]; then - gnome-terminal & - else - msg "No suitable terminal found!" - fi - ;; - $files) - if [[ -f /usr/bin/thunar ]]; then - thunar & - elif [[ -f /usr/bin/pcmanfm ]]; then - pcmanfm & - else - msg "No suitable file manager found!" - fi - ;; - $editor) - if [[ -f /usr/bin/geany ]]; then - geany & - elif [[ -f /usr/bin/leafpad ]]; then - leafpad & - elif [[ -f /usr/bin/mousepad ]]; then - mousepad & - elif [[ -f /usr/bin/code ]]; then - code & - else - msg "No suitable text editor found!" - fi - ;; - $browser) - if [[ -f /usr/bin/firefox ]]; then - firefox & - elif [[ -f /usr/bin/chromium ]]; then - chromium & - elif [[ -f /usr/bin/midori ]]; then - midori & - else - msg "No suitable web browser found!" - fi - ;; - $music) - if [[ -f /usr/bin/lxmusic ]]; then - lxmusic & - else - msg "No suitable music player found!" - fi - ;; - $settings) - if [[ -f /usr/bin/xfce4-settings-manager ]]; then - xfce4-settings-manager & - else - msg "No suitable settings manager found!" - fi - ;; -esac diff --git a/Common/rofi/applets/applets/backlight.sh b/Common/rofi/applets/applets/backlight.sh deleted file mode 100755 index e5e096e..0000000 --- a/Common/rofi/applets/applets/backlight.sh +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi MouseDPrimary -theme $dir/backlight.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -pkill rofi - -## Main -while true; do - ## Get Brightness - if [[ -f /usr/bin/blight ]]; then - DEVICE=$(ls /sys/class/backlight | head -n 1) - BNESS="$(blight -d $DEVICE get brightness)" - PERC="$(($BNESS*100/255))" - BLIGHT=${PERC%.*} - elif [[ -f /usr/bin/xbacklight ]]; then - VAR="$(xbacklight -get)" - BLIGHT="$(printf "%.0f\n" "$VAR")" - else - msg "No suitable backlight utility found!" - exit 1 - fi - - if [[ $BLIGHT -ge 1 ]] && [[ $BLIGHT -le 29 ]]; then - MSG="Low" - elif [[ $BLIGHT -ge 30 ]] && [[ $BLIGHT -le 49 ]]; then - MSG="Optimal" - elif [[ $BLIGHT -ge 50 ]] && [[ $BLIGHT -le 69 ]]; then - MSG="High" - elif [[ $BLIGHT -ge 70 ]] && [[ $BLIGHT -le 99 ]]; then - MSG="Too Much" - fi - - ## Icons - ICON_UP="" - ICON_DOWN="" - ICON_OPT="" - - notify="notify-send -u low -t 1500" - options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN" - - chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)" - case $chosen in - $ICON_UP) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -inc 10 && $notify "Brightness Up $ICON_UP" - fi - continue - ;; - $ICON_DOWN) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN" - fi - continue - ;; - $ICON_OPT) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT" - fi - continue - ;; - esac - break -done diff --git a/Common/rofi/applets/applets/backlight_modi.sh b/Common/rofi/applets/applets/backlight_modi.sh deleted file mode 100755 index e5e096e..0000000 --- a/Common/rofi/applets/applets/backlight_modi.sh +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi MouseDPrimary -theme $dir/backlight.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -pkill rofi - -## Main -while true; do - ## Get Brightness - if [[ -f /usr/bin/blight ]]; then - DEVICE=$(ls /sys/class/backlight | head -n 1) - BNESS="$(blight -d $DEVICE get brightness)" - PERC="$(($BNESS*100/255))" - BLIGHT=${PERC%.*} - elif [[ -f /usr/bin/xbacklight ]]; then - VAR="$(xbacklight -get)" - BLIGHT="$(printf "%.0f\n" "$VAR")" - else - msg "No suitable backlight utility found!" - exit 1 - fi - - if [[ $BLIGHT -ge 1 ]] && [[ $BLIGHT -le 29 ]]; then - MSG="Low" - elif [[ $BLIGHT -ge 30 ]] && [[ $BLIGHT -le 49 ]]; then - MSG="Optimal" - elif [[ $BLIGHT -ge 50 ]] && [[ $BLIGHT -le 69 ]]; then - MSG="High" - elif [[ $BLIGHT -ge 70 ]] && [[ $BLIGHT -le 99 ]]; then - MSG="Too Much" - fi - - ## Icons - ICON_UP="" - ICON_DOWN="" - ICON_OPT="" - - notify="notify-send -u low -t 1500" - options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN" - - chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)" - case $chosen in - $ICON_UP) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -inc 10 && $notify "Brightness Up $ICON_UP" - fi - continue - ;; - $ICON_DOWN) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN" - fi - continue - ;; - $ICON_OPT) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT" - fi - continue - ;; - esac - break -done diff --git a/Common/rofi/applets/applets/battery.sh b/Common/rofi/applets/applets/battery.sh deleted file mode 100755 index 8a38ab4..0000000 --- a/Common/rofi/applets/applets/battery.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/battery.rasi" - -## Get data -BATTERY="$(acpi | awk -F ' ' '{print $4}' | tr -d \%,)" -CHARGE="$(acpi | awk -F ' ' '{print $3}' | tr -d \,)" - -active="" -urgent="" - -if [[ $CHARGE = *"Charging"* ]]; then - active="-a 1" - ICON_CHRG="" - MSG=$CHARGE -elif [[ $CHARGE = *"Full"* ]]; then - active="-u 1" - ICON_CHRG="" - MSG=$CHARGE -else - urgent="-u 1" - ICON_CHRG="" - MSG=$CHARGE -fi - -# Discharging -#if [[ $CHARGE -eq 1 ]] && [[ $BATTERY -eq 100 ]]; then -# ICON_DISCHRG="" -if [[ $BATTERY -ge 5 ]] && [[ $BATTERY -le 19 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 20 ]] && [[ $BATTERY -le 39 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 40 ]] && [[ $BATTERY -le 59 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 60 ]] && [[ $BATTERY -le 79 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 80 ]] && [[ $BATTERY -le 100 ]]; then - ICON_DISCHRG="" -fi - -## Icons -ICON_PMGR="" - -options="$ICON_DISCHRG\n$ICON_CHRG\n$ICON_PMGR" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$BATTERY%" -dmenu $active $urgent -selected-row 0)" -case $chosen in - $ICON_CHRG) - ;; - $ICON_DISCHRG) - ;; - $ICON_PMGR) - xfce4-power-manager-settings - ;; -esac - diff --git a/Common/rofi/applets/applets/configs/circle/apps.rasi b/Common/rofi/applets/applets/configs/circle/apps.rasi deleted file mode 100644 index 50c304c..0000000 --- a/Common/rofi/applets/applets/configs/circle/apps.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/backlight.rasi b/Common/rofi/applets/applets/configs/circle/backlight.rasi deleted file mode 100644 index f425394..0000000 --- a/Common/rofi/applets/applets/configs/circle/backlight.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/battery.rasi b/Common/rofi/applets/applets/configs/circle/battery.rasi deleted file mode 100644 index 613b3e8..0000000 --- a/Common/rofi/applets/applets/configs/circle/battery.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 260px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "Iosevka Nerd Font 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/mpd.rasi b/Common/rofi/applets/applets/configs/circle/mpd.rasi deleted file mode 100644 index c6d90f1..0000000 --- a/Common/rofi/applets/applets/configs/circle/mpd.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/network.rasi b/Common/rofi/applets/applets/configs/circle/network.rasi deleted file mode 100644 index 95ca4f6..0000000 --- a/Common/rofi/applets/applets/configs/circle/network.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 335px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/powermenu.rasi b/Common/rofi/applets/applets/configs/circle/powermenu.rasi deleted file mode 100644 index 3fb72bd..0000000 --- a/Common/rofi/applets/applets/configs/circle/powermenu.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 420px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/quicklinks.rasi b/Common/rofi/applets/applets/configs/circle/quicklinks.rasi deleted file mode 100644 index 3a68738..0000000 --- a/Common/rofi/applets/applets/configs/circle/quicklinks.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/screenshot.rasi b/Common/rofi/applets/applets/configs/circle/screenshot.rasi deleted file mode 100644 index d69f1af..0000000 --- a/Common/rofi/applets/applets/configs/circle/screenshot.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/time.rasi b/Common/rofi/applets/applets/configs/circle/time.rasi deleted file mode 100644 index 27ce99e..0000000 --- a/Common/rofi/applets/applets/configs/circle/time.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 450px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "Hurmit Nerd Font Mono 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 50px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/circle/volume.rasi b/Common/rofi/applets/applets/configs/circle/volume.rasi deleted file mode 100644 index 66cc4b9..0000000 --- a/Common/rofi/applets/applets/configs/circle/volume.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 40px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 25px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; - border-radius: 25px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 0px 2px 0px; - border-radius: 100%; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/apps.rasi b/Common/rofi/applets/applets/configs/rounded/apps.rasi deleted file mode 100644 index d76bfff..0000000 --- a/Common/rofi/applets/applets/configs/rounded/apps.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/backlight.rasi b/Common/rofi/applets/applets/configs/rounded/backlight.rasi deleted file mode 100644 index e898df8..0000000 --- a/Common/rofi/applets/applets/configs/rounded/backlight.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/battery.rasi b/Common/rofi/applets/applets/configs/rounded/battery.rasi deleted file mode 100644 index 8a5f409..0000000 --- a/Common/rofi/applets/applets/configs/rounded/battery.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "Iosevka Nerd Font 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/mpd.rasi b/Common/rofi/applets/applets/configs/rounded/mpd.rasi deleted file mode 100644 index f6dc27d..0000000 --- a/Common/rofi/applets/applets/configs/rounded/mpd.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/network.rasi b/Common/rofi/applets/applets/configs/rounded/network.rasi deleted file mode 100644 index b083893..0000000 --- a/Common/rofi/applets/applets/configs/rounded/network.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 335px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/powermenu.rasi b/Common/rofi/applets/applets/configs/rounded/powermenu.rasi deleted file mode 100644 index 1842292..0000000 --- a/Common/rofi/applets/applets/configs/rounded/powermenu.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 420px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/quicklinks.rasi b/Common/rofi/applets/applets/configs/rounded/quicklinks.rasi deleted file mode 100644 index 95da05d..0000000 --- a/Common/rofi/applets/applets/configs/rounded/quicklinks.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/screenshot.rasi b/Common/rofi/applets/applets/configs/rounded/screenshot.rasi deleted file mode 100644 index 308186d..0000000 --- a/Common/rofi/applets/applets/configs/rounded/screenshot.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/time.rasi b/Common/rofi/applets/applets/configs/rounded/time.rasi deleted file mode 100644 index d4241c0..0000000 --- a/Common/rofi/applets/applets/configs/rounded/time.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 450px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "Hurmit Nerd Font Mono 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 50px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/rounded/volume.rasi b/Common/rofi/applets/applets/configs/rounded/volume.rasi deleted file mode 100644 index 658fc15..0000000 --- a/Common/rofi/applets/applets/configs/rounded/volume.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 12px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 10px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 12px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 12px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 12px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @background-light; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/apps.rasi b/Common/rofi/applets/applets/configs/square/apps.rasi deleted file mode 100644 index ca4aaf9..0000000 --- a/Common/rofi/applets/applets/configs/square/apps.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/backlight.rasi b/Common/rofi/applets/applets/configs/square/backlight.rasi deleted file mode 100644 index 546cda9..0000000 --- a/Common/rofi/applets/applets/configs/square/backlight.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/battery.rasi b/Common/rofi/applets/applets/configs/square/battery.rasi deleted file mode 100644 index 0b3017c..0000000 --- a/Common/rofi/applets/applets/configs/square/battery.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "Iosevka Nerd Font 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/mpd.rasi b/Common/rofi/applets/applets/configs/square/mpd.rasi deleted file mode 100644 index 66658d7..0000000 --- a/Common/rofi/applets/applets/configs/square/mpd.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/network.rasi b/Common/rofi/applets/applets/configs/square/network.rasi deleted file mode 100644 index d30db77..0000000 --- a/Common/rofi/applets/applets/configs/square/network.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 350px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/powermenu.rasi b/Common/rofi/applets/applets/configs/square/powermenu.rasi deleted file mode 100644 index ed1a48f..0000000 --- a/Common/rofi/applets/applets/configs/square/powermenu.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 420px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/quicklinks.rasi b/Common/rofi/applets/applets/configs/square/quicklinks.rasi deleted file mode 100644 index 0817a17..0000000 --- a/Common/rofi/applets/applets/configs/square/quicklinks.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 500px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/screenshot.rasi b/Common/rofi/applets/applets/configs/square/screenshot.rasi deleted file mode 100644 index 85d5b4c..0000000 --- a/Common/rofi/applets/applets/configs/square/screenshot.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/time.rasi b/Common/rofi/applets/applets/configs/square/time.rasi deleted file mode 100644 index fd0836c..0000000 --- a/Common/rofi/applets/applets/configs/square/time.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 450px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "Hurmit Nerd Font Mono 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 50px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/configs/square/volume.rasi b/Common/rofi/applets/applets/configs/square/volume.rasi deleted file mode 100644 index 74eaaf6..0000000 --- a/Common/rofi/applets/applets/configs/square/volume.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 12"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: southeast; - width: 250px; - x-offset: -15px; - y-offset: -45px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 12px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 12px; - margin: 12px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 20"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 5px 10px 30px 10px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/applets/mpd.sh b/Common/rofi/applets/applets/mpd.sh deleted file mode 100755 index d1f3d2b..0000000 --- a/Common/rofi/applets/applets/mpd.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/mpd.rasi" - -# Gets the current status of mpd (for us to parse it later on) -status="$(mpc status)" -# Defines the Play / Pause option content -if [[ $status == *"[playing]"* ]]; then - play_pause="" -else - play_pause="" -fi -active="" -urgent="" - -# Display if repeat mode is on / off -tog_repeat="" -if [[ $status == *"repeat: on"* ]]; then - active="-a 4" -elif [[ $status == *"repeat: off"* ]]; then - urgent="-u 4" -else - tog_repeat=" Parsing error" -fi - -# Display if random mode is on / off -tog_random="" -if [[ $status == *"random: on"* ]]; then - [ -n "$active" ] && active+=",5" || active="-a 5" -elif [[ $status == *"random: off"* ]]; then - [ -n "$urgent" ] && urgent+=",5" || urgent="-u 5" -else - tog_random=" Parsing error" -fi -stop="" -next="" -previous="" - -# Variable passed to rofi -options="$previous\n$play_pause\n$stop\n$next\n$tog_repeat\n$tog_random" - -# Get the current playing song -current=$(mpc -f "%title%" current) -# If mpd isn't running it will return an empty string, we don't want to display that -if [[ -z "$current" ]]; then - current="-" -fi - -# Spawn the mpd menu with the "Play / Pause" entry selected by default -chosen="$(echo -e "$options" | $rofi_command -p " $current" -dmenu $active $urgent -selected-row 1)" -case $chosen in - $previous) - mpc -q prev && notify-send -u low -t 1800 " $(mpc current)" - ;; - $play_pause) - mpc -q toggle && notify-send -u low -t 1800 " $(mpc current)" - ;; - $stop) - mpc -q stop - ;; - $next) - mpc -q next && notify-send -u low -t 1800 " $(mpc current)" - ;; - $tog_repeat) - mpc -q repeat - ;; - $tog_random) - mpc -q random - ;; -esac diff --git a/Common/rofi/applets/applets/network.sh b/Common/rofi/applets/applets/network.sh deleted file mode 100755 index 260eddb..0000000 --- a/Common/rofi/applets/applets/network.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/network.rasi" - -## Get info -IFACE="$(nmcli | grep -i interface | awk '/interface/ {print $2}')" -#SSID="$(iwgetid -r)" -#LIP="$(nmcli | grep -i server | awk '/server/ {print $2}')" -#PIP="$(dig +short myip.opendns.com @resolver1.opendns.com )" -STATUS="$(nmcli radio wifi)" - -active="" -urgent="" - -if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then - if [[ $STATUS == *"enable"* ]]; then - if [[ $IFACE == e* ]]; then - connected="" - else - connected="" - fi - active="-a 0" - SSID=" $(iwgetid -r)" - PIP="$(wget --timeout=30 http://ipinfo.io/ip -qO -)" - fi -else - urgent="-u 0" - SSID="Disconnected" - PIP="Not Available" - connected="" -fi - -## Icons -bmon="" -launch_cli="" -launch="" - -options="$connected\n$bmon\n$launch_cli\n$launch" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$SSID" -dmenu $active $urgent -selected-row 1)" -case $chosen in - $connected) - if [[ $STATUS == *"enable"* ]]; then - nmcli radio wifi off - else - nmcli radio wifi on - fi - ;; - $bmon) - termite -e bmon - ;; - $launch_cli) - termite -e nmtui - ;; - $launch) - nm-connection-editor - ;; -esac - diff --git a/Common/rofi/applets/applets/powermenu.sh b/Common/rofi/applets/applets/powermenu.sh deleted file mode 100755 index 75d58c7..0000000 --- a/Common/rofi/applets/applets/powermenu.sh +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/powermenu.rasi" - -uptime=$(uptime -p | sed -e 's/up //g') -cpu=$(sh ~/.config/rofi/bin/usedcpu) -memory=$(sh ~/.config/rofi/bin/usedram) - -# Options -shutdown="" -reboot="" -lock="" -suspend="" -logout="" - -# Confirmation -confirm_exit() { - rofi -dmenu\ - -i\ - -no-fixed-num-lines\ - -p "Are You Sure? : "\ - -theme $HOME/.config/rofi/applets/styles/confirm.rasi -} - -# Message -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "Available Options - yes / y / no / n" -} - -# Variable passed to rofi -options="$shutdown\n$reboot\n$lock\n$suspend\n$logout" - -chosen="$(echo -e "$options" | $rofi_command -p "UP - $uptime" -dmenu -selected-row 2)" -case $chosen in - $shutdown) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl poweroff - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $reboot) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl reboot - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $lock) - if [[ -f /usr/bin/i3lock ]]; then - i3lock - elif [[ -f /usr/bin/betterlockscreen ]]; then - betterlockscreen -l - fi - ;; - $suspend) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - mpc -q pause - amixer set Master mute - systemctl suspend - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $logout) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then - openbox --exit - elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then - bspc quit - elif [[ "$DESKTOP_SESSION" == "i3" ]]; then - i3-msg exit - fi - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; -esac diff --git a/Common/rofi/applets/applets/quicklinks.sh b/Common/rofi/applets/applets/quicklinks.sh deleted file mode 100755 index e736b71..0000000 --- a/Common/rofi/applets/applets/quicklinks.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/quicklinks.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -# Browser -if [[ -f /usr/bin/firefox ]]; then - app="firefox" -elif [[ -f /usr/bin/chromium ]]; then - app="chromium" -elif [[ -f /usr/bin/midori ]]; then - app="midori" -else - msg "No suitable web browser found!" - exit 1 -fi - -# Links -google="" -facebook="" -twitter="" -github="" -mail="" -youtube="" - -# Variable passed to rofi -options="$google\n$facebook\n$twitter\n$github\n$mail\n$youtube" - -chosen="$(echo -e "$options" | $rofi_command -p "Open In : $app" -dmenu -selected-row 0)" -case $chosen in - $google) - $app https://www.google.com & - ;; - $facebook) - $app https://www.facebook.com & - ;; - $twitter) - $app https://www.twitter.com & - ;; - $github) - $app https://www.github.com & - ;; - $mail) - $app https://www.gmail.com & - ;; - $youtube) - $app https://www.youtube.com & - ;; -esac - diff --git a/Common/rofi/applets/applets/screenshot.sh b/Common/rofi/applets/applets/screenshot.sh deleted file mode 100755 index f614599..0000000 --- a/Common/rofi/applets/applets/screenshot.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/screenshot.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "Please install 'scrot' first." -} - -# Options -screen="" -area="" -window="" - -# Variable passed to rofi -options="$screen\n$area\n$window" - -chosen="$(echo -e "$options" | $rofi_command -p 'scrot' -dmenu -selected-row 1)" -case $chosen in - $screen) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $area) - if [[ -f /usr/bin/scrot ]]; then - scrot -s 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $window) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot -u 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; -esac - diff --git a/Common/rofi/applets/applets/style.sh b/Common/rofi/applets/applets/style.sh deleted file mode 100755 index 68b9668..0000000 --- a/Common/rofi/applets/applets/style.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# square circle rounded - -style="square" - -# uncomment these lines to enable random style -#styles=('square' 'circle' 'rounded') -#style="${styles[$(( $RANDOM % 3 ))]}" - -# print style name -echo "$style" diff --git a/Common/rofi/applets/applets/time.sh b/Common/rofi/applets/applets/time.sh deleted file mode 100755 index b8e7e8c..0000000 --- a/Common/rofi/applets/applets/time.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/time.rasi" - -## Get time and date -TIME="$(date +"%I:%M %p")" -DN=$(date +"%A") -MN=$(date +"%B") -DAY="$(date +"%d")" -MONTH="$(date +"%m")" -YEAR="$(date +"%Y")" - -options="$DAY\n$MONTH\n$YEAR" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p " $DN, $TIME" -dmenu -selected-row 1)" diff --git a/Common/rofi/applets/applets/volume.sh b/Common/rofi/applets/applets/volume.sh deleted file mode 100755 index 7be3242..0000000 --- a/Common/rofi/applets/applets/volume.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/applets/style.sh)" - -dir="$HOME/.config/rofi/applets/applets/configs/$style" -rofi_command="rofi -theme $dir/volume.rasi" - -## Get Volume -#VOLUME=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%') -MUTE=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $6}' | tr -d '[]%') - -active="" -urgent="" - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"on"* ]]; then - VOLUME="$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%')%" -else - VOLUME="Mute" -fi - -## Icons -ICON_UP="" -ICON_DOWN="" -ICON_MUTED="" - -options="$ICON_UP\n$ICON_MUTED\n$ICON_DOWN" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$VOLUME" -dmenu $active $urgent -selected-row 0)" -case $chosen in - $ICON_UP) - amixer -Mq set Master,0 5%+ unmute && notify-send -u low -t 1500 "Volume Up $ICON_UP" - ;; - $ICON_DOWN) - amixer -Mq set Master,0 5%- unmute && notify-send -u low -t 1500 "Volume Down $ICON_DOWN" - ;; - $ICON_MUTED) - amixer -q set Master toggle - ;; -esac - diff --git a/Common/rofi/applets/menu/apps.sh b/Common/rofi/applets/menu/apps.sh deleted file mode 100755 index b5dd989..0000000 --- a/Common/rofi/applets/menu/apps.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/apps.rasi" - -# Links -terminal="" -files="" -editor="" -browser="" -music="" -settings="" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -# Variable passed to rofi -options="$terminal\n$files\n$editor\n$browser\n$music\n$settings" - -chosen="$(echo -e "$options" | $rofi_command -p "Most Used" -dmenu -selected-row 0)" -case $chosen in - $terminal) - if [[ -f /usr/bin/termite ]]; then - termite & - elif [[ -f /usr/bin/urxvt ]]; then - urxvt & - elif [[ -f /usr/bin/kitty ]]; then - kitty & - elif [[ -f /usr/bin/xterm ]]; then - xterm & - elif [[ -f /usr/bin/xfce4-terminal ]]; then - xfce4-terminal & - elif [[ -f /usr/bin/gnome-terminal ]]; then - gnome-terminal & - else - msg "No suitable terminal found!" - fi - ;; - $files) - if [[ -f /usr/bin/thunar ]]; then - thunar & - elif [[ -f /usr/bin/pcmanfm ]]; then - pcmanfm & - else - msg "No suitable file manager found!" - fi - ;; - $editor) - if [[ -f /usr/bin/geany ]]; then - geany & - elif [[ -f /usr/bin/leafpad ]]; then - leafpad & - elif [[ -f /usr/bin/mousepad ]]; then - mousepad & - elif [[ -f /usr/bin/code ]]; then - code & - else - msg "No suitable text editor found!" - fi - ;; - $browser) - if [[ -f /usr/bin/firefox ]]; then - firefox & - elif [[ -f /usr/bin/chromium ]]; then - chromium & - elif [[ -f /usr/bin/midori ]]; then - midori & - else - msg "No suitable web browser found!" - fi - ;; - $music) - if [[ -f /usr/bin/lxmusic ]]; then - lxmusic & - else - msg "No suitable music player found!" - fi - ;; - $settings) - if [[ -f /usr/bin/xfce4-settings-manager ]]; then - xfce4-settings-manager & - else - msg "No suitable settings manager found!" - fi - ;; -esac diff --git a/Common/rofi/applets/menu/backlight.sh b/Common/rofi/applets/menu/backlight.sh deleted file mode 100755 index 144c76c..0000000 --- a/Common/rofi/applets/menu/backlight.sh +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/backlight.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -## Get Brightness -if [[ -f /usr/bin/blight ]]; then - DEVICE=$(ls /sys/class/backlight | head -n 1) - BNESS="$(blight -d $DEVICE get brightness)" - PERC="$(($BNESS*100/255))" - BLIGHT=${PERC%.*} -elif [[ -f /usr/bin/xbacklight ]]; then - VAR="$(xbacklight -get)" - BLIGHT="$(printf "%.0f\n" "$VAR")" -else - msg "No suitable backlight utility found!" - exit 1 -fi - -if [[ $BLIGHT -ge 1 ]] && [[ $BLIGHT -le 29 ]]; then - MSG="Low" -elif [[ $BLIGHT -ge 30 ]] && [[ $BLIGHT -le 49 ]]; then - MSG="Optimal" -elif [[ $BLIGHT -ge 50 ]] && [[ $BLIGHT -le 69 ]]; then - MSG="High" -elif [[ $BLIGHT -ge 70 ]] && [[ $BLIGHT -le 99 ]]; then - MSG="Too Much" -fi - -## Icons -ICON_UP="" -ICON_DOWN="" -ICON_OPT="" - -notify="notify-send -u low -t 1500" -options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT% : $MSG" -dmenu -selected-row 1)" -case $chosen in - $ICON_UP) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -inc 10 && $notify "Brightness Up $ICON_UP" - fi - ;; - $ICON_DOWN) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN" - fi - ;; - $ICON_OPT) - if [[ -f /usr/bin/blight ]]; then - blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT" - elif [[ -f /usr/bin/xbacklight ]]; then - xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT" - fi - ;; -esac - diff --git a/Common/rofi/applets/menu/battery.sh b/Common/rofi/applets/menu/battery.sh deleted file mode 100755 index c279794..0000000 --- a/Common/rofi/applets/menu/battery.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/battery.rasi" - -## Get data -BATTERY="$(acpi | awk -F ' ' '{print $4}' | tr -d \%,)" -CHARGE="$(acpi | awk -F ' ' '{print $3}' | tr -d \,)" - -active="" -urgent="" - -if [[ $CHARGE = *"Charging"* ]]; then - active="-a 1" - ICON_CHRG="" - MSG=$CHARGE -elif [[ $CHARGE = *"Full"* ]]; then - active="-u 1" - ICON_CHRG="" - MSG=$CHARGE -else - urgent="-u 1" - ICON_CHRG="" - MSG=$CHARGE -fi - -# Discharging -#if [[ $CHARGE -eq 1 ]] && [[ $BATTERY -eq 100 ]]; then -# ICON_DISCHRG="" -if [[ $BATTERY -ge 5 ]] && [[ $BATTERY -le 19 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 20 ]] && [[ $BATTERY -le 39 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 40 ]] && [[ $BATTERY -le 59 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 60 ]] && [[ $BATTERY -le 79 ]]; then - ICON_DISCHRG="" -elif [[ $BATTERY -ge 80 ]] && [[ $BATTERY -le 100 ]]; then - ICON_DISCHRG="" -fi - -## Icons -ICON_PMGR="" - -options="$ICON_DISCHRG\n$ICON_CHRG\n$ICON_PMGR" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$MSG : $BATTERY%" -dmenu $active $urgent -selected-row 0)" -case $chosen in - $ICON_CHRG) - ;; - $ICON_DISCHRG) - ;; - $ICON_PMGR) - xfce4-power-manager-settings - ;; -esac - diff --git a/Common/rofi/applets/menu/configs/circle/apps.rasi b/Common/rofi/applets/menu/configs/circle/apps.rasi deleted file mode 100644 index ba22543..0000000 --- a/Common/rofi/applets/menu/configs/circle/apps.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/backlight.rasi b/Common/rofi/applets/menu/configs/circle/backlight.rasi deleted file mode 100644 index 8387b32..0000000 --- a/Common/rofi/applets/menu/configs/circle/backlight.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/battery.rasi b/Common/rofi/applets/menu/configs/circle/battery.rasi deleted file mode 100644 index 8b4a0c2..0000000 --- a/Common/rofi/applets/menu/configs/circle/battery.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "Iosevka Nerd Font 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/mpd.rasi b/Common/rofi/applets/menu/configs/circle/mpd.rasi deleted file mode 100644 index b1c6716..0000000 --- a/Common/rofi/applets/menu/configs/circle/mpd.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/network.rasi b/Common/rofi/applets/menu/configs/circle/network.rasi deleted file mode 100644 index 49263b6..0000000 --- a/Common/rofi/applets/menu/configs/circle/network.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 650px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/powermenu.rasi b/Common/rofi/applets/menu/configs/circle/powermenu.rasi deleted file mode 100644 index 029f613..0000000 --- a/Common/rofi/applets/menu/configs/circle/powermenu.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 800px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/quicklinks.rasi b/Common/rofi/applets/menu/configs/circle/quicklinks.rasi deleted file mode 100644 index 64a58ba..0000000 --- a/Common/rofi/applets/menu/configs/circle/quicklinks.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/screenshot.rasi b/Common/rofi/applets/menu/configs/circle/screenshot.rasi deleted file mode 100644 index 790e927..0000000 --- a/Common/rofi/applets/menu/configs/circle/screenshot.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/time.rasi b/Common/rofi/applets/menu/configs/circle/time.rasi deleted file mode 100644 index 7dead61..0000000 --- a/Common/rofi/applets/menu/configs/circle/time.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 700px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "Hurmit Nerd Font Mono 48"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 90px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/circle/volume.rasi b/Common/rofi/applets/menu/configs/circle/volume.rasi deleted file mode 100644 index 59c9d46..0000000 --- a/Common/rofi/applets/menu/configs/circle/volume.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 100%; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 100%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 100%; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/apps.rasi b/Common/rofi/applets/menu/configs/rounded/apps.rasi deleted file mode 100644 index e8435de..0000000 --- a/Common/rofi/applets/menu/configs/rounded/apps.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/backlight.rasi b/Common/rofi/applets/menu/configs/rounded/backlight.rasi deleted file mode 100644 index ef6549f..0000000 --- a/Common/rofi/applets/menu/configs/rounded/backlight.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/battery.rasi b/Common/rofi/applets/menu/configs/rounded/battery.rasi deleted file mode 100644 index 85cb2db..0000000 --- a/Common/rofi/applets/menu/configs/rounded/battery.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "Iosevka Nerd Font 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/mpd.rasi b/Common/rofi/applets/menu/configs/rounded/mpd.rasi deleted file mode 100644 index 7a2063b..0000000 --- a/Common/rofi/applets/menu/configs/rounded/mpd.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/network.rasi b/Common/rofi/applets/menu/configs/rounded/network.rasi deleted file mode 100644 index ab1bc02..0000000 --- a/Common/rofi/applets/menu/configs/rounded/network.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 650px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/powermenu.rasi b/Common/rofi/applets/menu/configs/rounded/powermenu.rasi deleted file mode 100644 index 28910f0..0000000 --- a/Common/rofi/applets/menu/configs/rounded/powermenu.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 800px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/quicklinks.rasi b/Common/rofi/applets/menu/configs/rounded/quicklinks.rasi deleted file mode 100644 index e3f65d8..0000000 --- a/Common/rofi/applets/menu/configs/rounded/quicklinks.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/screenshot.rasi b/Common/rofi/applets/menu/configs/rounded/screenshot.rasi deleted file mode 100644 index e8efd03..0000000 --- a/Common/rofi/applets/menu/configs/rounded/screenshot.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/time.rasi b/Common/rofi/applets/menu/configs/rounded/time.rasi deleted file mode 100644 index a033820..0000000 --- a/Common/rofi/applets/menu/configs/rounded/time.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 700px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "Hurmit Nerd Font Mono 48"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 90px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/rounded/volume.rasi b/Common/rofi/applets/menu/configs/rounded/volume.rasi deleted file mode 100644 index fe1737c..0000000 --- a/Common/rofi/applets/menu/configs/rounded/volume.rasi +++ /dev/null @@ -1,127 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 20px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background; - text-color: @accent; - border: 0px 2px 0px 2px; - border-radius: 12px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 10px 10px 0px 10px; - border-radius: 12px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 15px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 20px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 20px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 20px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/apps.rasi b/Common/rofi/applets/menu/configs/square/apps.rasi deleted file mode 100644 index 4561d46..0000000 --- a/Common/rofi/applets/menu/configs/square/apps.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Apps "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/backlight.rasi b/Common/rofi/applets/menu/configs/square/backlight.rasi deleted file mode 100644 index 213446d..0000000 --- a/Common/rofi/applets/menu/configs/square/backlight.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Brightness "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/battery.rasi b/Common/rofi/applets/menu/configs/square/battery.rasi deleted file mode 100644 index ddfbc4f..0000000 --- a/Common/rofi/applets/menu/configs/square/battery.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Battery "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "Iosevka Nerd Font 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/mpd.rasi b/Common/rofi/applets/menu/configs/square/mpd.rasi deleted file mode 100644 index bbaa763..0000000 --- a/Common/rofi/applets/menu/configs/square/mpd.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 4px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " MPD "; - background-color: @accent; - text-color: @background; - padding: 14px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/network.rasi b/Common/rofi/applets/menu/configs/square/network.rasi deleted file mode 100644 index 3464a6f..0000000 --- a/Common/rofi/applets/menu/configs/square/network.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 650px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Network "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 4; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/powermenu.rasi b/Common/rofi/applets/menu/configs/square/powermenu.rasi deleted file mode 100644 index 958db5a..0000000 --- a/Common/rofi/applets/menu/configs/square/powermenu.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 800px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " System "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 5; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/quicklinks.rasi b/Common/rofi/applets/menu/configs/square/quicklinks.rasi deleted file mode 100644 index 0da3bff..0000000 --- a/Common/rofi/applets/menu/configs/square/quicklinks.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 950px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Quick Links "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 6; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/screenshot.rasi b/Common/rofi/applets/menu/configs/square/screenshot.rasi deleted file mode 100644 index a7b46d4..0000000 --- a/Common/rofi/applets/menu/configs/square/screenshot.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Screenshot "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/time.rasi b/Common/rofi/applets/menu/configs/square/time.rasi deleted file mode 100644 index 35ab8d5..0000000 --- a/Common/rofi/applets/menu/configs/square/time.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 700px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Time "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "Hurmit Nerd Font Mono 48"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 30px 0px 90px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/configs/square/volume.rasi b/Common/rofi/applets/menu/configs/square/volume.rasi deleted file mode 100644 index 1f8ab28..0000000 --- a/Common/rofi/applets/menu/configs/square/volume.rasi +++ /dev/null @@ -1,126 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Comfortaa 14"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "../../../styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; -} - -window { - transparency: "real"; - border-radius: 0px; - location: center; - width: 500px; - x-offset: 0px; - y-offset: 0px; -} - -prompt { - enabled: true; - padding: 10px; - background-color: @background-light; - text-color: @accent; - border: 2px 2px 2px 2px; - border-radius: 0px; - border-color: @accent; -} - -textbox-prompt-colon { - expand: false; - str: " Volume "; - background-color: @accent; - text-color: @background; - padding: 12px 10px 0px 10px; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - spacing: 0px; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0px; - border-radius: 0px; - border-color: @accent; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -listview { - columns: 3; - lines: 1; - spacing: 15px; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 15px; - margin: 40px; -} - -element { - background-color: @background-light; - text-color: @foreground; - orientation: vertical; - border-radius: 0px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0; - margin: 25px 0px 65px 0px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @off; - text-color: @background; - border-radius: 0px; -} - -element normal.active, -element alternate.active { - background-color: @on; - text-color: @background; -} - -element selected { - background-color: @accent; - text-color: @background; - border: 0px; - border-radius: 0px; - border-color: @border; -} - -element selected.urgent { - background-color: @on; - text-color: @background; -} - -element selected.active { - background-color: @off; - color: @background; -} diff --git a/Common/rofi/applets/menu/mpd.sh b/Common/rofi/applets/menu/mpd.sh deleted file mode 100755 index 3eb5498..0000000 --- a/Common/rofi/applets/menu/mpd.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/mpd.rasi" - -# Gets the current status of mpd (for us to parse it later on) -status="$(mpc status)" -# Defines the Play / Pause option content -if [[ $status == *"[playing]"* ]]; then - play_pause="" -else - play_pause="" -fi -active="" -urgent="" - -# Display if repeat mode is on / off -tog_repeat="" -if [[ $status == *"repeat: on"* ]]; then - active="-a 4" -elif [[ $status == *"repeat: off"* ]]; then - urgent="-u 4" -else - tog_repeat=" Parsing error" -fi - -# Display if random mode is on / off -tog_random="" -if [[ $status == *"random: on"* ]]; then - [ -n "$active" ] && active+=",5" || active="-a 5" -elif [[ $status == *"random: off"* ]]; then - [ -n "$urgent" ] && urgent+=",5" || urgent="-u 5" -else - tog_random=" Parsing error" -fi -stop="" -next="" -previous="" - -# Variable passed to rofi -options="$previous\n$play_pause\n$stop\n$next\n$tog_repeat\n$tog_random" - -# Get the current playing song -current=$(mpc -f "%artist% - %title%" current) -# If mpd isn't running it will return an empty string, we don't want to display that -if [[ -z "$current" ]]; then - current="-" -fi - -# Spawn the mpd menu with the "Play / Pause" entry selected by default -chosen="$(echo -e "$options" | $rofi_command -p " $current" -dmenu $active $urgent -selected-row 1)" -case $chosen in - $previous) - mpc -q prev && notify-send -u low -t 1800 " $(mpc current)" - ;; - $play_pause) - mpc -q toggle && notify-send -u low -t 1800 " $(mpc current)" - ;; - $stop) - mpc -q stop - ;; - $next) - mpc -q next && notify-send -u low -t 1800 " $(mpc current)" - ;; - $tog_repeat) - mpc -q repeat - ;; - $tog_random) - mpc -q random - ;; -esac diff --git a/Common/rofi/applets/menu/network.sh b/Common/rofi/applets/menu/network.sh deleted file mode 100755 index 80c270f..0000000 --- a/Common/rofi/applets/menu/network.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/network.rasi" - -## Get info -IFACE="$(nmcli | grep -i interface | awk '/interface/ {print $2}')" -#SSID="$(iwgetid -r)" -#LIP="$(nmcli | grep -i server | awk '/server/ {print $2}')" -#PIP="$(dig +short myip.opendns.com @resolver1.opendns.com )" -STATUS="$(nmcli radio wifi)" - -active="" -urgent="" - -if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then - if [[ $STATUS == *"enable"* ]]; then - if [[ $IFACE == e* ]]; then - connected="" - else - connected="" - fi - active="-a 0" - SSID=" $(iwgetid -r)" - PIP="$(wget --timeout=30 http://ipinfo.io/ip -qO -)" - fi -else - urgent="-u 0" - SSID="Disconnected" - PIP="Not Available" - connected="" -fi - -## Icons -bmon="" -launch_cli="" -launch="" - -options="$connected\n$bmon\n$launch_cli\n$launch" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$SSID : $PIP" -dmenu $active $urgent -selected-row 1)" -case $chosen in - $connected) - if [[ $STATUS == *"enable"* ]]; then - nmcli radio wifi off - else - nmcli radio wifi on - fi - ;; - $bmon) - urxvt -e bmon - ;; - $launch_cli) - urxvt -e nmtui - ;; - $launch) - nm-connection-editor - ;; -esac - diff --git a/Common/rofi/applets/menu/powermenu.sh b/Common/rofi/applets/menu/powermenu.sh deleted file mode 100755 index 9755d64..0000000 --- a/Common/rofi/applets/menu/powermenu.sh +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/powermenu.rasi" - -uptime=$(uptime -p | sed -e 's/up //g') -cpu=$(sh ~/.config/rofi/bin/usedcpu) -memory=$(sh ~/.config/rofi/bin/usedram) - -# Options -shutdown="" -reboot="" -lock="" -suspend="" -logout="" - -# Confirmation -confirm_exit() { - rofi -dmenu\ - -i\ - -no-fixed-num-lines\ - -p "Are You Sure? : "\ - -theme $HOME/.config/rofi/applets/styles/confirm.rasi -} - -# Message -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "Available Options - yes / y / no / n" -} - -# Variable passed to rofi -options="$shutdown\n$reboot\n$lock\n$suspend\n$logout" - -chosen="$(echo -e "$options" | $rofi_command -p "祥 $uptime | $cpu | $memory " -dmenu -selected-row 2)" -case $chosen in - $shutdown) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl poweroff - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $reboot) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl reboot - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $lock) - if [[ -f /usr/bin/i3lock ]]; then - i3lock - elif [[ -f /usr/bin/betterlockscreen ]]; then - betterlockscreen -l - fi - ;; - $suspend) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - mpc -q pause - amixer set Master mute - systemctl suspend - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $logout) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then - openbox --exit - elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then - bspc quit - elif [[ "$DESKTOP_SESSION" == "i3" ]]; then - i3-msg exit - fi - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; -esac diff --git a/Common/rofi/applets/menu/quicklinks.sh b/Common/rofi/applets/menu/quicklinks.sh deleted file mode 100755 index c2f0495..0000000 --- a/Common/rofi/applets/menu/quicklinks.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/quicklinks.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "$1" -} - -# Browser -if [[ -f /usr/bin/firefox ]]; then - app="firefox" -elif [[ -f /usr/bin/chromium ]]; then - app="chromium" -elif [[ -f /usr/bin/midori ]]; then - app="midori" -else - msg "No suitable web browser found!" - exit 1 -fi - -# Links -google="" -facebook="" -twitter="" -github="" -mail="" -youtube="" - -# Variable passed to rofi -options="$google\n$facebook\n$twitter\n$github\n$mail\n$youtube" - -chosen="$(echo -e "$options" | $rofi_command -p "Open In : $app" -dmenu -selected-row 0)" -case $chosen in - $google) - $app https://www.google.com & - ;; - $facebook) - $app https://www.facebook.com & - ;; - $twitter) - $app https://www.twitter.com & - ;; - $github) - $app https://www.github.com & - ;; - $mail) - $app https://www.gmail.com & - ;; - $youtube) - $app https://www.youtube.com & - ;; -esac - diff --git a/Common/rofi/applets/menu/screenshot.sh b/Common/rofi/applets/menu/screenshot.sh deleted file mode 100755 index 24c5e1b..0000000 --- a/Common/rofi/applets/menu/screenshot.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/screenshot.rasi" - -# Error msg -msg() { - rofi -theme "$HOME/.config/rofi/applets/styles/message.rasi" -e "Please install 'scrot' first." -} - -# Options -screen="" -area="" -window="" - -# Variable passed to rofi -options="$screen\n$area\n$window" - -chosen="$(echo -e "$options" | $rofi_command -p 'App : scrot' -dmenu -selected-row 1)" -case $chosen in - $screen) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $area) - if [[ -f /usr/bin/scrot ]]; then - scrot -s 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; - $window) - if [[ -f /usr/bin/scrot ]]; then - sleep 1; scrot -u 'Screenshot_%Y-%m-%d-%S_$wx$h.png' -e 'mv $f $$(xdg-user-dir PICTURES) ; viewnior $$(xdg-user-dir PICTURES)/$f' - else - msg - fi - ;; -esac - diff --git a/Common/rofi/applets/menu/style.sh b/Common/rofi/applets/menu/style.sh deleted file mode 100755 index 68b9668..0000000 --- a/Common/rofi/applets/menu/style.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# square circle rounded - -style="square" - -# uncomment these lines to enable random style -#styles=('square' 'circle' 'rounded') -#style="${styles[$(( $RANDOM % 3 ))]}" - -# print style name -echo "$style" diff --git a/Common/rofi/applets/menu/time.sh b/Common/rofi/applets/menu/time.sh deleted file mode 100755 index 4432676..0000000 --- a/Common/rofi/applets/menu/time.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/time.rasi" - -## Get time and date -TIME="$(date +"%I:%M %p")" -DN=$(date +"%A") -MN=$(date +"%B") -DAY="$(date +"%d")" -MONTH="$(date +"%m")" -YEAR="$(date +"%Y")" - -options="$DAY\n$MONTH\n$YEAR" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p " at $TIME on $DN in $MN" -dmenu -selected-row 1)" diff --git a/Common/rofi/applets/menu/volume.sh b/Common/rofi/applets/menu/volume.sh deleted file mode 100755 index 7e4a0d8..0000000 --- a/Common/rofi/applets/menu/volume.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -style="$($HOME/.config/rofi/applets/menu/style.sh)" - -dir="$HOME/.config/rofi/applets/menu/configs/$style" -rofi_command="rofi -theme $dir/volume.rasi" - -## Get Volume -#VOLUME=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%') -MUTE=$(amixer get Master | tail -n 1 | awk -F ' ' '{print $6}' | tr -d '[]%') - -active="" -urgent="" - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"off"* ]]; then - active="-a 1" -else - urgent="-u 1" -fi - -if [[ $MUTE == *"on"* ]]; then - VOLUME="$(amixer get Master | tail -n 1 | awk -F ' ' '{print $5}' | tr -d '[]%')%" -else - VOLUME="Mute" -fi - -## Icons -ICON_UP="" -ICON_DOWN="" -ICON_MUTED="" - -options="$ICON_UP\n$ICON_MUTED\n$ICON_DOWN" - -## Main -chosen="$(echo -e "$options" | $rofi_command -p "$VOLUME" -dmenu $active $urgent -selected-row 0)" -case $chosen in - $ICON_UP) - amixer -Mq set Master,0 5%+ unmute && notify-send -u low -t 1500 "Volume Up $ICON_UP" - ;; - $ICON_DOWN) - amixer -Mq set Master,0 5%- unmute && notify-send -u low -t 1500 "Volume Down $ICON_DOWN" - ;; - $ICON_MUTED) - amixer -q set Master toggle - ;; -esac - diff --git a/Common/rofi/applets/styles/adapta-nokto.rasi b/Common/rofi/applets/styles/adapta-nokto.rasi deleted file mode 100644 index 3c4ef95..0000000 --- a/Common/rofi/applets/styles/adapta-nokto.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #00BCD4; - background: #263238; - background-light: #293840; - foreground: #E7E8EB; - on: #44ad4d; - off: #e34039; -} diff --git a/Common/rofi/applets/styles/adapta.rasi b/Common/rofi/applets/styles/adapta.rasi deleted file mode 100644 index c1c9999..0000000 --- a/Common/rofi/applets/styles/adapta.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #00ADC2; - background: #FFFFFF; - background-light: #E7E7E7; - foreground: #535353; - on: #44ad4d; - off: #e34039; -} diff --git a/Common/rofi/applets/styles/adwaita.rasi b/Common/rofi/applets/styles/adwaita.rasi deleted file mode 100644 index 81cd482..0000000 --- a/Common/rofi/applets/styles/adwaita.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #2E6BB6; - background: #2D2D2D; - background-light: #353535; - foreground: #E7E8EB; - on: #44ad4d; - off: #e34039; -} diff --git a/Common/rofi/applets/styles/arc-dark.rasi b/Common/rofi/applets/styles/arc-dark.rasi deleted file mode 100644 index 41f775f..0000000 --- a/Common/rofi/applets/styles/arc-dark.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #6BA0DE; - background: #383C4A; - background-light: #404552; - foreground: #E4E4E4; - on: #44ad4d; - off: #e34039; -} diff --git a/Common/rofi/applets/styles/arc.rasi b/Common/rofi/applets/styles/arc.rasi deleted file mode 100644 index a5c211b..0000000 --- a/Common/rofi/applets/styles/arc.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #5294E2; - background: #FFFFFF; - background-light: #E7E8EB; - foreground: #333333; - on: #44ad4d; - off: #e34039; -} diff --git a/Common/rofi/applets/styles/armchair.rasi b/Common/rofi/applets/styles/armchair.rasi deleted file mode 100644 index 93a9e2f..0000000 --- a/Common/rofi/applets/styles/armchair.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #E85A50; - background: #EAE8DC; - background-light: #E4D9C8; - foreground: #8E8D89; - on: #66bb6a; - off: #F68887; -} diff --git a/Common/rofi/applets/styles/colors.rasi b/Common/rofi/applets/styles/colors.rasi deleted file mode 100644 index f9043a3..0000000 --- a/Common/rofi/applets/styles/colors.rasi +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * // Dark - * material-dark/amber material-dark/blue material-dark/blue_grey material-dark/brown material-dark/cyan material-dark/deep_orange - * material-dark/deep_purple material-dark/green material-dark/grey material-dark/indigo material-dark/light_blue material-dark/light_green - * material-dark/lime material-dark/orange material-dark/pink material-dark/purple material-dark/red material-dark/teal - * material-dark/yellow - * // Light - * material-light/amber material-light/blue material-light/blue_grey material-light/brown material-light/cyan material-light/deep_orange - * material-light/deep_purple material-light/green material-light/grey material-light/indigo material-light/light_blue material-light/light_green - * material-light/lime material-light/orange material-light/pink material-light/purple material-light/red material-light/teal - * material-light/yellow - * - * // Other - * adapta, adapta-nokto, arc, arc-dark, adwaita, gruvbox, dark - * armchair, darkpink, fresh, inside, party, sirin - * - */ - -@import "dark.rasi" diff --git a/Common/rofi/applets/styles/confirm.rasi b/Common/rofi/applets/styles/confirm.rasi deleted file mode 100644 index 79a4be2..0000000 --- a/Common/rofi/applets/styles/confirm.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Confirm Dialog */ - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "Comfortaa 12"; -} - -window { - width: 225px; - padding: 25px; - border: 0px; - border-radius: 0px; - border-color: @accent; - location: center; - y-offset: -20px; -} - -entry { - expand: true; - text-color: @accent; -} diff --git a/Common/rofi/applets/styles/dark.rasi b/Common/rofi/applets/styles/dark.rasi deleted file mode 100644 index 162207b..0000000 --- a/Common/rofi/applets/styles/dark.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #A9C03F; - background: #141c21; - background-light: #1C252A; - foreground: #93a1a1; - on: #5BB462; - off: #DE635E; -} diff --git a/Common/rofi/applets/styles/darkpink.rasi b/Common/rofi/applets/styles/darkpink.rasi deleted file mode 100644 index 3bae851..0000000 --- a/Common/rofi/applets/styles/darkpink.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #F75176; - background: #414656; - background-light: #4B5060; - foreground: #F2F7E3; - on: #CDF0D9; - off: #FF796A; -} diff --git a/Common/rofi/applets/styles/fresh.rasi b/Common/rofi/applets/styles/fresh.rasi deleted file mode 100644 index a19ceb1..0000000 --- a/Common/rofi/applets/styles/fresh.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #043968; - background: #5CDB94; - background-light: #59C78A; - foreground: #303030; - on: #2e7d32; - off: #d32f2f; -} diff --git a/Common/rofi/applets/styles/gruvbox.rasi b/Common/rofi/applets/styles/gruvbox.rasi deleted file mode 100644 index 9f686f0..0000000 --- a/Common/rofi/applets/styles/gruvbox.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #83a598; - background: #282828; - background-light: #303030; - foreground: #ebdbb2; - on: #44ad4d; - off: #fb4934; -} diff --git a/Common/rofi/applets/styles/inside.rasi b/Common/rofi/applets/styles/inside.rasi deleted file mode 100644 index 8436894..0000000 --- a/Common/rofi/applets/styles/inside.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #C7493A; - background: #151515; - background-light: #202020; - foreground: #AD8174; - on: #689775; - off: #A33327; -} diff --git a/Common/rofi/applets/styles/material-dark/amber.rasi b/Common/rofi/applets/styles/material-dark/amber.rasi deleted file mode 100644 index 14cbfcd..0000000 --- a/Common/rofi/applets/styles/material-dark/amber.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ffc107; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/blue.rasi b/Common/rofi/applets/styles/material-dark/blue.rasi deleted file mode 100644 index 821e449..0000000 --- a/Common/rofi/applets/styles/material-dark/blue.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #1e88e5; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/blue_grey.rasi b/Common/rofi/applets/styles/material-dark/blue_grey.rasi deleted file mode 100644 index d810c0d..0000000 --- a/Common/rofi/applets/styles/material-dark/blue_grey.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #607d8b; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/brown.rasi b/Common/rofi/applets/styles/material-dark/brown.rasi deleted file mode 100644 index edf7633..0000000 --- a/Common/rofi/applets/styles/material-dark/brown.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #8d6e63; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/cyan.rasi b/Common/rofi/applets/styles/material-dark/cyan.rasi deleted file mode 100644 index 8de289c..0000000 --- a/Common/rofi/applets/styles/material-dark/cyan.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #26c6da; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/deep_orange.rasi b/Common/rofi/applets/styles/material-dark/deep_orange.rasi deleted file mode 100644 index 6c061b3..0000000 --- a/Common/rofi/applets/styles/material-dark/deep_orange.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ff5722; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/deep_purple.rasi b/Common/rofi/applets/styles/material-dark/deep_purple.rasi deleted file mode 100644 index d30571e..0000000 --- a/Common/rofi/applets/styles/material-dark/deep_purple.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #7e57c2; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/green.rasi b/Common/rofi/applets/styles/material-dark/green.rasi deleted file mode 100644 index 674280b..0000000 --- a/Common/rofi/applets/styles/material-dark/green.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #4caf50; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #a5d6a7; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/grey.rasi b/Common/rofi/applets/styles/material-dark/grey.rasi deleted file mode 100644 index 6c5e57c..0000000 --- a/Common/rofi/applets/styles/material-dark/grey.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #9e9e9e; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/indigo.rasi b/Common/rofi/applets/styles/material-dark/indigo.rasi deleted file mode 100644 index 8f89719..0000000 --- a/Common/rofi/applets/styles/material-dark/indigo.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #5c6bc0; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/light_blue.rasi b/Common/rofi/applets/styles/material-dark/light_blue.rasi deleted file mode 100644 index d3f4e1b..0000000 --- a/Common/rofi/applets/styles/material-dark/light_blue.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #039be5; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/light_green.rasi b/Common/rofi/applets/styles/material-dark/light_green.rasi deleted file mode 100644 index 5afdf7a..0000000 --- a/Common/rofi/applets/styles/material-dark/light_green.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #8bc34a; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #4caf50; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/lime.rasi b/Common/rofi/applets/styles/material-dark/lime.rasi deleted file mode 100644 index c32550e..0000000 --- a/Common/rofi/applets/styles/material-dark/lime.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #cddc39; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/orange.rasi b/Common/rofi/applets/styles/material-dark/orange.rasi deleted file mode 100644 index 2f26952..0000000 --- a/Common/rofi/applets/styles/material-dark/orange.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ff9800; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/pink.rasi b/Common/rofi/applets/styles/material-dark/pink.rasi deleted file mode 100644 index ef7a0af..0000000 --- a/Common/rofi/applets/styles/material-dark/pink.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ec407a; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/purple.rasi b/Common/rofi/applets/styles/material-dark/purple.rasi deleted file mode 100644 index a1dd6d4..0000000 --- a/Common/rofi/applets/styles/material-dark/purple.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ab47bc; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/red.rasi b/Common/rofi/applets/styles/material-dark/red.rasi deleted file mode 100644 index f5d3862..0000000 --- a/Common/rofi/applets/styles/material-dark/red.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ef5350; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef9a9a; -} diff --git a/Common/rofi/applets/styles/material-dark/teal.rasi b/Common/rofi/applets/styles/material-dark/teal.rasi deleted file mode 100644 index e6cdb73..0000000 --- a/Common/rofi/applets/styles/material-dark/teal.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #009688; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-dark/yellow.rasi b/Common/rofi/applets/styles/material-dark/yellow.rasi deleted file mode 100644 index d2788b0..0000000 --- a/Common/rofi/applets/styles/material-dark/yellow.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ffeb3b; - background: #212121; - background-light: #272727; - foreground: #bdbdbd; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/amber.rasi b/Common/rofi/applets/styles/material-light/amber.rasi deleted file mode 100644 index c02ae2a..0000000 --- a/Common/rofi/applets/styles/material-light/amber.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ff8f00; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/blue.rasi b/Common/rofi/applets/styles/material-light/blue.rasi deleted file mode 100644 index 780663e..0000000 --- a/Common/rofi/applets/styles/material-light/blue.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #1565c0; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/blue_grey.rasi b/Common/rofi/applets/styles/material-light/blue_grey.rasi deleted file mode 100644 index 8e15a53..0000000 --- a/Common/rofi/applets/styles/material-light/blue_grey.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #607d8b; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/brown.rasi b/Common/rofi/applets/styles/material-light/brown.rasi deleted file mode 100644 index 3f7d39f..0000000 --- a/Common/rofi/applets/styles/material-light/brown.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #795548; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/cyan.rasi b/Common/rofi/applets/styles/material-light/cyan.rasi deleted file mode 100644 index d879af0..0000000 --- a/Common/rofi/applets/styles/material-light/cyan.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #00acc1; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/deep_orange.rasi b/Common/rofi/applets/styles/material-light/deep_orange.rasi deleted file mode 100644 index 23f5815..0000000 --- a/Common/rofi/applets/styles/material-light/deep_orange.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #f4511e; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/deep_purple.rasi b/Common/rofi/applets/styles/material-light/deep_purple.rasi deleted file mode 100644 index cc5ec7d..0000000 --- a/Common/rofi/applets/styles/material-light/deep_purple.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #5e35b1; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/green.rasi b/Common/rofi/applets/styles/material-light/green.rasi deleted file mode 100644 index f476e01..0000000 --- a/Common/rofi/applets/styles/material-light/green.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #43a047; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/grey.rasi b/Common/rofi/applets/styles/material-light/grey.rasi deleted file mode 100644 index 6936929..0000000 --- a/Common/rofi/applets/styles/material-light/grey.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #555555; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/indigo.rasi b/Common/rofi/applets/styles/material-light/indigo.rasi deleted file mode 100644 index f0508c3..0000000 --- a/Common/rofi/applets/styles/material-light/indigo.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #3949ab; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/light_blue.rasi b/Common/rofi/applets/styles/material-light/light_blue.rasi deleted file mode 100644 index a0db87a..0000000 --- a/Common/rofi/applets/styles/material-light/light_blue.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #039be5; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/light_green.rasi b/Common/rofi/applets/styles/material-light/light_green.rasi deleted file mode 100644 index 0e33cef..0000000 --- a/Common/rofi/applets/styles/material-light/light_green.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #558b2f; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/lime.rasi b/Common/rofi/applets/styles/material-light/lime.rasi deleted file mode 100644 index 044eb62..0000000 --- a/Common/rofi/applets/styles/material-light/lime.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #afb42b; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/orange.rasi b/Common/rofi/applets/styles/material-light/orange.rasi deleted file mode 100644 index 072c9e2..0000000 --- a/Common/rofi/applets/styles/material-light/orange.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #ef6c00; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/pink.rasi b/Common/rofi/applets/styles/material-light/pink.rasi deleted file mode 100644 index e17d94d..0000000 --- a/Common/rofi/applets/styles/material-light/pink.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #d81b60; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/purple.rasi b/Common/rofi/applets/styles/material-light/purple.rasi deleted file mode 100644 index fa95bb9..0000000 --- a/Common/rofi/applets/styles/material-light/purple.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #8e24aa; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/red.rasi b/Common/rofi/applets/styles/material-light/red.rasi deleted file mode 100644 index d3ebcc0..0000000 --- a/Common/rofi/applets/styles/material-light/red.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #d32f2f; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/teal.rasi b/Common/rofi/applets/styles/material-light/teal.rasi deleted file mode 100644 index b137892..0000000 --- a/Common/rofi/applets/styles/material-light/teal.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #00796b; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/material-light/yellow.rasi b/Common/rofi/applets/styles/material-light/yellow.rasi deleted file mode 100644 index 8f68244..0000000 --- a/Common/rofi/applets/styles/material-light/yellow.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #f9a825; - background: #f5f5f5; - background-light: #e0e0e0; - foreground: #424242; - on: #66bb6a; - off: #ef5350; -} diff --git a/Common/rofi/applets/styles/message.rasi b/Common/rofi/applets/styles/message.rasi deleted file mode 100644 index 69d5b07..0000000 --- a/Common/rofi/applets/styles/message.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Confirm Dialog */ - -@import "colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "Comfortaa 12"; -} - -window { - width: 360px; - padding: 25px; - border: 0px; - border-radius: 0px; - border-color: @accent; - location: center; - y-offset: -20px; -} - -entry { - expand: true; - text-color: @accent; -} diff --git a/Common/rofi/applets/styles/minimo.rasi b/Common/rofi/applets/styles/minimo.rasi deleted file mode 100644 index b6fa284..0000000 --- a/Common/rofi/applets/styles/minimo.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #656565; - background: #C6C6C4; - background-light: #FFFFFF; - foreground: #909090; - on: #226827; - off: #682226; -} diff --git a/Common/rofi/applets/styles/party.rasi b/Common/rofi/applets/styles/party.rasi deleted file mode 100644 index d8ea9af..0000000 --- a/Common/rofi/applets/styles/party.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #FFE401; - background: #272727; - background-light: #323232; - foreground: #747474; - on: #13A76B; - off: #FF652F; -} diff --git a/Common/rofi/applets/styles/sirin.rasi b/Common/rofi/applets/styles/sirin.rasi deleted file mode 100644 index 302cbce..0000000 --- a/Common/rofi/applets/styles/sirin.rasi +++ /dev/null @@ -1,8 +0,0 @@ -* { - accent: #106466; - background: #FFCB9B; - background-light: #D8B08C; - foreground: #2C3532; - on: #43a047; - off: #ef5350; -} diff --git a/Common/rofi/bin/android_apps b/Common/rofi/bin/android_apps deleted file mode 120000 index 7b11b66..0000000 --- a/Common/rofi/bin/android_apps +++ /dev/null @@ -1 +0,0 @@ -../applets/android/apps.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_backlight b/Common/rofi/bin/android_backlight deleted file mode 120000 index 9de32b8..0000000 --- a/Common/rofi/bin/android_backlight +++ /dev/null @@ -1 +0,0 @@ -../applets/android/backlight.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_mpd b/Common/rofi/bin/android_mpd deleted file mode 120000 index 1f16126..0000000 --- a/Common/rofi/bin/android_mpd +++ /dev/null @@ -1 +0,0 @@ -../applets/android/mpd.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_powermenu b/Common/rofi/bin/android_powermenu deleted file mode 120000 index 7d66a76..0000000 --- a/Common/rofi/bin/android_powermenu +++ /dev/null @@ -1 +0,0 @@ -../applets/android/powermenu.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_quicklinks b/Common/rofi/bin/android_quicklinks deleted file mode 120000 index 7d44c74..0000000 --- a/Common/rofi/bin/android_quicklinks +++ /dev/null @@ -1 +0,0 @@ -../applets/android/quicklinks.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_screenshot b/Common/rofi/bin/android_screenshot deleted file mode 120000 index 1bd8694..0000000 --- a/Common/rofi/bin/android_screenshot +++ /dev/null @@ -1 +0,0 @@ -../applets/android/screenshot.sh
\ No newline at end of file diff --git a/Common/rofi/bin/android_volume b/Common/rofi/bin/android_volume deleted file mode 120000 index 33bcea2..0000000 --- a/Common/rofi/bin/android_volume +++ /dev/null @@ -1 +0,0 @@ -../applets/android/volume.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_apps b/Common/rofi/bin/applet_apps deleted file mode 120000 index 0cbf8f8..0000000 --- a/Common/rofi/bin/applet_apps +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/apps.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_backlight b/Common/rofi/bin/applet_backlight deleted file mode 120000 index 0663ec3..0000000 --- a/Common/rofi/bin/applet_backlight +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/backlight.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_battery b/Common/rofi/bin/applet_battery deleted file mode 120000 index 4b660cb..0000000 --- a/Common/rofi/bin/applet_battery +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/battery.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_mpd b/Common/rofi/bin/applet_mpd deleted file mode 120000 index 2a55e5f..0000000 --- a/Common/rofi/bin/applet_mpd +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/mpd.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_network b/Common/rofi/bin/applet_network deleted file mode 120000 index cecf37c..0000000 --- a/Common/rofi/bin/applet_network +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/network.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_powermenu b/Common/rofi/bin/applet_powermenu deleted file mode 120000 index 0a0635d..0000000 --- a/Common/rofi/bin/applet_powermenu +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/powermenu.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_quicklinks b/Common/rofi/bin/applet_quicklinks deleted file mode 120000 index 319e0b2..0000000 --- a/Common/rofi/bin/applet_quicklinks +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/quicklinks.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_screenshot b/Common/rofi/bin/applet_screenshot deleted file mode 120000 index 3107901..0000000 --- a/Common/rofi/bin/applet_screenshot +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/screenshot.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_time b/Common/rofi/bin/applet_time deleted file mode 120000 index 0565f05..0000000 --- a/Common/rofi/bin/applet_time +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/time.sh
\ No newline at end of file diff --git a/Common/rofi/bin/applet_volume b/Common/rofi/bin/applet_volume deleted file mode 120000 index 493275a..0000000 --- a/Common/rofi/bin/applet_volume +++ /dev/null @@ -1 +0,0 @@ -../applets/applets/volume.sh
\ No newline at end of file diff --git a/Common/rofi/bin/launcher_colorful b/Common/rofi/bin/launcher_colorful deleted file mode 120000 index 8e48b54..0000000 --- a/Common/rofi/bin/launcher_colorful +++ /dev/null @@ -1 +0,0 @@ -../launchers/colorful/launcher.sh
\ No newline at end of file diff --git a/Common/rofi/bin/launcher_misc b/Common/rofi/bin/launcher_misc deleted file mode 120000 index ff3f68f..0000000 --- a/Common/rofi/bin/launcher_misc +++ /dev/null @@ -1 +0,0 @@ -../launchers/misc/launcher.sh
\ No newline at end of file diff --git a/Common/rofi/bin/launcher_ribbon b/Common/rofi/bin/launcher_ribbon deleted file mode 120000 index 925a1a8..0000000 --- a/Common/rofi/bin/launcher_ribbon +++ /dev/null @@ -1 +0,0 @@ -../launchers/ribbon/launcher.sh
\ No newline at end of file diff --git a/Common/rofi/bin/launcher_slate b/Common/rofi/bin/launcher_slate deleted file mode 120000 index d409300..0000000 --- a/Common/rofi/bin/launcher_slate +++ /dev/null @@ -1 +0,0 @@ -../launchers/slate/launcher.sh
\ No newline at end of file diff --git a/Common/rofi/bin/launcher_text b/Common/rofi/bin/launcher_text deleted file mode 120000 index 65eac28..0000000 --- a/Common/rofi/bin/launcher_text +++ /dev/null @@ -1 +0,0 @@ -../launchers/text/launcher.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_apps b/Common/rofi/bin/menu_apps deleted file mode 120000 index a07c955..0000000 --- a/Common/rofi/bin/menu_apps +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/apps.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_backlight b/Common/rofi/bin/menu_backlight deleted file mode 120000 index 18eea2f..0000000 --- a/Common/rofi/bin/menu_backlight +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/backlight.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_battery b/Common/rofi/bin/menu_battery deleted file mode 120000 index 10f11b5..0000000 --- a/Common/rofi/bin/menu_battery +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/battery.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_mpd b/Common/rofi/bin/menu_mpd deleted file mode 120000 index b3e204b..0000000 --- a/Common/rofi/bin/menu_mpd +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/mpd.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_network b/Common/rofi/bin/menu_network deleted file mode 120000 index 2c4c1d9..0000000 --- a/Common/rofi/bin/menu_network +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/network.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_powermenu b/Common/rofi/bin/menu_powermenu deleted file mode 120000 index da40a0b..0000000 --- a/Common/rofi/bin/menu_powermenu +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/powermenu.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_quicklinks b/Common/rofi/bin/menu_quicklinks deleted file mode 120000 index e873658..0000000 --- a/Common/rofi/bin/menu_quicklinks +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/quicklinks.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_screenshot b/Common/rofi/bin/menu_screenshot deleted file mode 120000 index 8c4b92d..0000000 --- a/Common/rofi/bin/menu_screenshot +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/screenshot.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_time b/Common/rofi/bin/menu_time deleted file mode 120000 index a7d56c1..0000000 --- a/Common/rofi/bin/menu_time +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/time.sh
\ No newline at end of file diff --git a/Common/rofi/bin/menu_volume b/Common/rofi/bin/menu_volume deleted file mode 120000 index b0f235a..0000000 --- a/Common/rofi/bin/menu_volume +++ /dev/null @@ -1 +0,0 @@ -../applets/menu/volume.sh
\ No newline at end of file diff --git a/Common/rofi/bin/powermenu b/Common/rofi/bin/powermenu deleted file mode 120000 index d9f9d95..0000000 --- a/Common/rofi/bin/powermenu +++ /dev/null @@ -1 +0,0 @@ -../powermenu/powermenu.sh
\ No newline at end of file diff --git a/Common/rofi/bin/usedcpu b/Common/rofi/bin/usedcpu deleted file mode 100755 index 512933c..0000000 --- a/Common/rofi/bin/usedcpu +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env bash - -PREV_TOTAL=0 -PREV_IDLE=0 - -cpuFile="/tmp/.cpu" - -if [[ -f "${cpuFile}" ]]; then - fileCont=$(cat "${cpuFile}") - PREV_TOTAL=$(echo "${fileCont}" | head -n 1) - PREV_IDLE=$(echo "${fileCont}" | tail -n 1) -fi - -CPU=(`cat /proc/stat | grep '^cpu '`) # Get the total CPU statistics. -unset CPU[0] # Discard the "cpu" prefix. -IDLE=${CPU[4]} # Get the idle CPU time. - -# Calculate the total CPU time. -TOTAL=0 - -for VALUE in "${CPU[@]:0:4}"; do - let "TOTAL=$TOTAL+$VALUE" -done - -if [[ "${PREV_TOTAL}" != "" ]] && [[ "${PREV_IDLE}" != "" ]]; then - # Calculate the CPU usage since we last checked. - let "DIFF_IDLE=$IDLE-$PREV_IDLE" - let "DIFF_TOTAL=$TOTAL-$PREV_TOTAL" - let "DIFF_USAGE=(1000*($DIFF_TOTAL-$DIFF_IDLE)/$DIFF_TOTAL+5)/10" - if [[ $1 = "-i" ]]; then - echo " ${DIFF_USAGE}%" - else - echo "${DIFF_USAGE}%" - fi -else - if [[ $1 = "-i" ]]; then - echo " ?" - else - echo "?" - fi -fi - -# Remember the total and idle CPU times for the next check. -echo "${TOTAL}" > "${cpuFile}" -echo "${IDLE}" >> "${cpuFile}" diff --git a/Common/rofi/bin/usedram b/Common/rofi/bin/usedram deleted file mode 100755 index e8a6108..0000000 --- a/Common/rofi/bin/usedram +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -mem_info=$(</proc/meminfo) - mem_info=$(echo $(echo $(mem_info=${mem_info// /}; echo ${mem_info//kB/}))) - for m in $mem_info; do - case ${m//:*} in - "MemTotal") usedmem=$((usedmem+=${m//*:})); totalmem=${m//*:} ;; - "ShMem") usedmem=$((usedmem+=${m//*:})) ;; - "MemFree"|"Buffers"|"Cached"|"SReclaimable") usedmem=$((usedmem-=${m//*:})) ;; - esac - done - usedmem=$((usedmem / 1024)) - totalmem=$((totalmem / 1024)) - mem="${usedmem}MB / ${totalmem}MB" - -## Complete summary - if [[ $1 = "-fi" ]]; then - echo " $mem" - elif [[ $1 = "-f" ]]; then - echo "$mem" - -## Only used RAM - elif [[ $1 = "-i" ]]; then - echo " $usedmem MB" - else - echo "$usedmem MB" - fi diff --git a/Common/rofi/config.rasi b/Common/rofi/config.rasi deleted file mode 100644 index 2864512..0000000 --- a/Common/rofi/config.rasi +++ /dev/null @@ -1,6 +0,0 @@ -/** Basic config file **/ - -configuration { - show-icons: true; - icon-theme: "Papirus"; -} diff --git a/Common/rofi/launchers/colorful/colors.rasi b/Common/rofi/launchers/colorful/colors.rasi deleted file mode 100644 index edfb5e8..0000000 --- a/Common/rofi/launchers/colorful/colors.rasi +++ /dev/null @@ -1,9 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #000000ff; - se: #101010ff; - fg: #FFFFFFff; - ac: #FDD835ff; -} diff --git a/Common/rofi/launchers/colorful/launcher.sh b/Common/rofi/launchers/colorful/launcher.sh deleted file mode 100755 index 0fbfc4a..0000000 --- a/Common/rofi/launchers/colorful/launcher.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# style_1 style_2 style_3 style_4 style_5 style_6 -# style_7 style_8 style_9 style_10 style_11 style_12 - -theme="style_1" -dir="$HOME/.config/rofi/launchers/colorful" - -# dark -ALPHA="#00000000" -BG="#000000ff" -FG="#FFFFFFff" -SELECT="#101010ff" - -# light -#ALPHA="#00000000" -#BG="#FFFFFFff" -#FG="#000000ff" -#SELECT="#f3f3f3ff" - -# accent colors -COLORS=('#EC7875' '#61C766' '#FDD835' '#42A5F5' '#BA68C8' '#4DD0E1' '#00B19F' \ - '#FBC02D' '#E57C46' '#AC8476' '#6D8895' '#EC407A' '#B9C244' '#6C77BB') -ACCENT="${COLORS[$(( $RANDOM % 14 ))]}ff" - -# overwrite colors file -cat > $dir/colors.rasi <<- EOF - /* colors */ - - * { - al: $ALPHA; - bg: $BG; - se: $SELECT; - fg: $FG; - ac: $ACCENT; - } -EOF - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" --hide="colors.rasi" $dir)) -theme="${themes[$(( $RANDOM % 12 ))]}" - -rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme" diff --git a/Common/rofi/launchers/colorful/style_1.rasi b/Common/rofi/launchers/colorful/style_1.rasi deleted file mode 100644 index 60ab3ee..0000000 --- a/Common/rofi/launchers/colorful/style_1.rasi +++ /dev/null @@ -1,115 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 12px; - width: 35%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @ac; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 10px; - columns: 5; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @se; - text-color: @fg; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_10.rasi b/Common/rofi/launchers/colorful/style_10.rasi deleted file mode 100644 index 2ef21bb..0000000 --- a/Common/rofi/launchers/colorful/style_10.rasi +++ /dev/null @@ -1,117 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: "Applications"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 1% 0.75% 1% 0.75%; - background-color: @ac; - text-color: @fg; - border-radius: 100%; - font: "Iosevka Nerd Font 12"; -} - -textbox-prompt-colon { - padding: 1% 0% 1% 0%; - background-color: @se; - text-color: @fg; - expand: false; - str: " :: "; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search..."; - padding: 1.15% 0.5% 1% 0.5%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @se; - text-color: @fg; - expand: false; - border: 0% 0.2% 0.3% 0%; - border-radius: 100%; - border-color: @ac; -} - -listview { - background-color: @al; - padding: 0px; - columns: 3; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 20% 15% 20% 15%; -} - -element { - background-color: @se; - text-color: @fg; - orientation: horizontal; - border-radius: 100%; - padding: 1% 0.5% 1% 0.75%; -} - -element-icon { - size: 24px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @ac; - border: 0% 0% 0.3% 0.2%; - border-radius: 100%; - border-color: @ac; -} diff --git a/Common/rofi/launchers/colorful/style_11.rasi b/Common/rofi/launchers/colorful/style_11.rasi deleted file mode 100644 index 4a6792f..0000000 --- a/Common/rofi/launchers/colorful/style_11.rasi +++ /dev/null @@ -1,125 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: "Applications"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 25px; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1.25% 0.75% 1.25% 0.75%; - background-color: @ac; - text-color: @fg; - font: "Iosevka Nerd Font 12"; - border-radius: 100%; -} - -textbox-prompt-colon { - padding: 1.40% 0% 1% 0%; - background-color: @se; - text-color: @fg; - expand: false; - str: " :: "; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 1.5% 0.5% 1% 0%; - blink: true; -} - -inputbar { - children: [ prompt, textbox-prompt-colon, entry ]; - background-color: @se; - text-color: @fg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 100px; - border-color: @ac; -} - -listview { - background-color: @al; - padding: 0px; - columns: 3; - lines: 8; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 4% 2% 4% 2%; -} - -element { - background-color: @bg; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 0%; -} - -element-icon { - size: 24px; - border: 1%; - border-color: @ac; - border-radius: 15px; - background-color: @ac; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @ac; - border: 0% 0% 0% 0%; - border-radius: 15px; - border-color: @ac; -} diff --git a/Common/rofi/launchers/colorful/style_12.rasi b/Common/rofi/launchers/colorful/style_12.rasi deleted file mode 100644 index 713d569..0000000 --- a/Common/rofi/launchers/colorful/style_12.rasi +++ /dev/null @@ -1,128 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: " Applications"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 50px; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1.25% 0.75% 1.25% 0.75%; - background-color: @ac; - text-color: @fg; - font: "Iosevka Nerd Font 12"; - border-radius: 100%; -} - -textbox-prompt-colon { - padding: 1.40% 0% 1% 0%; - background-color: @se; - text-color: @fg; - expand: false; - str: " :: "; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 1.5% 0.5% 1% 0%; - blink: true; -} - -inputbar { - children: [ prompt, textbox-prompt-colon, entry ]; - background-color: @se; - text-color: @fg; - expand: false; - border: 0%; - border-radius: 100%; - border-color: @ac; -} - -listview { - background-color: @al; - padding: 0px; - columns: 6; - lines: 3; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 10px 0px 10px 0px; - border-radius: 50px; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 4% 2% 2% 2%; -} - -element { - background-color: @bg; - text-color: @fg; - orientation: vertical; - border-radius: 0%; - padding: 0%; -} - -element-icon { - size: 64px; - border: 1%; - border-color: @se; - border-radius: 15px; - background-color: @se; - padding: 2% 1% 2% 1%; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.25% 0.5% 0.25%; - padding: 1% 0.5% 1% 0.5%; -} - -element-text selected { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - background-color: @ac; - text-color: @bg; - border-radius: 100%; -} diff --git a/Common/rofi/launchers/colorful/style_2.rasi b/Common/rofi/launchers/colorful/style_2.rasi deleted file mode 100644 index 12368cf..0000000 --- a/Common/rofi/launchers/colorful/style_2.rasi +++ /dev/null @@ -1,115 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 12px; - width: 18%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @ac; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 0px; - columns: 1; - lines: 5; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 1% 0.5% 1% 0.5%; -} - -element-icon { - size: 32px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @fg; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_3.rasi b/Common/rofi/launchers/colorful/style_3.rasi deleted file mode 100644 index fe0e6ad..0000000 --- a/Common/rofi/launchers/colorful/style_3.rasi +++ /dev/null @@ -1,116 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; - height: 100%; - width: 18%; - location: west; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @ac; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 0px; - columns: 1; - lines: 5; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 1% 0.5% 1% 0.5%; -} - -element-icon { - size: 32px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @fg; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_4.rasi b/Common/rofi/launchers/colorful/style_4.rasi deleted file mode 100644 index 2e34f33..0000000 --- a/Common/rofi/launchers/colorful/style_4.rasi +++ /dev/null @@ -1,115 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; - height: 100%; - width: 19%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @ac; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 10px 10px 0px 10px; - columns: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 48px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @se; - text-color: @fg; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_5.rasi b/Common/rofi/launchers/colorful/style_5.rasi deleted file mode 100644 index 10739d7..0000000 --- a/Common/rofi/launchers/colorful/style_5.rasi +++ /dev/null @@ -1,115 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; - width: 35%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @fg; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 10px; - columns: 2; - lines: 10; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 1% 0.5% 1% 0.5%; -} - -element-icon { - size: 24px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @ac; - text-color: @bg; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_6.rasi b/Common/rofi/launchers/colorful/style_6.rasi deleted file mode 100644 index e2bd1c3..0000000 --- a/Common/rofi/launchers/colorful/style_6.rasi +++ /dev/null @@ -1,110 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @bg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @bg; - placeholder-color: @bg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @ac; - text-color: @bg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 100%; - border-color: @ac; - margin: 0% 54.5% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 0px; - columns: 10; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2.5%; - padding: 20% 5% 20% 5%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: vertical; - border-radius: 0%; - padding: 4% 0% 4% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @se; - text-color: @fg; - border: 0% 0% 0.5% 0%; - border-radius: 25px; - border-color: @ac; -} diff --git a/Common/rofi/launchers/colorful/style_7.rasi b/Common/rofi/launchers/colorful/style_7.rasi deleted file mode 100644 index e66e126..0000000 --- a/Common/rofi/launchers/colorful/style_7.rasi +++ /dev/null @@ -1,115 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 12px; - width: 30%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @al; - text-color: @fg; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @bg; - text-color: @fg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @al; - padding: 10px; - columns: 2; - lines: 7; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 0%; - padding: 0%; -} - -element { - background-color: @al; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 0.5% 0.5% 0.5% 0.5%; -} - -element-icon { - size: 24px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @ac; - text-color: @bg; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @bg; -} diff --git a/Common/rofi/launchers/colorful/style_8.rasi b/Common/rofi/launchers/colorful/style_8.rasi deleted file mode 100644 index 78f8fd3..0000000 --- a/Common/rofi/launchers/colorful/style_8.rasi +++ /dev/null @@ -1,121 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: "Applications"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 0px; - width: 35%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 0.75% 1% 0.75%; - background-color: @ac; - text-color: @fg; - font: "Iosevka Nerd Font 12"; -} - -textbox-prompt-colon { - padding: 1% 0% 1% 0%; - background-color: @se; - text-color: @fg; - expand: false; - str: " :: "; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search..."; - padding: 1.15% 0.5% 1% 0.5%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @se; - text-color: @fg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @ac; -} - -listview { - background-color: @al; - padding: 0px; - columns: 2; - lines: 7; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 4% 2% 4% 2%; -} - -element { - background-color: @se; - text-color: @fg; - orientation: horizontal; - border-radius: 0%; - padding: 1% 0.5% 1% 0.75%; -} - -element-icon { - size: 24px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @ac; - border: 0% 0% 0% 0.3%; - border-radius: 0px; - border-color: @ac; -} diff --git a/Common/rofi/launchers/colorful/style_9.rasi b/Common/rofi/launchers/colorful/style_9.rasi deleted file mode 100644 index 8c98050..0000000 --- a/Common/rofi/launchers/colorful/style_9.rasi +++ /dev/null @@ -1,122 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Iosevka Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: "Applications"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "colors.rasi" - -window { - transparency: "real"; - background-color: @bg; - text-color: @fg; - border: 0px; - border-color: @ac; - border-radius: 15px; - width: 35%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 0.75% 1% 0.75%; - background-color: @ac; - text-color: @fg; - border-radius: 10px; - font: "Iosevka Nerd Font 12"; -} - -textbox-prompt-colon { - padding: 1% 0% 1% 0%; - background-color: @se; - text-color: @fg; - expand: false; - str: " :: "; -} - -entry { - background-color: @al; - text-color: @fg; - placeholder-color: @fg; - expand: true; - horizontal-align: 0; - placeholder: "Search..."; - padding: 1.15% 0.5% 1% 0.5%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @se; - text-color: @fg; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 10px; - border-color: @ac; -} - -listview { - background-color: @al; - padding: 0px; - columns: 2; - lines: 7; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @al; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @ac; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 4% 2% 4% 2%; -} - -element { - background-color: @se; - text-color: @fg; - orientation: horizontal; - border-radius: 12px; - padding: 1% 0.5% 1% 0.75%; -} - -element-icon { - size: 24px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0.25% 0% 0.25%; -} - -element selected { - background-color: @se; - text-color: @ac; - border: 0% 0.3% 0% 0.3%; - border-radius: 12px; - border-color: @ac; -} diff --git a/Common/rofi/launchers/misc/appdrawer.rasi b/Common/rofi/launchers/misc/appdrawer.rasi deleted file mode 100644 index f139fc7..0000000 --- a/Common/rofi/launchers/misc/appdrawer.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - height: 100%; - width: 30%; - location: west; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Apps"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 100%; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 5; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 5% 1.5% 0% 1.5%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 5px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/appdrawer_alt.rasi b/Common/rofi/launchers/misc/appdrawer_alt.rasi deleted file mode 100644 index 0e2a9c5..0000000 --- a/Common/rofi/launchers/misc/appdrawer_alt.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 30px; - width: 30%; - location: west; - x-offset: 20px; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Apps"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 100%; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 4; - lines: 5; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/appfolder.rasi b/Common/rofi/launchers/misc/appfolder.rasi deleted file mode 100644 index 22e2b05..0000000 --- a/Common/rofi/launchers/misc/appfolder.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 5px; - width: 27%; - location: east; - x-offset: -20px; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0.5; - placeholder: "Search"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 5px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 4; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1.25%; - padding: 1.5% 0.75% 1.5% 0.75%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 5px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/blurry.rasi b/Common/rofi/launchers/misc/blurry.rasi deleted file mode 100644 index eba5bfc..0000000 --- a/Common/rofi/launchers/misc/blurry.rasi +++ /dev/null @@ -1,120 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans Bold 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -* { - background: #00000000; - background-alt: #00000000; - background-bar: #f2f2f215; - foreground: #f2f2f2EE; - accent: #3DAEE966; -} - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - width: 40%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1.5%; -} - -listview { - background-color: @background-alt; - columns: 5; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/blurry_full.rasi b/Common/rofi/launchers/misc/blurry_full.rasi deleted file mode 100644 index 0b95f91..0000000 --- a/Common/rofi/launchers/misc/blurry_full.rasi +++ /dev/null @@ -1,116 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans Bold 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -* { - background: #00000000; - background-alt: #00000000; - background-bar: #f2f2f215; - foreground: #f2f2f2EE; - accent: #3DAEE966; -} - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @accent; - margin: 0% 25% 0% 25%; - padding: 1.5%; -} - -listview { - background-color: @background-alt; - columns: 8; - lines: 4; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 8%; - padding: 10% 12.5% 10% 12.5%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/column.rasi b/Common/rofi/launchers/misc/column.rasi deleted file mode 100644 index 1ed8f38..0000000 --- a/Common/rofi/launchers/misc/column.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - height: 100%; - width: 9%; - location: east; - x-offset: 0px; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 5px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 1; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1.25%; - padding: 3.5% 0.75% 0% 0.75%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.25% 0% 2.25% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 5px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/gnome_do.rasi b/Common/rofi/launchers/misc/gnome_do.rasi deleted file mode 100644 index 02161f2..0000000 --- a/Common/rofi/launchers/misc/gnome_do.rasi +++ /dev/null @@ -1,165 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 12"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Classical -- */ -* { - background: #27639AFF; - background-alt: #00000000; - background-bar: #f2f2f240; - foreground: #f2f2f2EE; - accent: #3DAEE966; -} - -/* -- Transparent -- */ -/* -* { - background: #00000000; - background-alt: #00000000; - background-bar: #f2f2f215; - foreground: #f2f2f2EE; - accent: #3DAEE966; -} -*/ - -/* -- Light -- */ -/* -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #20202040; - foreground: #404040EE; - accent: #3DAEE966; -} -*/ - -/* -- Dark -- */ -/* -* { - background: #252525ff; - background-alt: #00000000; - background-bar: #10101040; - foreground: #e5e5e5EE; - accent: #3DAEE966; -} -*/ - -/* -- Black -- */ -/* -* { - background: #000000ff; - background-alt: #00000000; - background-bar: #101010ff; - foreground: #e5e5e5EE; - accent: #3DAEE966; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 25px; - width: 26%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: false; - padding: 0%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0.5; - placeholder: " Search"; - padding: 0% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 0px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 0%; -} - -listview { - background-color: @background-alt; - columns: 2; - lines: 1; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 128px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0% 0% 0% 0%; - border-radius: 15px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/kde_krunner.rasi b/Common/rofi/launchers/misc/kde_krunner.rasi deleted file mode 100644 index 473ce18..0000000 --- a/Common/rofi/launchers/misc/kde_krunner.rasi +++ /dev/null @@ -1,143 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Breeze Light-- */ -* { - background: #EFF0F1FF; - background-alt: #00000000; - background-bar: #93CEE999; - foreground: #000000A6; - accent: #3DAEE9FF; -} - -/* -- Breeze Dark-- */ -/* -* { - background: #31363bff; - background-alt: #00000000; - background-bar: #3daee966; - foreground: #f5f5f5e6; - accent: #1d99f3ff; -} -*/ - -/* -- Black-- */ -/* -* { - background: #000000ff; - background-alt: #00000000; - background-bar: #3daee966; - foreground: #f5f5f5b3; - accent: #1d99f3ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - width: 38%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 0.75% 0% -0.5%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 10"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0.1%; - border-radius: 4px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1%; -} - -listview { - background-color: @background-alt; - columns: 1; - lines: 7; - spacing: 0.5%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1%; - padding: 1% 0.5% 1% 0.5%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; - padding: 0.5%; -} - -element-icon { - size: 32px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 0% 0% 0% 0.25%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0.1%; - border-radius: 4px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/kde_simplemenu.rasi b/Common/rofi/launchers/misc/kde_simplemenu.rasi deleted file mode 100644 index 5931c22..0000000 --- a/Common/rofi/launchers/misc/kde_simplemenu.rasi +++ /dev/null @@ -1,143 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Breeze Light-- */ -* { - background: #EFF0F1FF; - background-alt: #00000000; - background-bar: #93CEE999; - foreground: #000000A6; - accent: #3DAEE9FF; -} - -/* -- Breeze Dark-- */ -/* -* { - background: #31363bff; - background-alt: #00000000; - background-bar: #3daee966; - foreground: #f5f5f5e6; - accent: #1d99f3ff; -} -*/ - -/* -- Black-- */ -/* -* { - background: #000000ff; - background-alt: #00000000; - background-bar: #3daee966; - foreground: #f5f5f5b3; - accent: #1d99f3ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - width: 38%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.30% 0.75% 0% -0.5%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 10"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0.1%; - border-radius: 4px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 1%; -} - -listview { - background-color: @background-alt; - columns: 6; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1%; - padding: 1% 0.5% 1% 0.5%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0.1%; - border-radius: 4px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/launcher.sh b/Common/rofi/launchers/misc/launcher.sh deleted file mode 100755 index a25dce9..0000000 --- a/Common/rofi/launchers/misc/launcher.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# blurry blurry_full kde_simplemenu kde_krunner launchpad -# gnome_do slingshot appdrawer appdrawer_alt appfolder -# column row row_center screen row_dock row_dropdown - -theme="screen" -dir="$HOME/.config/rofi/launchers/misc" - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" $dir)) -theme="${themes[$(( $RANDOM % 16 ))]}" - -rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme" diff --git a/Common/rofi/launchers/misc/launchpad.rasi b/Common/rofi/launchers/misc/launchpad.rasi deleted file mode 100644 index 77d6ab8..0000000 --- a/Common/rofi/launchers/misc/launchpad.rasi +++ /dev/null @@ -1,116 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans Bold 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -* { - background: #00000060; - background-alt: #00000000; - background-bar: #f2f2f215; - foreground: #f2f2f2EE; - accent: #ffffff66; -} - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 0.30% 1% 0% -0.5%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search"; - padding: 0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0.1%; - border-radius: 6px; - border-color: @accent; - margin: 0% 30% 0% 30%; - padding: 1%; -} - -listview { - background-color: @background-alt; - columns: 7; - lines: 4; - spacing: 2%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 8%; - padding: 10% 8.5% 10% 8.5%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 81px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0% 0% 0% 0%; - border-radius: 12px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/misc/row.rasi b/Common/rofi/launchers/misc/row.rasi deleted file mode 100644 index 9793627..0000000 --- a/Common/rofi/launchers/misc/row.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 100%; - border-color: @accent; - margin: 0% 73.75% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 12; - lines: 1; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1.5%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/row_center.rasi b/Common/rofi/launchers/misc/row_center.rasi deleted file mode 100644 index 85c98bc..0000000 --- a/Common/rofi/launchers/misc/row_center.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; - width: 100%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0.3%; - border-radius: 0% 100% 100% 0%; - border-color: @border; - margin: 0% 73.75% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 12; - lines: 2; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1.5%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0% 0.3%; - border-radius: 0px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/row_dock.rasi b/Common/rofi/launchers/misc/row_dock.rasi deleted file mode 100644 index 9cbe1c0..0000000 --- a/Common/rofi/launchers/misc/row_dock.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 50px 50px 0px 0px; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0.5; - placeholder: "Search Applications"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 100%; - border-color: @accent; - margin: 0% 35% 0% 35%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 12; - lines: 2; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1.5%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/row_dropdown.rasi b/Common/rofi/launchers/misc/row_dropdown.rasi deleted file mode 100644 index 8df78de..0000000 --- a/Common/rofi/launchers/misc/row_dropdown.rasi +++ /dev/null @@ -1,136 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px 0px 50px 50px; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0.5; - placeholder: "Search Applications"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 100%; - border-color: @accent; - margin: 0% 35% 0% 35%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 12; - lines: 2; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ listview, inputbar ]; - spacing: 2%; - padding: 2% 1% 2% 1%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2.5% 0% 2.5% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/screen.rasi b/Common/rofi/launchers/misc/screen.rasi deleted file mode 100644 index f811d5e..0000000 --- a/Common/rofi/launchers/misc/screen.rasi +++ /dev/null @@ -1,132 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light -- */ -* { - background: #e5e5e5ff; - background-alt: #00000000; - background-bar: #FFFFFFFF; - foreground: #000000A6; - accent: #80808066; - border: #1A73E9FF; - selected: #D7D7D7FF; -} - -/* -- Dark -- */ -/* -* { - background: #212121ff; - background-alt: #00000000; - background-bar: #151515FF; - foreground: #EDEDEDFF; - accent: #EDEDED4d; - border: #1A73E9FF; - selected: #151515ff; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 0.25% 0.75% 0% -0.25%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: -0.10% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background-bar; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0.2%; - border-radius: 10%; - border-color: @border; - margin: 0% 50% 0% 0%; - padding: 1.25%; -} - -listview { - background-color: @background-alt; - columns: 8; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 15% 10% 10% 10%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 3% 0% 3% 0%; -} - -element-icon { - size: 80px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0.2%; - border-radius: 25px; - border-color: @border; -} diff --git a/Common/rofi/launchers/misc/slingshot.rasi b/Common/rofi/launchers/misc/slingshot.rasi deleted file mode 100644 index 0268c84..0000000 --- a/Common/rofi/launchers/misc/slingshot.rasi +++ /dev/null @@ -1,132 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "Noto Sans 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -/* -- Light-- */ -* { - background: #F5F5F5FF; - background-alt: #00000000; - background-bar: #D7D7D7FF; - foreground: #000000A6; - accent: #80808066; -} - -/* -- Dark -- */ -/* -* { - background: #3E4148FF; - background-alt: #00000000; - background-bar: #363A3FFF; - foreground: #F5F5F5FF; - accent: #00000066; -} -*/ - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0px; - border-color: @border; - border-radius: 4px; - width: 32%; - location: northwest; - x-offset: 10px; - y-offset: 50px; -} - -prompt { - enabled: true; - padding: 0.30% 0.5% 0% 0%; - background-color: @background-alt; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 10"; -} - -entry { - background-color: @background-alt; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: -0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0.1%; - border-radius: 4px; - border-color: @accent; - margin: 0% 0% 0% 0%; - padding: 0.50%; -} - -listview { - background-color: @background-alt; - columns: 5; - lines: 3; - spacing: 0%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background-alt; - border: 0% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @accent; - children: [ inputbar, listview ]; - spacing: 1%; - padding: 1.25% 0.65% 1.25% 0.65%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 0.5% -0.5% 0.5%; -} - -element selected { - background-color: @background-bar; - text-color: @foreground; - border: 0.1%; - border-radius: 4px; - border-color: @accent; -} diff --git a/Common/rofi/launchers/ribbon/full_bottom.rasi b/Common/rofi/launchers/ribbon/full_bottom.rasi deleted file mode 100644 index 50dc5c7..0000000 --- a/Common/rofi/launchers/ribbon/full_bottom.rasi +++ /dev/null @@ -1,133 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 3% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 48.75% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 12.50% 10% 5% 10%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/full_left.rasi b/Common/rofi/launchers/ribbon/full_left.rasi deleted file mode 100644 index bec29a6..0000000 --- a/Common/rofi/launchers/ribbon/full_left.rasi +++ /dev/null @@ -1,133 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 0% 1.5%; - border-color: @border; - border-radius: 0% 0% 0% 0%; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 47% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 0% 1.5%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 15% 10% 10% 10%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/full_right.rasi b/Common/rofi/launchers/ribbon/full_right.rasi deleted file mode 100644 index cfd3b63..0000000 --- a/Common/rofi/launchers/ribbon/full_right.rasi +++ /dev/null @@ -1,133 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 1.5% 0% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 47% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 1.5% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 15% 10% 10% 10%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/full_top.rasi b/Common/rofi/launchers/ribbon/full_top.rasi deleted file mode 100644 index 1d04591..0000000 --- a/Common/rofi/launchers/ribbon/full_top.rasi +++ /dev/null @@ -1,133 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 3% 0% 0% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 48.75% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 3% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 12.50% 10% 5% 10%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/launcher.sh b/Common/rofi/launchers/ribbon/launcher.sh deleted file mode 100755 index 7e7c21b..0000000 --- a/Common/rofi/launchers/ribbon/launcher.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# ribbon_top ribbon_top_round ribbon_bottom ribbon_bottom_round -# ribbon_left ribbon_left_round ribbon_right ribbon_right_round -# full_bottom full_top full_left full_right - -theme="ribbon_top_round" - -dir="$HOME/.config/rofi/launchers/ribbon" -styles=($(ls -p --hide="colors.rasi" $dir/styles)) -color="${styles[$(( $RANDOM % 8 ))]}" - -# comment this line to disable random colors -sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir)) -theme="${themes[$(( $RANDOM % 12 ))]}" - -rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme" diff --git a/Common/rofi/launchers/ribbon/ribbon_bottom.rasi b/Common/rofi/launchers/ribbon/ribbon_bottom.rasi deleted file mode 100644 index 63a20b3..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_bottom.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 3% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 68.5%; - width: 55%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 6; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_bottom_round.rasi b/Common/rofi/launchers/ribbon/ribbon_bottom_round.rasi deleted file mode 100644 index 1f652af..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_bottom_round.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 3% 0%; - border-color: @border; - border-radius: 25px 25px 50px 50px; - height: 68.5%; - width: 55%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 6; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 3% 0%; - border-radius: 50px; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 25px; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_left.rasi b/Common/rofi/launchers/ribbon/ribbon_left.rasi deleted file mode 100644 index 3a5f774..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_left.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 0% 1.5%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 49.50%; - width: 40%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 17% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 4; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 0% 1.5%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_left_round.rasi b/Common/rofi/launchers/ribbon/ribbon_left_round.rasi deleted file mode 100644 index 5324c9c..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_left_round.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 0% 0% 1.5%; - border-color: @border; - border-radius: 0% 0% 0% 2.5%; - height: 49.50%; - width: 40%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0.2%; - border-radius: 1.5% 1.0% 1.5% 1.5%; - border-color: @border-alt; - margin: 0% 17% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 4; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 0% 0% 1.5%; - border-radius: 0% 0% 0% 2.5%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0.2%; - border-radius: 1.5% 1.0% 1.5% 1.5%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_right.rasi b/Common/rofi/launchers/ribbon/ribbon_right.rasi deleted file mode 100644 index 75292ed..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_right.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 1.5% 0% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 36.50%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 22.25% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 6; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 1.5% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_right_round.rasi b/Common/rofi/launchers/ribbon/ribbon_right_round.rasi deleted file mode 100644 index 8dd9ad3..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_right_round.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 0% 1.5% 0% 0%; - border-color: @border; - border-radius: 0% 1.5% 0% 0%; - height: 36.50%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0.2% 0.3% 0%; - border-radius: 0% 1.5% 1.5% 1.5%; - border-color: @border-alt; - margin: 0% 22.25% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 6; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 0% 1.5% 0% 0%; - border-radius: 0% 1.5% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.2% 0.3% 0%; - border-radius: 1.5% 1.5% 1.5% 1.5%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_top.rasi b/Common/rofi/launchers/ribbon/ribbon_top.rasi deleted file mode 100644 index 42ea207..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_top.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 3% 0% 0% 0%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 55.50%; - width: 45%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 5; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 3% 0% 0% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/ribbon_top_round.rasi b/Common/rofi/launchers/ribbon/ribbon_top_round.rasi deleted file mode 100644 index af4ff7d..0000000 --- a/Common/rofi/launchers/ribbon/ribbon_top_round.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 3% 0% 0% 0%; - border-color: @border; - border-radius: 2.5% 0% 0% 0%; - height: 55.50%; - width: 45%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0.2% 0.3% 0%; - border-radius: 1.5% 0% 1.5% 0%; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 5; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 3% 0% 0% 0%; - border-radius: 2.5% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 2.5% 2% 2.5% 2%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 2% 0% 2% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.2% 0.3% 0%; - border-radius: 1.5% 0% 1.5% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/ribbon/styles/berry.rasi b/Common/rofi/launchers/ribbon/styles/berry.rasi deleted file mode 100644 index 6621231..0000000 --- a/Common/rofi/launchers/ribbon/styles/berry.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #2D142Cff; - background-alt: #2D142Cff; - foreground: #ffffffA6; - border: #EE4540ff; - border-alt: #C92A42ff; - selected: #510A3299; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/bluish.rasi b/Common/rofi/launchers/ribbon/styles/bluish.rasi deleted file mode 100644 index c3254ee..0000000 --- a/Common/rofi/launchers/ribbon/styles/bluish.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #EFF0F1FF; - background-alt: #EFF0F1FF; - foreground: #000000A6; - border: #000B83FF; - border-alt: #3DAEE9FF; - selected: #93CEE999; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/cocoa.rasi b/Common/rofi/launchers/ribbon/styles/cocoa.rasi deleted file mode 100644 index cf85282..0000000 --- a/Common/rofi/launchers/ribbon/styles/cocoa.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #413E4Aff; - background-alt: #413E4Aff; - foreground: #F7C7B2ff; - border: #B38184ff; - border-alt: #F3B69Eff; - selected: #B381841a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/colors.rasi b/Common/rofi/launchers/ribbon/styles/colors.rasi deleted file mode 100644 index a1d2937..0000000 --- a/Common/rofi/launchers/ribbon/styles/colors.rasi +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * - * bluish berry nordic nightly gotham mask faded cocoa - * - */ - -@import "nordic.rasi" diff --git a/Common/rofi/launchers/ribbon/styles/faded.rasi b/Common/rofi/launchers/ribbon/styles/faded.rasi deleted file mode 100644 index 99e929a..0000000 --- a/Common/rofi/launchers/ribbon/styles/faded.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #5E6C91ff; - background-alt: #5E6C91ff; - foreground: #FFFCFFff; - border: #FF83A7ff; - border-alt: #F4BB6Cff; - selected: #A0B5F44c; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/gotham.rasi b/Common/rofi/launchers/ribbon/styles/gotham.rasi deleted file mode 100644 index ce71b9c..0000000 --- a/Common/rofi/launchers/ribbon/styles/gotham.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #29384Fff; - background-alt: #29384Fff; - foreground: #FEFFF1ff; - border: #345B7Cff; - border-alt: #715979ff; - selected: #C46C851a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/mask.rasi b/Common/rofi/launchers/ribbon/styles/mask.rasi deleted file mode 100644 index 4e81074..0000000 --- a/Common/rofi/launchers/ribbon/styles/mask.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #434C6Dff; - background-alt: #434C6Dff; - foreground: #FAF7CCff; - border: #CA8CA5ff; - border-alt: #F0B2B3ff; - selected: #EFD4B61a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/nightly.rasi b/Common/rofi/launchers/ribbon/styles/nightly.rasi deleted file mode 100644 index 027ffab..0000000 --- a/Common/rofi/launchers/ribbon/styles/nightly.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #2A3950ff; - background-alt: #2A3950ff; - foreground: #FEFFF1ff; - border: #A162F7ff; - border-alt: #45E3FFff; - selected: #6F88FE1a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/ribbon/styles/nordic.rasi b/Common/rofi/launchers/ribbon/styles/nordic.rasi deleted file mode 100644 index 300ba35..0000000 --- a/Common/rofi/launchers/ribbon/styles/nordic.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #475C7Bff; - background-alt: #475C7Bff; - foreground: #ffffffcc; - border: #FDBB6Dff; - border-alt: #DA717Fff; - selected: #685E79ff; - urgent: #DA4453FF; -} diff --git a/Common/rofi/launchers/slate/launcher.sh b/Common/rofi/launchers/slate/launcher.sh deleted file mode 100755 index 8c12862..0000000 --- a/Common/rofi/launchers/slate/launcher.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# slate_full slate_center slate_left -# slate_right slate_top slate_bottom - -theme="slate_full" - -dir="$HOME/.config/rofi/launchers/slate" -styles=($(ls -p --hide="colors.rasi" $dir/styles)) -color="${styles[$(( $RANDOM % 20 ))]}" - -# comment this line to disable random colors -sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir)) -theme="${themes[$(( $RANDOM % 6 ))]}" - -rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme" diff --git a/Common/rofi/launchers/slate/slate_bottom.rasi b/Common/rofi/launchers/slate/slate_bottom.rasi deleted file mode 100644 index bfdd155..0000000 --- a/Common/rofi/launchers/slate/slate_bottom.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 2% 1% 2% 1%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 50%; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 52.25% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 2% 1% 2% 1%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 8% 5% 0% 5%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/slate_center.rasi b/Common/rofi/launchers/slate/slate_center.rasi deleted file mode 100644 index 14080ff..0000000 --- a/Common/rofi/launchers/slate/slate_center.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 2% 1% 2% 1%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 70%; - width: 70%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 38.25% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 8; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 2% 1% 2% 1%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 6% 3% 6% 3%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/slate_full.rasi b/Common/rofi/launchers/slate/slate_full.rasi deleted file mode 100644 index f3d2556..0000000 --- a/Common/rofi/launchers/slate/slate_full.rasi +++ /dev/null @@ -1,133 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 5% 3% 5% 3%; - border-color: @border; - border-radius: 0% 0% 0% 0%; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 49.5% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 8; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 5% 3% 5% 3%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 15% 10% 15% 10%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/slate_left.rasi b/Common/rofi/launchers/slate/slate_left.rasi deleted file mode 100644 index 0eb5082..0000000 --- a/Common/rofi/launchers/slate/slate_left.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 2% 1% 2% 1%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 100%; - width: 30%; - location: west; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 3; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 2% 1% 2% 1%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 5% 3% 5% 3%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/slate_right.rasi b/Common/rofi/launchers/slate/slate_right.rasi deleted file mode 100644 index e3a5fa3..0000000 --- a/Common/rofi/launchers/slate/slate_right.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 2% 1% 2% 1%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 100%; - width: 30%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 0% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 3; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 2% 1% 2% 1%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 5% 3% 5% 3%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/slate_top.rasi b/Common/rofi/launchers/slate/slate_top.rasi deleted file mode 100644 index 3ea779f..0000000 --- a/Common/rofi/launchers/slate/slate_top.rasi +++ /dev/null @@ -1,138 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 10"; - show-icons: true; - icon-theme: "Papirus"; - display-drun: ""; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border: 2% 1% 2% 1%; - border-color: @border; - border-radius: 0% 0% 0% 0%; - height: 50%; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0% 1% 0% 0%; - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -entry { - background-color: @background; - text-color: @foreground; - placeholder-color: @foreground; - expand: true; - horizontal-align: 0; - placeholder: "Search Applications"; - padding: 0.15% 0% 0% 0%; - blink: true; -} - -inputbar { - children: [ prompt, entry ]; - background-color: @background; - text-color: @foreground; - expand: false; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - margin: 0% 52.25% 0% 0%; - padding: 1%; - position: center; -} - -listview { - background-color: @background; - columns: 10; - spacing: 1%; - cycle: false; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - border: 2% 1% 2% 1%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; - children: [ inputbar, listview ]; - spacing: 2%; - padding: 8% 5% 0% 5%; -} - -element { - background-color: @background; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; - padding: 1% 0% 1% 0%; -} - -element-icon { - size: 64px; - border: 0px; -} - -element-text { - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 0.5% 1% 0% 1%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 1%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.3% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/launchers/slate/styles/Amber.rasi b/Common/rofi/launchers/slate/styles/Amber.rasi deleted file mode 100644 index f2efa55..0000000 --- a/Common/rofi/launchers/slate/styles/Amber.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Amber -- */ - -* { -shade1: #FF6F00; -shade2: #FF8F00; -shade3: #FFA000; -shade4: #FFB300; -shade5: #FFC107; -shade6: #FFCA28; -shade7: #FFD54F; -shade8: #FFE082; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #404040; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #404040; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Black.rasi b/Common/rofi/launchers/slate/styles/Black.rasi deleted file mode 100644 index ec8c1fb..0000000 --- a/Common/rofi/launchers/slate/styles/Black.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Gray -- */ - -* { -shade1: #000000; -shade2: #050505; -shade3: #101010; -shade4: #151515; -shade5: #202020; -shade6: #252525; -shade7: #303030; -shade8: #353535; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade2; - border-alt: @shade3; - background: @shade4; - background-alt: @shade5; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Blue.rasi b/Common/rofi/launchers/slate/styles/Blue.rasi deleted file mode 100644 index 5d205fc..0000000 --- a/Common/rofi/launchers/slate/styles/Blue.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Blue -- */ - -* { -shade1: #0D47A1; -shade2: #1565C0; -shade3: #1976D2; -shade4: #1E88E5; -shade5: #2196F3; -shade6: #42A5F5; -shade7: #64B5F6; -shade8: #90CAF9; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #202020; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Blue_gray.rasi b/Common/rofi/launchers/slate/styles/Blue_gray.rasi deleted file mode 100644 index 5ff24dd..0000000 --- a/Common/rofi/launchers/slate/styles/Blue_gray.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Blue Gray -- */ - -* { -shade1: #263238; -shade2: #37474F; -shade3: #455A64; -shade4: #546E7A; -shade5: #607D8B; -shade6: #78909C; -shade7: #90A4AE; -shade8: #B0BEC5; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Brown.rasi b/Common/rofi/launchers/slate/styles/Brown.rasi deleted file mode 100644 index fd54539..0000000 --- a/Common/rofi/launchers/slate/styles/Brown.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Brown -- */ - -* { -shade1: #3E2723; -shade2: #4E342E; -shade3: #5D4037; -shade4: #6D4C41; -shade5: #795548; -shade6: #8D6E63; -shade7: #A1887F; -shade8: #BCAAA4; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Cyan.rasi b/Common/rofi/launchers/slate/styles/Cyan.rasi deleted file mode 100644 index d6db860..0000000 --- a/Common/rofi/launchers/slate/styles/Cyan.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Cyan -- */ - -* { -shade1: #006064; -shade2: #00838F; -shade3: #0097A7; -shade4: #00ACC1; -shade5: #00BCD4; -shade6: #26C6DA; -shade7: #4DD0E1; -shade8: #80DEEA; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #303030; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Deep_orange.rasi b/Common/rofi/launchers/slate/styles/Deep_orange.rasi deleted file mode 100644 index 4e21a7b..0000000 --- a/Common/rofi/launchers/slate/styles/Deep_orange.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Deep Orange -- */ - -* { -shade1: #BF360C; -shade2: #D84315; -shade3: #E64A19; -shade4: #F4511E; -shade5: #FF5722; -shade6: #FF7043; -shade7: #FF8A65; -shade8: #FFAB91; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #353535; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Deep_purple.rasi b/Common/rofi/launchers/slate/styles/Deep_purple.rasi deleted file mode 100644 index a15d9a4..0000000 --- a/Common/rofi/launchers/slate/styles/Deep_purple.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Deep Purple -- */ - -* { -shade1: #311B92; -shade2: #4527A0; -shade3: #512DA8; -shade4: #5E35B1; -shade5: #673AB7; -shade6: #7E57C2; -shade7: #9575CD; -shade8: #B39DDB; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Gray.rasi b/Common/rofi/launchers/slate/styles/Gray.rasi deleted file mode 100644 index 1dcd95b..0000000 --- a/Common/rofi/launchers/slate/styles/Gray.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Gray -- */ - -* { -shade1: #212121; -shade2: #424242; -shade3: #616161; -shade4: #757575; -shade5: #9E9E9E; -shade6: #BDBDBD; -shade7: #D4D4D4; -shade8: #EEEEEE; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #303030; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Green.rasi b/Common/rofi/launchers/slate/styles/Green.rasi deleted file mode 100644 index 459e254..0000000 --- a/Common/rofi/launchers/slate/styles/Green.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Green -- */ - -* { -shade1: #1B5E20; -shade2: #2E7D32; -shade3: #388E3C; -shade4: #43A047; -shade5: #4CAF50; -shade6: #66BB6A; -shade7: #81C784; -shade8: #A5D6A7; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #202020; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Indigo.rasi b/Common/rofi/launchers/slate/styles/Indigo.rasi deleted file mode 100644 index e403909..0000000 --- a/Common/rofi/launchers/slate/styles/Indigo.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Indigo -- */ - -* { -shade1: #1A237E; -shade2: #283593; -shade3: #303F9F; -shade4: #3949AB; -shade5: #3F51B5; -shade6: #5C6BC0; -shade7: #7986CB; -shade8: #9FA8DA; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Light_blue.rasi b/Common/rofi/launchers/slate/styles/Light_blue.rasi deleted file mode 100644 index df7b9a2..0000000 --- a/Common/rofi/launchers/slate/styles/Light_blue.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Light Blue -- */ - -* { -shade1: #01579B; -shade2: #0277BD; -shade3: #0288D1; -shade4: #039BE5; -shade5: #03A9F4; -shade6: #29B6F6; -shade7: #4FC3F7; -shade8: #81D4FA; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #202020; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Light_green.rasi b/Common/rofi/launchers/slate/styles/Light_green.rasi deleted file mode 100644 index 39738ea..0000000 --- a/Common/rofi/launchers/slate/styles/Light_green.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Light Green -- */ - -* { -shade1: #33691E; -shade2: #558B2F; -shade3: #689F38; -shade4: #7CB342; -shade5: #8BC34A; -shade6: #9CCC65; -shade7: #AED581; -shade8: #C5E1A5; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #353535; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Lime.rasi b/Common/rofi/launchers/slate/styles/Lime.rasi deleted file mode 100644 index a688a10..0000000 --- a/Common/rofi/launchers/slate/styles/Lime.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Lime -- */ - -* { -shade1: #827717; -shade2: #9E9D24; -shade3: #AFB42B; -shade4: #C0CA33; -shade5: #CDDC39; -shade6: #D4E157; -shade7: #DCE775; -shade8: #E6EE9C; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #252525; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #404040; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Orange.rasi b/Common/rofi/launchers/slate/styles/Orange.rasi deleted file mode 100644 index a6cdc35..0000000 --- a/Common/rofi/launchers/slate/styles/Orange.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Orange -- */ - -* { -shade1: #E65100; -shade2: #EF6C00; -shade3: #F57C00; -shade4: #FB8C00; -shade5: #FF9800; -shade6: #FFA726; -shade7: #FFB74D; -shade8: #FFCC80; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #202020; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #353535; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Pink.rasi b/Common/rofi/launchers/slate/styles/Pink.rasi deleted file mode 100644 index a15e577..0000000 --- a/Common/rofi/launchers/slate/styles/Pink.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Pink -- */ - -* { -shade1: #880E4F; -shade2: #AD1457; -shade3: #C2185B; -shade4: #D81B60; -shade5: #E91E63; -shade6: #EC407A; -shade7: #F06292; -shade8: #F48FB1; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Purple.rasi b/Common/rofi/launchers/slate/styles/Purple.rasi deleted file mode 100644 index 2268fe5..0000000 --- a/Common/rofi/launchers/slate/styles/Purple.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Purple -- */ - -* { -shade1: #4A148C; -shade2: #6A1B9A; -shade3: #7B1FA2; -shade4: #8E24AA; -shade5: #9C27B0; -shade6: #AB47BC; -shade7: #BA68C8; -shade8: #CE93D8; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Red.rasi b/Common/rofi/launchers/slate/styles/Red.rasi deleted file mode 100644 index ea14821..0000000 --- a/Common/rofi/launchers/slate/styles/Red.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Red -- */ - -* { -shade1: #B71C1C; -shade2: #C62828; -shade3: #D32F2F; -shade4: #E53935; -shade5: #EE413D; -shade6: #EF5350; -shade7: #E57373; -shade8: #EF9A9A; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Teal.rasi b/Common/rofi/launchers/slate/styles/Teal.rasi deleted file mode 100644 index 8ac9c03..0000000 --- a/Common/rofi/launchers/slate/styles/Teal.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Teal -- */ - -* { -shade1: #004D40; -shade2: #00695C; -shade3: #00796B; -shade4: #00897B; -shade5: #009688; -shade6: #26A69A; -shade7: #4DB6AC; -shade8: #80CBC4; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #ffffff; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #ffffff; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/Yellow.rasi b/Common/rofi/launchers/slate/styles/Yellow.rasi deleted file mode 100644 index ce28546..0000000 --- a/Common/rofi/launchers/slate/styles/Yellow.rasi +++ /dev/null @@ -1,36 +0,0 @@ -/* -- Yellow -- */ - -* { -shade1: #F57F17; -shade2: #F9A825; -shade3: #FBC02D; -shade4: #FDD835; -shade5: #FFEB3B; -shade6: #FFEE58; -shade7: #FFF176; -shade8: #FFF59D; -} - -/**** Comment One First To Use Another ****/ - -/* -- Dark -- */ -* { - border: @shade1; - border-alt: @shade2; - background: @shade3; - background-alt: @shade3; - selected: @shade4; - foreground: #353535; - urgent: #DA4453; -} - -/* -- light -- */ -* { - border: @shade8; - border-alt: @shade7; - background: @shade6; - background-alt: @shade6; - selected: @shade5; - foreground: #505050; - urgent: #DA4453; -} diff --git a/Common/rofi/launchers/slate/styles/colors.rasi b/Common/rofi/launchers/slate/styles/colors.rasi deleted file mode 100644 index 3f21382..0000000 --- a/Common/rofi/launchers/slate/styles/colors.rasi +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * - * Amber Blue Blue_gray Black Brown Cyan Deep_orange - * Deep_purple Gray Green Indigo Light_blue Light_green Lime - * Orange Pink Purple Red Teal Yellow - * - */ - -@import "Blue.rasi" diff --git a/Common/rofi/launchers/text/launcher.sh b/Common/rofi/launchers/text/launcher.sh deleted file mode 100755 index b5c28a6..0000000 --- a/Common/rofi/launchers/text/launcher.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# style_1 style_2 style_3 style_4 style_5 style_6 style_7 - -theme="style_2" - -dir="$HOME/.config/rofi/launchers/text" -styles=($(ls -p --hide="colors.rasi" $dir/styles)) -color="${styles[$(( $RANDOM % 10 ))]}" - -# comment this line to disable random colors -sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi - -# comment these lines to disable random style -themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir)) -theme="${themes[$(( $RANDOM % 7 ))]}" - -rofi -no-lazy-grab -show drun \ --modi run,drun,window \ --theme $dir/"$theme" - diff --git a/Common/rofi/launchers/text/style_1.rasi b/Common/rofi/launchers/text/style_1.rasi deleted file mode 100644 index 2dc1a73..0000000 --- a/Common/rofi/launchers/text/style_1.rasi +++ /dev/null @@ -1,176 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 2; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 1; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 12px; - padding: 40; - width: 50%; - height: 50%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 4px 0px 0px; -} - -element { - border: 0px; - padding: 1px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @bg; - text-color: @green; -} -element selected.normal { - background-color: @bg; - text-color: @ac; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @bg; - text-color: @ac; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 20px; -} - -button { - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 20px; - border-color: @fg; -} - -button selected { - text-color: @fg; - border: 3px; - border-radius: 20px; - border-color: @ac; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_2.rasi b/Common/rofi/launchers/text/style_2.rasi deleted file mode 100644 index c762dd6..0000000 --- a/Common/rofi/launchers/text/style_2.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 15; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 6px; - padding: 30; - width: 20%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 5px; - text-color: @bg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_3.rasi b/Common/rofi/launchers/text/style_3.rasi deleted file mode 100644 index 74e3b0d..0000000 --- a/Common/rofi/launchers/text/style_3.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 6; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 6px; - padding: 15; - width: 20%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 5px; - text-color: @bg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_4.rasi b/Common/rofi/launchers/text/style_4.rasi deleted file mode 100644 index 4b81aa8..0000000 --- a/Common/rofi/launchers/text/style_4.rasi +++ /dev/null @@ -1,179 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 15; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 1; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 30; - width: 20%; - height: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 15px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 4px; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @ac; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @ac; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @red; - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @green; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_5.rasi b/Common/rofi/launchers/text/style_5.rasi deleted file mode 100644 index af45c55..0000000 --- a/Common/rofi/launchers/text/style_5.rasi +++ /dev/null @@ -1,181 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 5; - columns: 3; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: true; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 300px; - width: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 5px; - scrollbar: false; - padding: 25px 5px -20px 5px; -} - -element { - border: 4px; - border-radius: 4px; - padding: 15px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @bg; - text-color: @fg; - border-color: @green; -} -element selected.normal { - background-color: @bg; - text-color: @fg; - border-color: @fg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @bg; - text-color: @fg; - border-color: @fg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @se; - margin: 5px; - padding: 15px; - text-color: @fg; - border: 0px; - border-radius: 4px; - border-color: @fg; -} - -button selected { - background-color: @bg; - text-color: @fg; - border: 4px; - border-radius: 4px; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_6.rasi b/Common/rofi/launchers/text/style_6.rasi deleted file mode 100644 index b05bc90..0000000 --- a/Common/rofi/launchers/text/style_6.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 1; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: true; - fake-transparency: false; - scroll-method: 0; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 0px; - padding: 30%; - width: 100%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 5px; - scrollbar: false; - padding: 35px 5px 25px 5px; -} - -element { - border: 0px; - border-radius: 100%; - padding: 15px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @fg; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @fg; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @fg; - margin: 5px; - padding: 15px; - text-color: @bg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -button selected { - background-color: @ac; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/style_7.rasi b/Common/rofi/launchers/text/style_7.rasi deleted file mode 100644 index 9b6d471..0000000 --- a/Common/rofi/launchers/text/style_7.rasi +++ /dev/null @@ -1,178 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - lines: 10; - columns: 2; - font: "Iosevka Nerd Font 12"; - bw: 0; - location: 0; - padding: 0; - fixed-num-lines: true; - show-icons: false; - sidebar-mode: true; - separator-style: "none"; - hide-scrollbar: true; - fullscreen: false; - fake-transparency: false; - scroll-method: 1; - window-format: "[{w}] ··· {c} ··· {t}"; - click-to-exit: true; - show-match: false; - combi-hide-mode-prefix: false; - display-window: ""; - display-windowcd: ""; - display-run: ""; - display-ssh: ""; - display-drun: ""; - display-combi: ""; -} - -@import "styles/colors.rasi" - -* { - background-color: @bg; -} - -window { - border: 0px; - border-color: @ac; - border-radius: 20px; - padding: 30; - width: 40%; -} - -prompt { - spacing: 0; - border: 0; - text-color: @fg; -} - -textbox-prompt-colon { - expand: false; - str: " "; - margin: 0px 4px 0px 0px; - text-color: inherit; -} - -entry { - spacing: 0; - text-color: @fg; -} - -case-indicator { - spacing: 0; - text-color: @fg; -} - -inputbar { - spacing: 0px; - text-color: @fg; - padding: 1px; - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} - -mainbox { - border: 0px; - border-color: @ac; - padding: 6; -} - -listview { - fixed-height: 0; - border: 0px; - border-color: @ac; - spacing: 4px; - scrollbar: false; - padding: 5px 5px 0px 5px; -} - -element { - border: 0px; - border-radius: 100%; - padding: 5px; -} -element normal.normal { - background-color: @bg; - text-color: @fg; -} -element normal.urgent { - background-color: @bg; - text-color: @red; -} -element normal.active { - background-color: @green; - text-color: @bg; -} -element selected.normal { - background-color: @ac; - text-color: @bg; -} -element selected.urgent { - background-color: @bg; - text-color: @red; -} -element selected.active { - background-color: @ac; - text-color: @bg; -} -element alternate.normal { - background-color: @bg; - text-color: @fg; -} -element alternate.urgent { - background-color: @bg; - text-color: @fg; -} -element alternate.active { - background-color: @bg; - text-color: @fg; -} - -sidebar { - border: 0px; - border-color: @ac; - border-radius: 0px; -} - -button { - background-color: @red; - margin: 5px; - padding: 5px; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -button selected { - background-color: @green; - text-color: @fg; - border: 0px; - border-radius: 100%; - border-color: @fg; -} - -scrollbar { - width: 4px; - border: 0px; - handle-color: @fg; - handle-width: 8px; - padding: 0; -} - -message { - border: 0px; - border-color: @ac; - padding: 1px; -} - -textbox { - text-color: @fg; -} diff --git a/Common/rofi/launchers/text/styles/berry.rasi b/Common/rofi/launchers/text/styles/berry.rasi deleted file mode 100644 index 65ab4f1..0000000 --- a/Common/rofi/launchers/text/styles/berry.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #280F28ff; - se: #2D142Cff; - fg: #ffffffA6; - ac: #EE4540ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/black.rasi b/Common/rofi/launchers/text/styles/black.rasi deleted file mode 100644 index 77366f1..0000000 --- a/Common/rofi/launchers/text/styles/black.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #101010ff; - se: #151515ff; - fg: #f5f5f5ff; - ac: #42A5F5ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/bluish.rasi b/Common/rofi/launchers/text/styles/bluish.rasi deleted file mode 100644 index ad8b84f..0000000 --- a/Common/rofi/launchers/text/styles/bluish.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #EFF0F1FF; - se: #E3E3E3FF; - fg: #000000A6; - ac: #000B83FF; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/cocoa.rasi b/Common/rofi/launchers/text/styles/cocoa.rasi deleted file mode 100644 index 3c641a4..0000000 --- a/Common/rofi/launchers/text/styles/cocoa.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #3C3945FF; - se: #413E4Aff; - fg: #F7C7B2ff; - ac: #B38184ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/colors.rasi b/Common/rofi/launchers/text/styles/colors.rasi deleted file mode 100644 index 5b5d2b7..0000000 --- a/Common/rofi/launchers/text/styles/colors.rasi +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * - * bluish berry nordic nightly gotham mask faded cocoa - * black white - * - */ - -@import "berry.rasi" diff --git a/Common/rofi/launchers/text/styles/faded.rasi b/Common/rofi/launchers/text/styles/faded.rasi deleted file mode 100644 index c9567e0..0000000 --- a/Common/rofi/launchers/text/styles/faded.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #57678CFF; - se: #5E6C91ff; - fg: #FFFCFFff; - ac: #FF83A7ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/gotham.rasi b/Common/rofi/launchers/text/styles/gotham.rasi deleted file mode 100644 index 4d13693..0000000 --- a/Common/rofi/launchers/text/styles/gotham.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #24334Aff; - se: #29384Fff; - fg: #FEFFF1ff; - ac: #3A6081ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/mask.rasi b/Common/rofi/launchers/text/styles/mask.rasi deleted file mode 100644 index afb1cfa..0000000 --- a/Common/rofi/launchers/text/styles/mask.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #3E4667ff; - se: #434C6Dff; - fg: #FAF7CCff; - ac: #CA8CA5ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/nightly.rasi b/Common/rofi/launchers/text/styles/nightly.rasi deleted file mode 100644 index 75d3a00..0000000 --- a/Common/rofi/launchers/text/styles/nightly.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #25344Bff; - se: #2A3950ff; - fg: #FEFFF1ff; - ac: #A162F7ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/nordic.rasi b/Common/rofi/launchers/text/styles/nordic.rasi deleted file mode 100644 index 8ff9560..0000000 --- a/Common/rofi/launchers/text/styles/nordic.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #425775ff; - se: #475C7Bff; - fg: #ffffffcc; - ac: #FDBB6Dff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/launchers/text/styles/white.rasi b/Common/rofi/launchers/text/styles/white.rasi deleted file mode 100644 index 48f1c8c..0000000 --- a/Common/rofi/launchers/text/styles/white.rasi +++ /dev/null @@ -1,15 +0,0 @@ -/* colors */ - -* { - al: #00000000; - bg: #ffffffff; - se: #f5f5f5ff; - fg: #000000ff; - ac: #2900D0ff; - red: #EC7875ff; - green: #61C766ff; - yellow: #FDD835ff; - blue: #42A5F5ff; - purple: #BA68C8ff; - cyan: #4DD0E1ff; -} diff --git a/Common/rofi/powermenu/card_alt.rasi b/Common/rofi/powermenu/card_alt.rasi deleted file mode 100644 index ae057fa..0000000 --- a/Common/rofi/powermenu/card_alt.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 12"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0%; - height: 28.5%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 0.5% 0.5% 0.5% 0%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0.2% 0.2%; - border-radius: 1%; - border-color: @border; - margin: 0% 21.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 2%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3.5%; - padding: 4% 0% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 4%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 4.7% 2.7% 7.5% 2.7%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.2% 0.2%; - border-radius: 4%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/card_circle.rasi b/Common/rofi/powermenu/card_circle.rasi deleted file mode 100644 index 07373bc..0000000 --- a/Common/rofi/powermenu/card_circle.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 12"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 28.5%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 0.5% 0.5% 0.5% 0%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.2% 0.2% 0%; - border-radius: 0% 100% 100% 100%; - border-color: @border; - margin: 0% 21.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 2%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3.5%; - padding: 4% 0% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 4.5% 2.7% 7.5% 2.7%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.2% 0.2% 0%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/card_rounded.rasi b/Common/rofi/powermenu/card_rounded.rasi deleted file mode 100644 index b22d130..0000000 --- a/Common/rofi/powermenu/card_rounded.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 12"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 28.5%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 0.5% 0.5% 0.5% 0%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0.2% 0% 0.2% 0%; - border-radius: 12px; - border-color: @border; - margin: 0% 21.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 2%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3.5%; - padding: 4% 0% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 25px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 4.7% 2.7% 7.5% 2.7%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.2% 0% 0.2% 0%; - border-radius: 25px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/card_square.rasi b/Common/rofi/powermenu/card_square.rasi deleted file mode 100644 index d7d86a0..0000000 --- a/Common/rofi/powermenu/card_square.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 12"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 28.5%; - width: 50%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 0.5% 0.5% 0.5% 0%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0.2%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 21.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 2%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3.5%; - padding: 4% 0% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 4.5% 2.7% 7.5% 2.7%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0% 0.2%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/column_alt.rasi b/Common/rofi/powermenu/column_alt.rasi deleted file mode 100644 index 379d5f7..0000000 --- a/Common/rofi/powermenu/column_alt.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 100%; - width: 12.25%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System"; - background-color: @border; - text-color: @background; - padding: 1% 1% 1% 2.2%; -} - -inputbar { - children: [ textbox-prompt-colon ]; - background-color: @border; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 1.5%; - border-color: @border; - margin: 0% 0% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3%; - padding: 4% 2% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 5%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 5% 0% 7.8% 0%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @border; - text-color: @foreground; - border: 0% 0% 0% 0%; - border-radius: 5%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/column_circle.rasi b/Common/rofi/powermenu/column_circle.rasi deleted file mode 100644 index 8a038f7..0000000 --- a/Common/rofi/powermenu/column_circle.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 100%; - width: 12.25%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System"; - background-color: @border; - text-color: @background; - padding: 1% 1% 1% 2.2%; -} - -inputbar { - children: [ textbox-prompt-colon ]; - background-color: @border; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 100%; - border-color: @border; - margin: 0% 0% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3%; - padding: 4% 2% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 100%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 5% 0% 7.8% 0%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.2%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/column_rounded.rasi b/Common/rofi/powermenu/column_rounded.rasi deleted file mode 100644 index a92b907..0000000 --- a/Common/rofi/powermenu/column_rounded.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 100%; - width: 12.25%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System"; - background-color: @border; - text-color: @background; - padding: 1% 1% 1% 2.2%; -} - -inputbar { - children: [ textbox-prompt-colon ]; - background-color: @border; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0%; - border-radius: 15px; - border-color: @border; - margin: 0% 0% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3%; - padding: 4% 2% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 25px; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 5% 0% 7.8% 0%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.2% 0% 0.2% 0%; - border-radius: 25px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/column_square.rasi b/Common/rofi/powermenu/column_square.rasi deleted file mode 100644 index 81a5651..0000000 --- a/Common/rofi/powermenu/column_square.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 100%; - width: 12.25%; - location: east; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 0.5% 0.5% 0.5% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System"; - background-color: @border; - text-color: @background; - padding: 1% 1% 1% 2.2%; -} - -inputbar { - children: [ textbox-prompt-colon ]; - background-color: @border; - text-color: @foreground; - expand: false; - border: 0% 0% 0.2% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 0% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: vertical; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 3%; - padding: 4% 2% 0% 2%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: vertical; - border-radius: 0%; -} - -element-text { - font: "feather 32"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 5% 0% 7.8% 0%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.2% 0%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/confirm.rasi b/Common/rofi/powermenu/confirm.rasi deleted file mode 100644 index 9a5bba6..0000000 --- a/Common/rofi/powermenu/confirm.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Confirm Dialog */ - -@import "styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -window { - width: 225px; - padding: 25px; - border: 1px; - border-radius: 0px; - border-color: @border; - location: center; - y-offset: -2em; -} - -entry { - expand: true; - text-color: @border; -} diff --git a/Common/rofi/powermenu/dock_alt.rasi b/Common/rofi/powermenu/dock_alt.rasi deleted file mode 100644 index d9985ac..0000000 --- a/Common/rofi/powermenu/dock_alt.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.1% 0.5% 0.5%; - border-radius: 1% 2% 3% 4%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 1% 2% 3% 4%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.8% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.1% 0.5% 0.5%; - border-radius: 1% 2% 3% 4%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/dock_circle.rasi b/Common/rofi/powermenu/dock_circle.rasi deleted file mode 100644 index 1e49e19..0000000 --- a/Common/rofi/powermenu/dock_circle.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.1% 0.5% 0%; - border-radius: 100%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 100%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.8% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.1% 0.5% 0%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/dock_rounded.rasi b/Common/rofi/powermenu/dock_rounded.rasi deleted file mode 100644 index 448dd8e..0000000 --- a/Common/rofi/powermenu/dock_rounded.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0.2% 0% 0.2% 0%; - border-radius: 16px; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 35px; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.8% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.2% 0% 0.2% 0%; - border-radius: 35px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/dock_square.rasi b/Common/rofi/powermenu/dock_square.rasi deleted file mode 100644 index d3ab04a..0000000 --- a/Common/rofi/powermenu/dock_square.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: south; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0.1% 0.1% 0.1% 0.5%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.8% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.1% 0.1% 0.1% 0.5%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/drop_alt.rasi b/Common/rofi/powermenu/drop_alt.rasi deleted file mode 100644 index 1bfd2ab..0000000 --- a/Common/rofi/powermenu/drop_alt.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 7%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.1% 0.5% 0.5%; - border-radius: 1% 2% 3% 4%; - border-color: @border; - margin: 0% 33.25% 0% 20%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ listview, inputbar ]; - spacing: 0%; - padding: 5% 0% 5% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 1% 2% 3% 4%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.1% 0.5% 0.5%; - border-radius: 1% 2% 3% 4%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/drop_circle.rasi b/Common/rofi/powermenu/drop_circle.rasi deleted file mode 100644 index 2714cb0..0000000 --- a/Common/rofi/powermenu/drop_circle.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 7%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.1% 0.5% 0%; - border-radius: 100%; - border-color: @border; - margin: 0% 33.25% 0% 20%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ listview, inputbar ]; - spacing: 0%; - padding: 5% 0% 5% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 100%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.1% 0.5% 0%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/drop_rounded.rasi b/Common/rofi/powermenu/drop_rounded.rasi deleted file mode 100644 index 3006a7d..0000000 --- a/Common/rofi/powermenu/drop_rounded.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 7%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0.2% 0% 0.2% 0%; - border-radius: 16px; - border-color: @border; - margin: 0% 33.25% 0% 20%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ listview, inputbar ]; - spacing: 0%; - padding: 5% 0% 5% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 35px; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0.2% 0% 0.2% 0%; - border-radius: 35px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/drop_square.rasi b/Common/rofi/powermenu/drop_square.rasi deleted file mode 100644 index 199f314..0000000 --- a/Common/rofi/powermenu/drop_square.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: north; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 7%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0.2% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 33.25% 0% 20%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ listview, inputbar ]; - spacing: 0%; - padding: 5% 0% 5% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.2% 0%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/full_alt.rasi b/Common/rofi/powermenu/full_alt.rasi deleted file mode 100644 index e53e438..0000000 --- a/Common/rofi/powermenu/full_alt.rasi +++ /dev/null @@ -1,118 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.2% 0.2% 0%; - border-radius: 1%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 32.50% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 5%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.2% 0.2% 0%; - border-radius: 5%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/full_circle.rasi b/Common/rofi/powermenu/full_circle.rasi deleted file mode 100644 index 26a8b95..0000000 --- a/Common/rofi/powermenu/full_circle.rasi +++ /dev/null @@ -1,118 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.2% 0% 0.2%; - border-radius: 0% 100% 100% 0%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 32.50% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 100%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.2% 0% 0%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/full_rounded.rasi b/Common/rofi/powermenu/full_rounded.rasi deleted file mode 100644 index 81eeb44..0000000 --- a/Common/rofi/powermenu/full_rounded.rasi +++ /dev/null @@ -1,118 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0.2% 0.2%; - border-radius: 15px; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 32.50% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 25px; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.2% 0.2%; - border-radius: 25px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/full_square.rasi b/Common/rofi/powermenu/full_square.rasi deleted file mode 100644 index 0ea6af7..0000000 --- a/Common/rofi/powermenu/full_square.rasi +++ /dev/null @@ -1,118 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: true; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0.2% 0%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 32.50% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.2% 0%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/message.rasi b/Common/rofi/powermenu/message.rasi deleted file mode 100644 index 37e035e..0000000 --- a/Common/rofi/powermenu/message.rasi +++ /dev/null @@ -1,24 +0,0 @@ -/* Message Dialog */ - -@import "styles/colors.rasi" - -* { - background-color: @background; - text-color: @foreground; - font: "FantasqueSansMono Nerd Font 12"; -} - -window { - width: 360px; - padding: 25px; - border: 1px; - border-radius: 0px; - border-color: @border; - location: center; - y-offset: -2em; -} - -entry { - expand: true; - text-color: @border; -} diff --git a/Common/rofi/powermenu/powermenu.sh b/Common/rofi/powermenu/powermenu.sh deleted file mode 100755 index 9b444f4..0000000 --- a/Common/rofi/powermenu/powermenu.sh +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya -## Mail : adi1090x@gmail.com -## Github : @adi1090x -## Twitter : @adi1090x - -# Available Styles -# >> Created and tested on : rofi 1.6.0-1 -# -# column_circle column_square column_rounded column_alt -# card_circle card_square card_rounded card_alt -# dock_circle dock_square dock_rounded dock_alt -# drop_circle drop_square drop_rounded drop_alt -# full_circle full_square full_rounded full_alt -# row_circle row_square row_rounded row_alt - -theme="full_circle" -dir="$HOME/.config/rofi/powermenu" - -# random colors -styles=($(ls -p --hide="colors.rasi" $dir/styles)) -color="${styles[$(( $RANDOM % 8 ))]}" - -# comment this line to disable random colors -sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi - -# comment these lines to disable random style -themes=($(ls -p --hide="powermenu.sh" --hide="styles" --hide="confirm.rasi" --hide="message.rasi" $dir)) -theme="${themes[$(( $RANDOM % 24 ))]}" - -uptime=$(uptime -p | sed -e 's/up //g') - -rofi_command="rofi -theme $dir/$theme" - -# Options -shutdown="" -reboot="" -lock="" -suspend="" -logout="" - -# Confirmation -confirm_exit() { - rofi -dmenu\ - -i\ - -no-fixed-num-lines\ - -p "Are You Sure? : "\ - -theme $dir/confirm.rasi -} - -# Message -msg() { - rofi -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n" -} - -# Variable passed to rofi -options="$shutdown\n$reboot\n$lock\n$suspend\n$logout" - -chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 2)" -case $chosen in - $shutdown) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl poweroff - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $reboot) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - systemctl reboot - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $lock) - if [[ -f /usr/bin/i3lock ]]; then - i3lock - elif [[ -f /usr/bin/betterlockscreen ]]; then - betterlockscreen -l - fi - ;; - $suspend) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - mpc -q pause - amixer set Master mute - systemctl suspend - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; - $logout) - ans=$(confirm_exit &) - if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then - if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then - openbox --exit - elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then - bspc quit - elif [[ "$DESKTOP_SESSION" == "i3" ]]; then - i3-msg exit - fi - elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then - exit 0 - else - msg - fi - ;; -esac diff --git a/Common/rofi/powermenu/row_alt.rasi b/Common/rofi/powermenu/row_alt.rasi deleted file mode 100644 index ac17dcf..0000000 --- a/Common/rofi/powermenu/row_alt.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.5% 0.3% 0.1%; - border-radius: 1%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 3%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.5% 0.3% 0.1%; - border-radius: 3%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/row_circle.rasi b/Common/rofi/powermenu/row_circle.rasi deleted file mode 100644 index 1634965..0000000 --- a/Common/rofi/powermenu/row_circle.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0.5% 0%; - border-radius: 100%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 100%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0.5% 0%; - border-radius: 100%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/row_rounded.rasi b/Common/rofi/powermenu/row_rounded.rasi deleted file mode 100644 index 90087c7..0000000 --- a/Common/rofi/powermenu/row_rounded.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0.3% 0% 0.3%; - border-radius: 18px; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 50px; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0.3% 0% 0.3%; - border-radius: 50px; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/row_square.rasi b/Common/rofi/powermenu/row_square.rasi deleted file mode 100644 index 34b6d9e..0000000 --- a/Common/rofi/powermenu/row_square.rasi +++ /dev/null @@ -1,123 +0,0 @@ -/* - * - * Author : Aditya Shakya - * Mail : adi1090x@gmail.com - * Github : @adi1090x - * Twitter : @adi1090x - * - */ - -configuration { - font: "FantasqueSansMono Nerd Font 14"; - show-icons: false; - icon-theme: "Papirus"; - drun-display-format: "{name}"; - disable-history: false; - fullscreen: false; - hide-scrollbar: true; - sidebar-mode: false; -} - -@import "styles/colors.rasi" - -window { - transparency: "real"; - background-color: @background; - text-color: @foreground; - border-radius: 0px; - height: 42%; - width: 100%; - location: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 1% 1% 1% 0%; - background-color: @background-alt; - text-color: @foreground; -} - -textbox-prompt-colon { - expand: false; - str: "System |"; - background-color: @background-alt; - text-color: @foreground; - padding: 1% 0.5% 1% 0.5%; -} - -inputbar { - children: [ textbox-prompt-colon, prompt ]; - background-color: @background-alt; - text-color: @foreground; - expand: false; - border: 0% 0% 0% 0.5%; - border-radius: 0% 0% 0% 0%; - border-color: @border; - margin: 0% 59.3% 0% 0%; - padding: 0.5%; - position: center; -} - -listview { - background-color: @background; - margin: 0% 0% 0% 0%; - spacing: 3%; - cycle: true; - dynamic: true; - layout: horizontal; -} - -mainbox { - background-color: @background; - children: [ inputbar, listview ]; - spacing: 5%; - padding: 5% 0% 0% 13.25%; -} - -element { - background-color: @background-alt; - text-color: @foreground; - orientation: horizontal; - border-radius: 0%; -} - -element-text { - font: "feather 64"; - expand: true; - horizontal-align: 0.5; - vertical-align: 0.5; - margin: 6.5% 4% 13.5% 4%; -} - -element normal.urgent, -element alternate.urgent { - background-color: @urgent; - text-color: @foreground; - border-radius: 0.2%; -} - -element normal.active, -element alternate.active { - background-color: @background-alt; - text-color: @foreground; -} - -element selected { - background-color: @selected; - text-color: @foreground; - border: 0% 0% 0% 0.5%; - border-radius: 0%; - border-color: @border; -} - -element selected.urgent { - background-color: @urgent; - text-color: @foreground; -} - -element selected.active { - background-color: @background-alt; - color: @foreground; -} diff --git a/Common/rofi/powermenu/styles/berry.rasi b/Common/rofi/powermenu/styles/berry.rasi deleted file mode 100644 index 025c231..0000000 --- a/Common/rofi/powermenu/styles/berry.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #280F28ff; - background-alt: #2D142Cff; - foreground: #ffffffA6; - border: #EE4540ff; - border-alt: #C92A42ff; - selected: #510A3299; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/bluish.rasi b/Common/rofi/powermenu/styles/bluish.rasi deleted file mode 100644 index 2305bd5..0000000 --- a/Common/rofi/powermenu/styles/bluish.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #EFF0F1FF; - background-alt: #E3E3E3FF; - foreground: #000000A6; - border: #000B83FF; - border-alt: #3DAEE9FF; - selected: #93CEE9FF; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/cocoa.rasi b/Common/rofi/powermenu/styles/cocoa.rasi deleted file mode 100644 index 31f780d..0000000 --- a/Common/rofi/powermenu/styles/cocoa.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #3C3945FF; - background-alt: #413E4Aff; - foreground: #F7C7B2ff; - border: #B38184ff; - border-alt: #F3B69Eff; - selected: #B381841a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/colors.rasi b/Common/rofi/powermenu/styles/colors.rasi deleted file mode 100644 index 058681d..0000000 --- a/Common/rofi/powermenu/styles/colors.rasi +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Change the colorscheme for every menu simply by editing this file... - * - * Available Color Schemes - * - * bluish berry nordic nightly gotham mask faded cocoa - * - */ - -@import "berry.rasi" diff --git a/Common/rofi/powermenu/styles/faded.rasi b/Common/rofi/powermenu/styles/faded.rasi deleted file mode 100644 index 0eebd64..0000000 --- a/Common/rofi/powermenu/styles/faded.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #57678CFF; - background-alt: #5E6C91ff; - foreground: #FFFCFFff; - border: #FF83A7ff; - border-alt: #F4BB6Cff; - selected: #A0B5F44c; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/gotham.rasi b/Common/rofi/powermenu/styles/gotham.rasi deleted file mode 100644 index 2bae381..0000000 --- a/Common/rofi/powermenu/styles/gotham.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #24334Aff; - background-alt: #29384Fff; - foreground: #FEFFF1ff; - border: #3A6081ff; - border-alt: #715979ff; - selected: #C46C854C; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/mask.rasi b/Common/rofi/powermenu/styles/mask.rasi deleted file mode 100644 index c63ac9e..0000000 --- a/Common/rofi/powermenu/styles/mask.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #3E4667ff; - background-alt: #434C6Dff; - foreground: #FAF7CCff; - border: #CA8CA5ff; - border-alt: #F0B2B3ff; - selected: #EFD4B61a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/nightly.rasi b/Common/rofi/powermenu/styles/nightly.rasi deleted file mode 100644 index 400e6cd..0000000 --- a/Common/rofi/powermenu/styles/nightly.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #25344Bff; - background-alt: #2A3950ff; - foreground: #FEFFF1ff; - border: #A162F7ff; - border-alt: #45E3FFff; - selected: #6F88FE1a; - urgent: #DA4453FF; -} diff --git a/Common/rofi/powermenu/styles/nordic.rasi b/Common/rofi/powermenu/styles/nordic.rasi deleted file mode 100644 index 953b52e..0000000 --- a/Common/rofi/powermenu/styles/nordic.rasi +++ /dev/null @@ -1,9 +0,0 @@ -* { - background: #425775ff; - background-alt: #475C7Bff; - foreground: #ffffffcc; - border: #FDBB6Dff; - border-alt: #DA717Fff; - selected: #685E79ff; - urgent: #DA4453FF; -} diff --git a/Common/rofi/rofi b/Common/rofi/rofi deleted file mode 160000 -Subproject 9c4093c665326bb08d6affc7e16d18d8f25c445 |