diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 8b367d3..65ce5d8 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -123,7 +123,7 @@ ### Text ### - font = Monospace 15 + font = FiraCodeNerdFont # The spacing between lines. If the height is smaller than the # font height, it will get raised to the font height. diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..49a3985 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,15 @@ +configuration { + font: "FiraCodeNerdFont 12"; + kb-cancel: "Super+q,Escape,Control+c"; + timeout { + action: "kb-cancel"; + delay: 0; + } + filebrowser { + directories-first: true; + sorting-method: "name"; + } +} + +@theme "gruvbox-dark-transparent" + diff --git a/.config/rofi/themes/gruvbox-dark-transparent.rasi b/.config/rofi/themes/gruvbox-dark-transparent.rasi new file mode 100644 index 0000000..15a280a --- /dev/null +++ b/.config/rofi/themes/gruvbox-dark-transparent.rasi @@ -0,0 +1,63 @@ +/* ========================================================================== + Rofi color theme + + Based on the Gruvbox color scheme for Vim by morhetz + https://github.com/morhetz/gruvbox + + File: gruvbox-dark.rasi + Desc: Gruvbox dark color theme for Rofi + Author: bardisty + Source: https://github.com/bardisty/gruvbox-rofi + Modified: Mon Feb 12 2018 04:08:43 PST -0800 + ========================================================================== */ + +* { + /* Theme settings */ + highlight: bold italic; + scrollbar: true; + + /* Gruvbox dark colors */ + gruvbox-dark-bg0: #28282899; + gruvbox-dark-bg0-soft: #32302f00; + gruvbox-dark-bg3: #665c5499; + gruvbox-dark-fg0: #fbf1c7; + gruvbox-dark-fg1: #ebdbb2; + gruvbox-dark-red-dark: #cc241d; + gruvbox-dark-red-light: #fb4934; + gruvbox-dark-yellow-dark: #d79921; + gruvbox-dark-yellow-light: #fabd2f; + gruvbox-dark-gray: #a89984; + + /* Theme colors */ + background: transparent; + background-color: @gruvbox-dark-bg0; + + foreground: @gruvbox-dark-fg1; + border-color: @gruvbox-dark-gray; + separatorcolor: @border-color; + scrollbar-handle: @border-color; + + normal-background: @background; + normal-foreground: @foreground; + alternate-normal-background: @gruvbox-dark-bg0-soft; + alternate-normal-foreground: @foreground; + selected-normal-background: @gruvbox-dark-bg3; + selected-normal-foreground: @gruvbox-dark-fg0; + + active-background: @gruvbox-dark-yellow-dark; + active-foreground: @background; + alternate-active-background: @active-background; + alternate-active-foreground: @active-foreground; + selected-active-background: @gruvbox-dark-yellow-light; + selected-active-foreground: @active-foreground; + + urgent-background: @gruvbox-dark-red-dark; + urgent-foreground: @background; + alternate-urgent-background: @urgent-background; + alternate-urgent-foreground: @urgent-foreground; + selected-urgent-background: @gruvbox-dark-red-light; + selected-urgent-foreground: @urgent-foreground; +} + +@import "gruvbox-common.rasinc" +