Rice update

laptop
Elias Almqvist 1 year ago
parent 4e5ab1a9d3
commit 292401c4c1
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. BIN
      .wallpaper.png
  2. 31
      eww/.config/eww/eww.scss
  3. 15
      eww/.config/eww/eww.yuck
  4. 2
      leftwm/.config/leftwm/themes/gruv/theme.ron
  5. 30
      picom/.config/picom/picom.conf
  6. BIN
      preview.png
  7. 32
      rofi/.config/rofi/doomsidebar.rasi
  8. 30
      zathura/.config/zathura/gruvbox-dark

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 13 MiB

@ -33,14 +33,14 @@ $anim-transition: 150ms;
} }
tooltip { tooltip {
color: $fg-alt-color; color: $fg-color;
background-color: $bg-alt-color; background-color: $bg-alt-color;
border-radius: 12px; border-radius: 12px;
} }
.bar-1, .bar-1,
.bar-2 { .bar-2 {
background-color: rgba(0, 0, 0, 0.65); background-color: rgba(29, 31, 33, 0.75);
} }
.main-cont { .main-cont {
@ -66,18 +66,18 @@ tooltip {
.inactive, .inactive,
.active { .active {
font-size: 1.28rem; font-size: 1.4rem;
} }
.inactive { .inactive {
color: $fg-color; color: $fg-color;
transition: color $anim-transition; transition: color $anim-transition;
color: $fg-color;
} }
.active { .active {
color: $fg-color; color: $fg-color;
} }
// POWERMENU
.pm-inner { .pm-inner {
padding-left: 6px; padding-left: 6px;
padding-right: 6px; padding-right: 6px;
@ -85,6 +85,27 @@ tooltip {
padding-bottom: 0; padding-bottom: 0;
} }
.pm-inner button {
font-size: 16px;
}
.poweroff {
color: $red;
}
.reboot {
color: $yellow;
}
.logout {
color: $green;
}
.lock {
color: $blue;
}
// ICON & LOGO
.icon { .icon {
font-size: 1.2rem; font-size: 1.2rem;
padding-left: 6px; padding-left: 6px;
@ -106,7 +127,7 @@ tooltip {
// Volume stuff // Volume stuff
.vol { .vol {
padding-left: 0; padding-left: 0;
} }
.volbar trough highlight { .volbar trough highlight {

@ -57,32 +57,32 @@
:class "pm-inner" :class "pm-inner"
:space-evenly true :space-evenly true
:valign "middle" :valign "middle"
:spacing 16 :spacing 8
;; Lock screen ;; Lock screen
(button :class "icon lock" (button :class "icon lock"
:tooltip "Lock screen" :tooltip "Lock screen"
:onclick "betterlockscreen -l" "") :onclick "betterlockscreen -l" "󰌾")
;; Quit WM (goto login manager) ;; Quit WM (goto login manager)
(button :class "icon quit" (button :class "icon logout"
:tooltip "Logout" :tooltip "Logout"
:onclick "loginctl kill-session $XDG_SESSION_ID" "") :onclick "loginctl kill-session $XDG_SESSION_ID" "󰍃")
;; Reboot ;; Reboot
(button :class "icon reboot" (button :class "icon reboot"
:tooltip "Reboot" :tooltip "Reboot"
:onclick "reboot" "") :onclick "reboot" "󰑓")
;; Poweroff ;; Poweroff
(button :class "icon poweroff" (button :class "icon poweroff"
:tooltip "Poweroff" :tooltip "Poweroff"
:onclick "poweroff" "") :onclick "poweroff" "󰐥")
)) ))
(button :class "icon logo ${power ? 'logo-seperator' : ''}" (button :class "icon logo ${power ? 'logo-seperator' : ''}"
:tooltip "Open menu" :tooltip "Open menu"
:onclick "${EWW_CMD} update power=true" "Λ") :onclick "${EWW_CMD} update power=true" "󰘧")
))) )))
(defvar power false) (defvar power false)
@ -133,6 +133,7 @@
:onchange "amixer -D pulse sset Master {}%" ) :onchange "amixer -D pulse sset Master {}%" )
) )
(button :onclick "amixer -D pulse set Master 1+ toggle" (button :onclick "amixer -D pulse set Master 1+ toggle"
:tooltip "Volume on/off"
:class "icon vol" {muted-volume != "on" ? "󰝟" : "󰕾"} :class "icon vol" {muted-volume != "on" ? "󰝟" : "󰕾"}
) )
) )

