added Pywal base files

This commit is contained in:
zaske
2025-07-13 21:22:04 +02:00
parent 9abffecf31
commit c638dec5c5
29 changed files with 958 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
#0f0d16
#98364A
#C6394B
#A84859
#DE5F67
#F3877C
#DA7C82
#f1c3bf
#a88885
#98364A
#C6394B
#A84859
#DE5F67
#F3877C
#DA7C82
#f1c3bf
+20
View File
@@ -0,0 +1,20 @@
foreground #f1c3bf
background #0f0d16
cursor #f1c3bf
color0 #0f0d16
color8 #a88885
color1 #98364A
color9 #98364A
color2 #C6394B
color10 #C6394B
color3 #A84859
color11 #A84859
color4 #DE5F67
color12 #DE5F67
color5 #F3877C
color13 #F3877C
color6 #DA7C82
color14 #DA7C82
color7 #f1c3bf
color15 #f1c3bf
+63
View File
@@ -0,0 +1,63 @@
[Background]
Color=15,13,22
[BackgroundIntense]
Color=15,13,22
[Color0]
Color=15,13,22
[Color0Intense]
Color=168,136,133
[Color1]
Color=152,54,74
[Color1Intense]
Color=152,54,74
[Color2]
Color=198,57,75
[Color2Intense]
Color=198,57,75
[Color3]
Color=168,72,89
[Color3Intense]
Color=168,72,89
[Color4]
Color=222,95,103
[Color4Intense]
Color=222,95,103
[Color5]
Color=243,135,124
[Color5Intense]
Color=243,135,124
[Color6]
Color=218,124,130
[Color6Intense]
Color=218,124,130
[Color7]
Color=241,195,191
[Color7Intense]
Color=241,195,191
[Foreground]
Color=241,195,191
[ForegroundIntense]
Color=241,195,191
[General]
Description=Colorscheme generated by wal
Opacity=1
+17
View File
@@ -0,0 +1,17 @@
NAME=wal
BG=0f0d16
FG=f1c3bf
MENU_BG=0f0d16
MENU_FG=f1c3bf
SEL_BG=98364A
SEL_FG=0f0d16
TXT_BG=0f0d16
TXT_FG=f1c3bf
BTN_BG=C6394B
BTN_FG=f1c3bf
HDR_BTN_BG=A84859
HDR_BTN_FG=f1c3bf
GTK3_GENERATE_DARK=True
ROUNDNESS=0
SPACING=3
GRADIENT=0.0
+26
View File
@@ -0,0 +1,26 @@
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\wal]
"Colour0"="241,195,191" ; Default Foreground
"Colour1"="241,195,191" ; Default Bold Foreground
"Colour2"="15,13,22" ; Default Background
"Colour3"="15,13,22" ; Default Bold Background
"Colour4"="15,13,22" ; Cursor Text
"Colour5"="241,195,191" ; Cursor Color
"Colour6"="15,13,22" ; ANSI Black
"Colour7"="168,136,133" ; ANSI Black Bold
"Colour8"="152,54,74" ; ANSI Red
"Colour9"="152,54,74" ; ANSI Red Bold
"Colour10"="198,57,75" ; ANSI Green
"Colour11"="198,57,75" ; ANSI Green Bold
"Colour12"="168,72,89" ; ANSI Yellow
"Colour13"="168,72,89" ; ANSI Yellow Bold
"Colour14"="222,95,103" ; ANSI Blue
"Colour15"="222,95,103" ; ANSI Blue Bold
"Colour16"="243,135,124" ; ANSI Magenta
"Colour17"="243,135,124" ; ANSI Magenta Bold
"Colour18"="218,124,130" ; ANSI Cyan
"Colour19"="218,124,130" ; ANSI Cyan Bold
"Colour20"="241,195,191" ; ANSI White
"Colour21"="241,195,191" ; ANSI White Bold
+161
View File
@@ -0,0 +1,161 @@
* {
active-background: #C6394B;
active-foreground: @foreground;
normal-background: @background;
normal-foreground: @foreground;
urgent-background: #98364A;
urgent-foreground: @foreground;
alternate-active-background: @background;
alternate-active-foreground: @foreground;
alternate-normal-background: @background;
alternate-normal-foreground: @foreground;
alternate-urgent-background: @background;
alternate-urgent-foreground: @foreground;
selected-active-background: #98364A;
selected-active-foreground: @foreground;
selected-normal-background: #C6394B;
selected-normal-foreground: @foreground;
selected-urgent-background: #A84859;
selected-urgent-foreground: @foreground;
background-color: @background;
background: #0f0d16;
foreground: #f1c3bf;
border-color: @background;
spacing: 2;
}
#window {
background-color: @background;
border: 0;
padding: 2.5ch;
}
#mainbox {
border: 0;
padding: 0;
}
#message {
border: 2px 0px 0px;
border-color: @border-color;
padding: 1px;
}
#textbox {
text-color: @foreground;
}
#inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px;
border-color: @border-color;
spacing: 2px;
scrollbar: true;
padding: 2px 0px 0px;
}
#element {
border: 0;
padding: 1px;
}
#element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
#element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
#element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
#element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px;
border: 0;
handle-width: 8px;
padding: 0;
}
#sidebar {
border: 2px 0px 0px;
border-color: @border-color;
}
#button {
text-color: @normal-foreground;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
}
+161
View File
@@ -0,0 +1,161 @@
* {
active-background: #C6394B;
active-foreground: @foreground;
normal-background: @background;
normal-foreground: @foreground;
urgent-background: #98364A;
urgent-foreground: @foreground;
alternate-active-background: @background;
alternate-active-foreground: @foreground;
alternate-normal-background: @background;
alternate-normal-foreground: @foreground;
alternate-urgent-background: @background;
alternate-urgent-foreground: @foreground;
selected-active-background: #98364A;
selected-active-foreground: @foreground;
selected-normal-background: #C6394B;
selected-normal-foreground: @foreground;
selected-urgent-background: #A84859;
selected-urgent-foreground: @foreground;
background-color: @background;
background: #f1c3bf;
foreground: #0f0d16;
border-color: @background;
spacing: 2;
}
#window {
background-color: @background;
border: 0;
padding: 2.5ch;
}
#mainbox {
border: 0;
padding: 0;
}
#message {
border: 2px 0px 0px;
border-color: @border-color;
padding: 1px;
}
#textbox {
text-color: @foreground;
}
#inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px;
border-color: @border-color;
spacing: 2px;
scrollbar: true;
padding: 2px 0px 0px;
}
#element {
border: 0;
padding: 1px;
}
#element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
#element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
#element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
#element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px;
border: 0;
handle-width: 8px;
padding: 0;
}
#sidebar {
border: 2px 0px 0px;
border-color: @border-color;
}
#button {
text-color: @normal-foreground;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
}
+15
View File
@@ -0,0 +1,15 @@
{
"cursor": "#f1c3bf",
"number": "#f1c3bf",
"parens": "#F3877C",
"result": "#DE5F67",
"comment": "#a88885",
"matched": "#DE5F67",
"function": "#98364A",
"operator": "#A84859",
"variable": "#C6394B",
"scrollbar": "#A84859",
"separator": "#A84859",
"background": "#0f0d16",
"editorbackground": "#0f0d16"
}
+21
View File
@@ -0,0 +1,21 @@
set $wallpaper /home/Zaske/Images/red_mountain.jpg
set $background #0f0d16
set $foreground #f1c3bf
set $color0 #0f0d16
set $color1 #98364A
set $color2 #C6394B
set $color3 #A84859
set $color4 #DE5F67
set $color5 #F3877C
set $color6 #DA7C82
set $color7 #f1c3bf
set $color8 #a88885
set $color9 #98364A
set $color10 #C6394B
set $color11 #A84859
set $color12 #DE5F67
set $color13 #F3877C
set $color14 #DA7C82
set $color15 #f1c3bf
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
[ "${TERM:-none}" = "linux" ] && \
printf '%b' '\e]P00f0d16
\e]P198364A
\e]P2C6394B
\e]P3A84859
\e]P4DE5F67
\e]P5F3877C
\e]P6DA7C82
\e]P7f1c3bf
\e]P8a88885
\e]P998364A
\e]PAC6394B
\e]PBA84859
\e]PCDE5F67
\e]PDF3877C
\e]PEDA7C82
\e]PFf1c3bf
\ec'
+6
View File
@@ -0,0 +1,6 @@
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#f1c3bf", "#0f0d16" },
[SchemeSel] = { "#f1c3bf", "#98364A" },
[SchemeOut] = { "#f1c3bf", "#DA7C82" },
};
+18
View File
@@ -0,0 +1,18 @@
static const char norm_fg[] = "#f1c3bf";
static const char norm_bg[] = "#0f0d16";
static const char norm_border[] = "#a88885";
static const char sel_fg[] = "#f1c3bf";
static const char sel_bg[] = "#C6394B";
static const char sel_border[] = "#f1c3bf";
static const char urg_fg[] = "#f1c3bf";
static const char urg_bg[] = "#98364A";
static const char urg_border[] = "#98364A";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
[SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
[SchemeUrg] = { urg_fg, urg_bg, urg_border },
};
+34
View File
@@ -0,0 +1,34 @@
const char *colorname[] = {
/* 8 normal colors */
[0] = "#0f0d16", /* black */
[1] = "#98364A", /* red */
[2] = "#C6394B", /* green */
[3] = "#A84859", /* yellow */
[4] = "#DE5F67", /* blue */
[5] = "#F3877C", /* magenta */
[6] = "#DA7C82", /* cyan */
[7] = "#f1c3bf", /* white */
/* 8 bright colors */
[8] = "#a88885", /* black */
[9] = "#98364A", /* red */
[10] = "#C6394B", /* green */
[11] = "#A84859", /* yellow */
[12] = "#DE5F67", /* blue */
[13] = "#F3877C", /* magenta */
[14] = "#DA7C82", /* cyan */
[15] = "#f1c3bf", /* white */
/* special colors */
[256] = "#0f0d16", /* background */
[257] = "#f1c3bf", /* foreground */
[258] = "#f1c3bf", /* cursor */
};
/* Default colors (colorname index)
* foreground, background, cursor */
unsigned int defaultbg = 0;
unsigned int defaultfg = 257;
unsigned int defaultcs = 258;
unsigned int defaultrcs= 258;
+6
View File
@@ -0,0 +1,6 @@
static const char* selbgcolor = "#0f0d16";
static const char* selfgcolor = "#f1c3bf";
static const char* normbgcolor = "#C6394B";
static const char* normfgcolor = "#f1c3bf";
static const char* urgbgcolor = "#98364A";
static const char* urgfgcolor = "#f1c3bf";
+23
View File
@@ -0,0 +1,23 @@
" Special
let wallpaper = "/home/Zaske/Images/red_mountain.jpg"
let background = "#0f0d16"
let foreground = "#f1c3bf"
let cursor = "#f1c3bf"
" Colors
let color0 = "#0f0d16"
let color1 = "#98364A"
let color2 = "#C6394B"
let color3 = "#A84859"
let color4 = "#DE5F67"
let color5 = "#F3877C"
let color6 = "#DA7C82"
let color7 = "#f1c3bf"
let color8 = "#a88885"
let color9 = "#98364A"
let color10 = "#C6394B"
let color11 = "#A84859"
let color12 = "#DE5F67"
let color13 = "#F3877C"
let color14 = "#DA7C82"
let color15 = "#f1c3bf"
+20
View File
@@ -0,0 +1,20 @@
@define-color foreground #f1c3bf;
@define-color background #0f0d16;
@define-color cursor #f1c3bf;
@define-color color0 #0f0d16;
@define-color color1 #98364A;
@define-color color2 #C6394B;
@define-color color3 #A84859;
@define-color color4 #DE5F67;
@define-color color5 #F3877C;
@define-color color6 #DA7C82;
@define-color color7 #f1c3bf;
@define-color color8 #a88885;
@define-color color9 #98364A;
@define-color color10 #C6394B;
@define-color color11 #A84859;
@define-color color12 #DE5F67;
@define-color color13 #F3877C;
@define-color color14 #DA7C82;
@define-color color15 #f1c3bf;
+68
View File
@@ -0,0 +1,68 @@
! X colors.
! Generated by 'wal'
*foreground: #f1c3bf
*background: #0f0d16
*.foreground: #f1c3bf
*.background: #0f0d16
emacs*foreground: #f1c3bf
emacs*background: #0f0d16
URxvt*foreground: #f1c3bf
XTerm*foreground: #f1c3bf
UXTerm*foreground: #f1c3bf
URxvt*background: [100]#0f0d16
XTerm*background: #0f0d16
UXTerm*background: #0f0d16
URxvt*cursorColor: #f1c3bf
XTerm*cursorColor: #f1c3bf
UXTerm*cursorColor: #f1c3bf
URxvt*borderColor: [100]#0f0d16
! Colors 0-15.
*.color0: #0f0d16
*color0: #0f0d16
*.color1: #98364A
*color1: #98364A
*.color2: #C6394B
*color2: #C6394B
*.color3: #A84859
*color3: #A84859
*.color4: #DE5F67
*color4: #DE5F67
*.color5: #F3877C
*color5: #F3877C
*.color6: #DA7C82
*color6: #DA7C82
*.color7: #f1c3bf
*color7: #f1c3bf
*.color8: #a88885
*color8: #a88885
*.color9: #98364A
*color9: #98364A
*.color10: #C6394B
*color10: #C6394B
*.color11: #A84859
*color11: #A84859
*.color12: #DE5F67
*color12: #DE5F67
*.color13: #F3877C
*color13: #F3877C
*.color14: #DA7C82
*color14: #DA7C82
*.color15: #f1c3bf
*color15: #f1c3bf
! Black color that will not be affected by bold highlighting.
*.color66: #0f0d16
*color66: #0f0d16
! Xclock colors.
XClock*foreground: #f1c3bf
XClock*background: #0f0d16
XClock*majorColor: rgba:f1/c3/bf/ff
XClock*minorColor: rgba:f1/c3/bf/ff
XClock*hourColor: rgba:f1/c3/bf/ff
XClock*minuteColor: rgba:f1/c3/bf/ff
XClock*secondColor: rgba:f1/c3/bf/ff
! Set depth to make transparency work.
URxvt*depth: 32
+28
View File
@@ -0,0 +1,28 @@
/* CSS variables
Generated by 'wal' */
:root {
--wallpaper: url("/home/Zaske/Images/red_mountain.jpg");
/* Special */
--background: #0f0d16;
--foreground: #f1c3bf;
--cursor: #f1c3bf;
/* Colors */
--color0: #0f0d16;
--color1: #98364A;
--color2: #C6394B;
--color3: #A84859;
--color4: #DE5F67;
--color5: #F3877C;
--color6: #DA7C82;
--color7: #f1c3bf;
--color8: #a88885;
--color9: #98364A;
--color10: #C6394B;
--color11: #A84859;
--color12: #DE5F67;
--color13: #F3877C;
--color14: #DA7C82;
--color15: #f1c3bf;
}
+37
View File
@@ -0,0 +1,37 @@
--Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config
--The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s
--Then recompile and restart xmonad.
module Colors
( wallpaper
, background, foreground, cursor
, color0, color1, color2, color3, color4, color5, color6, color7
, color8, color9, color10, color11, color12, color13, color14, color15
) where
-- Shell variables
-- Generated by 'wal'
wallpaper="/home/Zaske/Images/red_mountain.jpg"
-- Special
background="#0f0d16"
foreground="#f1c3bf"
cursor="#f1c3bf"
-- Colors
color0="#0f0d16"
color1="#98364A"
color2="#C6394B"
color3="#A84859"
color4="#DE5F67"
color5="#F3877C"
color6="#DA7C82"
color7="#f1c3bf"
color8="#a88885"
color9="#98364A"
color10="#C6394B"
color11="#A84859"
color12="#DE5F67"
color13="#F3877C"
color14="#DA7C82"
color15="#f1c3bf"
+28
View File
@@ -0,0 +1,28 @@
{
"wallpaper": "/home/Zaske/Images/red_mountain.jpg",
"alpha": "100",
"special": {
"background": "#0f0d16",
"foreground": "#f1c3bf",
"cursor": "#f1c3bf"
},
"colors": {
"color0": "#0f0d16",
"color1": "#98364A",
"color2": "#C6394B",
"color3": "#A84859",
"color4": "#DE5F67",
"color5": "#F3877C",
"color6": "#DA7C82",
"color7": "#f1c3bf",
"color8": "#a88885",
"color9": "#98364A",
"color10": "#C6394B",
"color11": "#A84859",
"color12": "#DE5F67",
"color13": "#F3877C",
"color14": "#DA7C82",
"color15": "#f1c3bf"
}
}
+26
View File
@@ -0,0 +1,26 @@
// SCSS Variables
// Generated by 'wal'
$wallpaper: "/home/Zaske/Images/red_mountain.jpg";
// Special
$background: #0f0d16;
$foreground: #f1c3bf;
$cursor: #f1c3bf;
// Colors
$color0: #0f0d16;
$color1: #98364A;
$color2: #C6394B;
$color3: #A84859;
$color4: #DE5F67;
$color5: #F3877C;
$color6: #DA7C82;
$color7: #f1c3bf;
$color8: #a88885;
$color9: #98364A;
$color10: #C6394B;
$color11: #A84859;
$color12: #DE5F67;
$color13: #F3877C;
$color14: #DA7C82;
$color15: #f1c3bf;
+36
View File
@@ -0,0 +1,36 @@
# Shell variables
# Generated by 'wal'
wallpaper='/home/Zaske/Images/red_mountain.jpg'
# Special
background='#0f0d16'
foreground='#f1c3bf'
cursor='#f1c3bf'
# Colors
color0='#0f0d16'
color1='#98364A'
color2='#C6394B'
color3='#A84859'
color4='#DE5F67'
color5='#F3877C'
color6='#DA7C82'
color7='#f1c3bf'
color8='#a88885'
color9='#98364A'
color10='#C6394B'
color11='#A84859'
color12='#DE5F67'
color13='#F3877C'
color14='#DA7C82'
color15='#f1c3bf'
# FZF colors
export FZF_DEFAULT_OPTS="
$FZF_DEFAULT_OPTS
--color fg:7,bg:0,hl:1,fg+:232,bg+:1,hl+:255
--color info:7,prompt:2,spinner:1,pointer:232,marker:1
"
# Fix LS_COLORS being unreadable.
export LS_COLORS="${LS_COLORS}:su=30;41:ow=30;42:st=30;44:"
+24
View File
@@ -0,0 +1,24 @@
wallpaper: "/home/Zaske/Images/red_mountain.jpg"
special:
background: "#0f0d16"
foreground: "#f1c3bf"
cursor: "#f1c3bf"
colors:
color0: "#0f0d16"
color1: "#98364A"
color2: "#C6394B"
color3: "#A84859"
color4: "#DE5F67"
color5: "#F3877C"
color6: "#DA7C82"
color7: "#f1c3bf"
color8: "#a88885"
color9: "#98364A"
color10: "#C6394B"
color11: "#A84859"
color12: "#DE5F67"
color13: "#F3877C"
color14: "#DA7C82"
color15: "#f1c3bf"
@@ -0,0 +1,27 @@
{
"wallpaper": "/home/Zaske/Images/red_mountain2.jpg",
"alpha": "100",
"special": {
"background": "#1e0002",
"foreground": "#f4e3e4",
"cursor": "#f4e3e4"
},
"colors": {
"color0": "#1e0002",
"color1": "#FA5A69",
"color2": "#FC6A77",
"color3": "#FB7B85",
"color4": "#FD8A93",
"color5": "#FBAAB1",
"color6": "#F8BCC2",
"color7": "#f4e3e4",
"color8": "#aa9e9f",
"color9": "#FA5A69",
"color10": "#FC6A77",
"color11": "#FB7B85",
"color12": "#FD8A93",
"color13": "#FBAAB1",
"color14": "#F8BCC2",
"color15": "#f4e3e4"
}
}
@@ -0,0 +1,27 @@
{
"wallpaper": "/home/Zaske/Images/red_mountain.jpg",
"alpha": "100",
"special": {
"background": "#0f0d16",
"foreground": "#f1c3bf",
"cursor": "#f1c3bf"
},
"colors": {
"color0": "#0f0d16",
"color1": "#98364A",
"color2": "#C6394B",
"color3": "#A84859",
"color4": "#DE5F67",
"color5": "#F3877C",
"color6": "#DA7C82",
"color7": "#f1c3bf",
"color8": "#a88885",
"color9": "#98364A",
"color10": "#C6394B",
"color11": "#A84859",
"color12": "#DE5F67",
"color13": "#F3877C",
"color14": "#DA7C82",
"color15": "#f1c3bf"
}
}
+1
View File
@@ -0,0 +1 @@
]4;0;#0f0d16\]4;1;#98364A\]4;2;#C6394B\]4;3;#A84859\]4;4;#DE5F67\]4;5;#F3877C\]4;6;#DA7C82\]4;7;#f1c3bf\]4;8;#a88885\]4;9;#98364A\]4;10;#C6394B\]4;11;#A84859\]4;12;#DE5F67\]4;13;#F3877C\]4;14;#DA7C82\]4;15;#f1c3bf\]10;#f1c3bf\]11;#0f0d16\]12;#f1c3bf\]13;#f1c3bf\]17;#f1c3bf\]19;#0f0d16\]4;232;#0f0d16\]4;256;#f1c3bf\]708;#0f0d16\
+1
View File
@@ -0,0 +1 @@
/home/Zaske/Images/red_mountain.jpg
+26
View File
@@ -0,0 +1,26 @@
@define-color rosewater #f2d5cf;
@define-color flamingo #eebebe;
@define-color pink #f4b8e4;
@define-color mauve #ca9ee6;
@define-color red #e78284;
@define-color maroon #ea999c;
@define-color peach #ef9f76;
@define-color yellow #e5c890;
@define-color green #a6d189;
@define-color teal #81c8be;
@define-color sky #99d1db;
@define-color sapphire #85c1dc;
@define-color blue #8caaee;
@define-color lavender #babbf1;
@define-color text #c6d0f5;
@define-color subtext1 #b5bfe2;
@define-color subtext0 #a5adce;
@define-color overlay2 #949cbb;
@define-color overlay1 #838ba7;
@define-color overlay0 #737994;
@define-color surface2 #626880;
@define-color surface1 #51576d;
@define-color surface0 #414559;
@define-color base #303446;
@define-color mantle #292c3c;
@define-color crust #232634;
+3 -2
View File
@@ -17,11 +17,12 @@ copy ~/.config/hypr/hyprland.conf ./Hyprland
#waybar
copy ~/.config/waybar/style.css ./Waybar
copy ~/.config/waybar/config.jsonc ./Waybar
rsync ~/.config/waybar/frappe.css ./Waybar
#nvim
copy ~/.config/nvim/init.lua ./Nvim
copy ~/.config/nvim/lazy-lock.json ./Nvim
cp -rv ~/.config/nvim/lua ./Nvim/lua
cp -rv ~/.config/nvim/lua ./Nvim
#tmux
#copy ~/.tmux.conf ./Tmux
@@ -42,4 +43,4 @@ copy ~/.config/hypr/hyprpaper.conf ./Hyprpaper
#copy ~/.config/kitty/ ./Kitty
#pywal
#copy ~
rsync -rv ~/.cache/wal/ ./Pywal