new setup structure multiple fonts and various other small bug fixes
This commit is contained in:
@@ -9,11 +9,11 @@ configuration {
|
||||
@theme "/dev/null"
|
||||
|
||||
* {
|
||||
bg: #11121D;
|
||||
bg-alt: #444b6a;
|
||||
bg: #10171c;
|
||||
bg-alt: #344959;
|
||||
|
||||
fg: #FFFFFF;
|
||||
fg-alt: #787c99;
|
||||
fg: #EBEBEB;
|
||||
fg-alt: #768ca3;
|
||||
|
||||
background-color: @bg;
|
||||
|
||||
@@ -78,5 +78,4 @@ prompt {
|
||||
/* vim: ft=sass
|
||||
|
||||
// Theme location is "/usr/share/rofi/themes/name.rasi"
|
||||
|
||||
//@theme "/usr/share/rofi/themes/Arc-Dark.rasi"
|
||||
|
||||
10
config/rofi/powermenu.sh
Normal file
10
config/rofi/powermenu.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#! /bin/sh
|
||||
|
||||
chosen=$(printf " Power Off\n Restart\n Lock" | rofi -dmenu -i -theme-str '@import "powermenu.rasi"')
|
||||
|
||||
case "$chosen" in
|
||||
" Power Off") systemctl poweroff ;;
|
||||
" Restart") systemctl reboot ;;
|
||||
" Lock") i3lock-fancy -gp -- scrot -z ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
Reference in New Issue
Block a user