@ -1,7 +1,7 @@
#![enable(implicit_some)] #![enable(implicit_some)]
( (
border_width: 1, border_width: 1,
margin: 0, margin: 8,
default_border_color: "#232529", default_border_color: "#232529",
focused_border_color: "#636569", focused_border_color: "#636569",
floating_border_color: "#434549", floating_border_color: "#434549",

@ -77,32 +77,26 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
# Parameters for background blurring, see the *BLUR* section for more information. # Parameters for background blurring, see the *BLUR* section for more information.
# blur-method = "dual_kawase"; blur-method = "dual_kawase";
# blur-strength = 8; blur-strength = 4;
# blur-size = 2; blur-size = 2;
#
# blur-deviation = false
#
# blur-strength = 5
# Blur background of semi-transparent / ARGB windows. # Blur background of semi-transparent / ARGB windows.
# Bad in performance, with driver-dependent behavior. # Bad in performance, with driver-dependent behavior.
# The name of the switch may change without prior notifications. # The name of the switch may change without prior notifications.
# #
# blur-background = false # blur-background = true
# Blur background of windows when the window frame is not opaque. # Blur background of windows when the window frame is not opaque.
# Implies: # Implies:
# blur-background # blur-background
# Bad in performance, with driver-dependent behavior. The name may change. # Bad in performance, with driver-dependent behavior. The name may change.
# #
# blur-background-frame = false blur-background-frame = true
# Use fixed blur strength rather than adjusting according to window opacity. # Use fixed blur strength rather than adjusting according to window opacity.
blur-background-fixed = false blur-background-fixed = true
# Specify the blur convolution kernel, with the following format: # Specify the blur convolution kernel, with the following format:
@ -334,19 +328,21 @@ log-level = "warn";
################################# #################################
# Corners # # Corners #
################################# #################################
corner-radius = 0.0; corner-radius = 8.0;
rounded-corners-exclude = [ rounded-corners-exclude = [
#"window_type = 'normal'", #"window_type = 'normal'",
# "class_g = 'awesome'", # "class_g = 'awesome'",
# "class_g = 'URxvt'", # "class_g = 'URxvt'",
# "class_g = 'XTerm'", # "class_g = 'XTerm'",
# "class_g = 'kitty'", # "class_g = 'kitty'",
"class_g = 'Alacritty'", # "class_g = 'Alacritty'",
"class_g = 'discord'", "class_g = 'eww-bar-1'",
"class_g = 'Polybar'", "class_g = 'eww-bar-2'",
# "class_g = 'discord'",
# "class_g = 'Polybar'",
# "class_g = 'code-oss'", # "class_g = 'code-oss'",
# "class_g = 'TelegramDesktop'", # "class_g = 'TelegramDesktop'",
"class_g = 'firefox'", # "class_g = 'firefox'",
# "class_g = 'Thunderbird'" # "class_g = 'Thunderbird'"
]; ];
round-borders = 0; round-borders = 0;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 271 KiB

After

Width:  |  Height:  |  Size: 1.3 MiB

@ -1,16 +1,17 @@
* { * {
text-color: #efefef; text-color: #fff;
background-color: rgba(1, 0, 0, 0); background-color: rgba(1, 0, 0, 0);
dark: #282828; dark: #000;
border-color: #1d1f21; border-color: #1d1f21;
// Black // Black
blue: #81a2be; blue: #81a2be;
lightblue: #81a2be; lightblue: #81a2be;
cyan: #add9ff; cyan: #add9ff;
lightcyan: #add9ff; lightcyan: #add9ff;
black: #1d1f21; black: #000;
lightblack: #1d1f21; lightblack: #111;
blackop: #1d1f21aa; blackop: #000a;
lightblackop: #1119;
red: #cc6666; red: #cc6666;
lightred: #cc6666; lightred: #cc6666;
green: #b5bd68; green: #b5bd68;
@ -26,11 +27,11 @@
highlight: bold #ccc; highlight: bold #ccc;
} }
window { window {
/* height: 14em; */ height: 14em;
/* width: 24em; */ width: 24em;
height: 100%; /*height: 100%;*/
width: 100%; /*width: 100%;*/
location: west; location: center;
/* anchor: center; */ /* anchor: center; */
text-color: @lightwhite; text-color: @lightwhite;
} }
@ -44,9 +45,8 @@ button selected {
text-color: @lightgreen; text-color: @lightgreen;
} }
inputbar { inputbar {
background-color: @black;
text-color: @lightgreen; text-color: @lightgreen;
padding: 0.4em 1em; padding: 0.2em 1em;
height: 32px; height: 32px;
} }
entry { entry {
@ -55,10 +55,10 @@ prompt {
margin: 0 0.4em 0 0; margin: 0 0.4em 0 0;
} }
mainbox { mainbox {
/* padding: 0.2em; */ padding: 0.7em 0em;
expand: true; expand: true;
background-color: @blackop; background-color: @lightblackop;
spacing: 1em; spacing: 0.5em;
} }
listview { listview {
padding: 0em 0.4em 0em 1em; padding: 0em 0.4em 0em 1em;
@ -74,7 +74,7 @@ element {
border-radius: 2px; border-radius: 2px;
} }
element selected normal { element selected normal {
background-color: @blue; text-color: @lightblue;
} }
element normal active { element normal active {
text-color: @lightblue; text-color: @lightblue;

@ -1,12 +1,12 @@
set notification-error-bg "#181818" # bg set notification-error-bg "#1d1f21" # bg
set notification-error-fg "#fb4934" # bright:red set notification-error-fg "#fb4934" # bright:red
set notification-warning-bg "#181818" # bg set notification-warning-bg "#1d1f21" # bg
set notification-warning-fg "#fabd2f" # bright:yellow set notification-warning-fg "#fabd2f" # bright:yellow
set notification-bg "#181818" # bg set notification-bg "#1d1f21" # bg
set notification-fg "#b8bb26" # bright:green set notification-fg "#b8bb26" # bright:green
set completion-bg "#504945" # bg2 set completion-bg "#504945" # bg2
set completion-fg "#ebdbb2" # fg set completion-fg "#ffffff" # fg
set completion-group-bg "#3c3836" # bg1 set completion-group-bg "#3c3836" # bg1
set completion-group-fg "#928374" # gray set completion-group-fg "#928374" # gray
set completion-highlight-bg "#83a598" # bright:blue set completion-highlight-bg "#83a598" # bright:blue
@ -14,27 +14,27 @@ set completion-highlight-fg "#504945" # bg2
# Define the color in index mode # Define the color in index mode
set index-bg "#504945" # bg2 set index-bg "#504945" # bg2
set index-fg "#ebdbb2" # fg set index-fg "#ffffff" # fg
set index-active-bg "#83a598" # bright:blue set index-active-bg "#83a598" # bright:blue
set index-active-fg "#504945" # bg2 set index-active-fg "#504945" # bg2
set inputbar-bg "#181818" # bg set inputbar-bg "#1d1f21" # bg
set inputbar-fg "#ebdbb2" # fg set inputbar-fg "#ffffff" # fg
set statusbar-bg "#181818" # bg2 set statusbar-bg "#1d1f21" # bg2
set statusbar-fg "#ebdbb2" # fg set statusbar-fg "#ffffff" # fg
set highlight-color "#fabd2f" # bright:yellow set highlight-color "#fabd2f" # bright:yellow
set highlight-active-color "#fe8019" # bright:orange set highlight-active-color "#fe8019" # bright:orange
set default-bg "#181818" # bg set default-bg "#1d1f21" # bg
set default-fg "#ebdbb2" # fg set default-fg "#ffffff" # fg
set render-loading true set render-loading true
set render-loading-bg "#181818" # bg set render-loading-bg "#1d1f21" # bg
set render-loading-fg "#ebdbb2" # fg set render-loading-fg "#ffffff" # fg
# Recolor book content's color # Recolor book content's color
set recolor-lightcolor "#181818" # bg set recolor-lightcolor "#1d1f21" # bg
set recolor-darkcolor "#ebdbb2" # fg set recolor-darkcolor "#ffffff" # fg
set recolor "true" set recolor "true"
# set recolor-keephue true # keep original color # set recolor-keephue true # keep original color

Loading…
Cancel
Save