mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Add themes, make rofi-theme-selector show highlighted rows.
This commit is contained in:
parent
34cf7c6909
commit
d245a4e6a1
9 changed files with 165 additions and 4 deletions
15
Makefile.am
15
Makefile.am
|
@ -127,15 +127,22 @@ README.html: README.md
|
||||||
###
|
###
|
||||||
themedir=$(pkgdatadir)/themes/
|
themedir=$(pkgdatadir)/themes/
|
||||||
theme_DATA=\
|
theme_DATA=\
|
||||||
themes/Arc.theme\
|
|
||||||
themes/DarkBlue.theme\
|
|
||||||
themes/android_notification.theme\
|
themes/android_notification.theme\
|
||||||
|
themes/Arc.theme\
|
||||||
themes/blor.theme\
|
themes/blor.theme\
|
||||||
themes/blue.theme\
|
themes/blue.theme\
|
||||||
themes/c64.theme\
|
themes/c64.theme\
|
||||||
themes/purple.theme\
|
themes/DarkBlue.theme\
|
||||||
themes/lb.theme\
|
|
||||||
themes/glue_pro_blue.theme\
|
themes/glue_pro_blue.theme\
|
||||||
|
themes/gruvbox-dark-hard.theme\
|
||||||
|
themes/gruvbox-dark-soft.theme\
|
||||||
|
themes/gruvbox-dark.theme\
|
||||||
|
themes/gruvbox-light-hard.theme\
|
||||||
|
themes/gruvbox-light-soft.theme\
|
||||||
|
themes/gruvbox-light.theme\
|
||||||
|
themes/lb.theme\
|
||||||
|
themes/Paper.theme\
|
||||||
|
themes/purple.theme\
|
||||||
themes/solarized.theme\
|
themes/solarized.theme\
|
||||||
themes/solarized_alternate.theme
|
themes/solarized_alternate.theme
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,7 @@ function select_theme ()
|
||||||
{
|
{
|
||||||
local MORE_FLAGS=(-dmenu -format i -no-custom -p Theme -markup -config ${TMP_CONFIG_FILE} -i)
|
local MORE_FLAGS=(-dmenu -format i -no-custom -p Theme -markup -config ${TMP_CONFIG_FILE} -i)
|
||||||
MORE_FLAGS+=(-kb-custom-1 "Alt-a")
|
MORE_FLAGS+=(-kb-custom-1 "Alt-a")
|
||||||
|
MORE_FLAGS+=(-u 2,3 -a 4,5 )
|
||||||
local CUR="default"
|
local CUR="default"
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
|
|
15
themes/Paper.theme
Normal file
15
themes/Paper.theme
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
! ------------------------------------------------------------------------------
|
||||||
|
! ROFI Color theme
|
||||||
|
! User: qball
|
||||||
|
! ------------------------------------------------------------------------------
|
||||||
|
! "Color scheme for normal row" Set from: File
|
||||||
|
rofi.color-normal: argb:0f5f5f5, #002b36, #d0d0d0, #4271ae, #f5f5f5
|
||||||
|
! "Color scheme for urgent row" Set from: File
|
||||||
|
rofi.color-urgent: #f5f5f5, #d75f00, #d0d0d0, #d75f00, #f5f5f5
|
||||||
|
! "Color scheme for active row" Set from: File
|
||||||
|
rofi.color-active: #f5f5f5, #005f87, #d0d0d0, #005f87, #f5f5f5
|
||||||
|
! "Color scheme window" Set from: File
|
||||||
|
rofi.color-window: #f5f5f5, #444444, #444444
|
||||||
|
! "Separator style (none, dash, solid)" Set from: File
|
||||||
|
rofi.separator-style: solid
|
||||||
|
rofi.hide-scrollbar: false
|
23
themes/gruvbox-dark-hard.theme
Normal file
23
themes/gruvbox-dark-hard.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-dark-hard.theme
|
||||||
|
! Desc: Gruvbox dark (hard contrast) color theme for Rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:12:10 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #1d2021, #a89984, #a89984
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #1d2021, #ebdbb2, #282828, #504945, #fbf1c7
|
||||||
|
rofi.color-active: #d79921, #1d2021, #d79921, #fabd2f, #1d2021
|
||||||
|
rofi.color-urgent: #cc241d, #1d2021, #cc241d, #fb4934, #1d2021
|
23
themes/gruvbox-dark-soft.theme
Normal file
23
themes/gruvbox-dark-soft.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-dark-soft.theme
|
||||||
|
! Desc: Gruvbox dark (soft contrast) color theme for Rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:11:49 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #32302f, #a89984, #a89984
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #32302f, #ebdbb2, #3c3836, #665c54, #fbf1c7
|
||||||
|
rofi.color-active: #d79921, #32302f, #d79921, #fabd2f, #32302f
|
||||||
|
rofi.color-urgent: #cc241d, #32302f, #cc241d, #fb4934, #32302f
|
23
themes/gruvbox-dark.theme
Normal file
23
themes/gruvbox-dark.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-dark.theme
|
||||||
|
! Desc: Gruvbox dark color theme for Rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:11:40 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #282828, #a89984, #a89984
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #282828, #ebdbb2, #32302f, #665c54, #fbf1c7
|
||||||
|
rofi.color-active: #d79921, #282828, #d79921, #fabd2f, #282828
|
||||||
|
rofi.color-urgent: #cc241d, #282828, #cc241d, #fb4934, #282828
|
23
themes/gruvbox-light-hard.theme
Normal file
23
themes/gruvbox-light-hard.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-light-hard.theme
|
||||||
|
! Desc: Gruvbox light (hard contrast) color theme for Rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:11:32 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #f9f5d7, #7c6f64, #7c6f64
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #f9f5d7, #3c3836, #fbf1c7, #ebdbb2, #282828
|
||||||
|
rofi.color-active: #b57614, #fdf4c1, #b57614, #d79921, #fdf4c1
|
||||||
|
rofi.color-urgent: #cc241d, #fdf4c1, #cc241d, #fb4934, #fdf4c1
|
23
themes/gruvbox-light-soft.theme
Normal file
23
themes/gruvbox-light-soft.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-light-soft.theme
|
||||||
|
! Desc: Gruvbox light (soft contrast) color theme for Rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:11:25 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #f2e5bc, #7c6f64, #7c6f64
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #f2e5bc, #3c3836, #ebdbb2, #d5c4a1, #282828
|
||||||
|
rofi.color-active: #b57614, #f2e5bc, #b57614, #d79921, #f2e5bc
|
||||||
|
rofi.color-urgent: #cc241d, #f2e5bc, #cc241d, #fb4934, #f2e5bc
|
23
themes/gruvbox-light.theme
Normal file
23
themes/gruvbox-light.theme
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
! Rofi color theme
|
||||||
|
!
|
||||||
|
! Based on the Gruvbox color scheme for Vim by morhetz
|
||||||
|
! https://github.com/morhetz/gruvbox
|
||||||
|
!
|
||||||
|
! File: gruvbox-light.theme
|
||||||
|
! Desc: Gruvbox light color theme for rofi
|
||||||
|
! Author: bardisty <b@bah.im>
|
||||||
|
! Source: https://github.com/bardisty/gruvbox-rofi
|
||||||
|
! Modified: Sat Oct 22 2016 03:11:11 PDT -0700
|
||||||
|
!-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
! Enable the extended coloring options
|
||||||
|
rofi.color-enabled: true
|
||||||
|
|
||||||
|
! bg border separator
|
||||||
|
rofi.color-window: #fbf1c7, #7c6f64, #7c6f64
|
||||||
|
|
||||||
|
! bg fg bg-alt hl-bg hl-fg
|
||||||
|
rofi.color-normal: #fbf1c7, #3c3836, #f2e5bc, #d5c4a1, #282828
|
||||||
|
rofi.color-active: #b57614, #fbf1c7, #b57614, #d79921, #fbf1c7
|
||||||
|
rofi.color-urgent: #cc241d, #fbf1c7, #cc241d, #fb4934, #fbf1c7
|
Loading…
Reference in a new issue