mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-21 05:18:39 +01:00
Colors: Fix rofi export
This commit is contained in:
parent
34f78dcf8c
commit
f1e0cf771c
22
wal
22
wal
@ -442,17 +442,17 @@ def save_colors(colors, export_file, message):
|
||||
|
||||
def export_rofi(colors):
|
||||
"""Append rofi colors to the x_colors list."""
|
||||
ColorType.xrdb.append(f"rofi.color-window: {colors[0]}, \
|
||||
{colors[0]}, {colors[10]}")
|
||||
ColorType.xrdb.append(f"rofi.color-normal: {colors[0]}, \
|
||||
{colors[15]}, {colors[0]}, \
|
||||
{colors[10]}, {colors[0]}")
|
||||
ColorType.xrdb.append(f"rofi.color-active: {colors[0]}, \
|
||||
{colors[15]}, {colors[0]}, \
|
||||
{colors[10]}, {colors[0]}")
|
||||
ColorType.xrdb.append(f"rofi.color-urgent: {colors[0]}, \
|
||||
{colors[9]}, {colors[0]}, \
|
||||
{colors[9]}, {colors[15]}")
|
||||
ColorType.xrdb.append(f"rofi.color-window: {colors[0]}, "
|
||||
f"{colors[0]}, {colors[10]}")
|
||||
ColorType.xrdb.append(f"rofi.color-normal: {colors[0]}, "
|
||||
f"{colors[15]}, {colors[0]}, "
|
||||
f"{colors[10]}, {colors[0]}")
|
||||
ColorType.xrdb.append(f"rofi.color-active: {colors[0]}, "
|
||||
f"{colors[15]}, {colors[0]}, "
|
||||
f"{colors[10]}, {colors[0]}")
|
||||
ColorType.xrdb.append(f"rofi.color-urgent: {colors[0]}, "
|
||||
f"{colors[9]}, {colors[0]}, "
|
||||
f"{colors[9]}, {colors[15]}")
|
||||
|
||||
|
||||
def export_emacs(colors):
|
||||
|
Loading…
Reference in New Issue
Block a user