first commit

This commit is contained in:
AgarimOS 2021-09-16 21:40:26 +02:00
parent fee9e8deee
commit c0599cbe18
43 changed files with 1361 additions and 0 deletions

16
.cache/wal/colors Normal file
View File

@ -0,0 +1,16 @@
#0b101a
#236690
#4C7391
#3288B3
#4F8FB2
#34A4D5
#52B3DE
#aedbee
#7999a6
#236690
#4C7391
#3288B3
#4F8FB2
#34A4D5
#52B3DE
#aedbee

View File

@ -0,0 +1,20 @@
foreground #aedbee
background #0b101a
cursor #aedbee
color0 #0b101a
color8 #7999a6
color1 #236690
color9 #236690
color2 #4C7391
color10 #4C7391
color3 #3288B3
color11 #3288B3
color4 #4F8FB2
color12 #4F8FB2
color5 #34A4D5
color13 #34A4D5
color6 #52B3DE
color14 #52B3DE
color7 #aedbee
color15 #aedbee

View File

@ -0,0 +1,63 @@
[Background]
Color=11,16,26
[BackgroundIntense]
Color=11,16,26
[Color0]
Color=11,16,26
[Color0Intense]
Color=121,153,166
[Color1]
Color=35,102,144
[Color1Intense]
Color=35,102,144
[Color2]
Color=76,115,145
[Color2Intense]
Color=76,115,145
[Color3]
Color=50,136,179
[Color3Intense]
Color=50,136,179
[Color4]
Color=79,143,178
[Color4Intense]
Color=79,143,178
[Color5]
Color=52,164,213
[Color5Intense]
Color=52,164,213
[Color6]
Color=82,179,222
[Color6Intense]
Color=82,179,222
[Color7]
Color=174,219,238
[Color7Intense]
Color=174,219,238
[Foreground]
Color=174,219,238
[ForegroundIntense]
Color=174,219,238
[General]
Description=Colorscheme generated by wal
Opacity=1

17
.cache/wal/colors-oomox Normal file
View File

@ -0,0 +1,17 @@
NAME=wal
BG=0b101a
FG=aedbee
MENU_BG=0b101a
MENU_FG=aedbee
SEL_BG=236690
SEL_FG=0b101a
TXT_BG=0b101a
TXT_FG=aedbee
BTN_BG=4C7391
BTN_FG=aedbee
HDR_BTN_BG=3288B3
HDR_BTN_FG=aedbee
GTK3_GENERATE_DARK=True
ROUNDNESS=0
SPACING=3
GRADIENT=0.0

View File

@ -0,0 +1,26 @@
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\wal]
"Colour0"="174,219,238" ; Default Foreground
"Colour1"="174,219,238" ; Default Bold Foreground
"Colour2"="11,16,26" ; Default Background
"Colour3"="11,16,26" ; Default Bold Background
"Colour4"="11,16,26" ; Cursor Text
"Colour5"="174,219,238" ; Cursor Color
"Colour6"="11,16,26" ; ANSI Black
"Colour7"="121,153,166" ; ANSI Black Bold
"Colour8"="35,102,144" ; ANSI Red
"Colour9"="35,102,144" ; ANSI Red Bold
"Colour10"="76,115,145" ; ANSI Green
"Colour11"="76,115,145" ; ANSI Green Bold
"Colour12"="50,136,179" ; ANSI Yellow
"Colour13"="50,136,179" ; ANSI Yellow Bold
"Colour14"="79,143,178" ; ANSI Blue
"Colour15"="79,143,178" ; ANSI Blue Bold
"Colour16"="52,164,213" ; ANSI Magenta
"Colour17"="52,164,213" ; ANSI Magenta Bold
"Colour18"="82,179,222" ; ANSI Cyan
"Colour19"="82,179,222" ; ANSI Cyan Bold
"Colour20"="174,219,238" ; ANSI White
"Colour21"="174,219,238" ; ANSI White Bold

View File

@ -0,0 +1,161 @@
* {
active-background: #4C7391;
active-foreground: @foreground;
normal-background: @background;
normal-foreground: @foreground;
urgent-background: #236690;
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: #236690;
selected-active-foreground: @foreground;
selected-normal-background: #4C7391;
selected-normal-foreground: @foreground;
selected-urgent-background: #3288B3;
selected-urgent-foreground: @foreground;
background-color: @background;
background: #0b101a;
foreground: #aedbee;
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;
}

View File

@ -0,0 +1,161 @@
* {
active-background: #4C7391;
active-foreground: @foreground;
normal-background: @background;
normal-foreground: @foreground;
urgent-background: #236690;
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: #236690;
selected-active-foreground: @foreground;
selected-normal-background: #4C7391;
selected-normal-foreground: @foreground;
selected-urgent-background: #3288B3;
selected-urgent-foreground: @foreground;
background-color: @background;
background: #aedbee;
foreground: #0b101a;
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;
}

View File

@ -0,0 +1,15 @@
{
"cursor": "#aedbee",
"number": "#aedbee",
"parens": "#34A4D5",
"result": "#4F8FB2",
"comment": "#7999a6",
"matched": "#4F8FB2",
"function": "#236690",
"operator": "#3288B3",
"variable": "#4C7391",
"scrollbar": "#3288B3",
"separator": "#3288B3",
"background": "#0b101a",
"editorbackground": "#0b101a"
}

21
.cache/wal/colors-sway Normal file
View File

@ -0,0 +1,21 @@
set $wallpaper /home/jose/Imágenes/walls/wall65.jpg
set $background #0b101a
set $foreground #aedbee
set $color0 #0b101a
set $color1 #236690
set $color2 #4C7391
set $color3 #3288B3
set $color4 #4F8FB2
set $color5 #34A4D5
set $color6 #52B3DE
set $color7 #aedbee
set $color8 #7999a6
set $color9 #236690
set $color10 #4C7391
set $color11 #3288B3
set $color12 #4F8FB2
set $color13 #34A4D5
set $color14 #52B3DE
set $color15 #aedbee

19
.cache/wal/colors-tty.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/sh
[ "${TERM:-none}" = "linux" ] && \
printf '%b' '\e]P00b101a
\e]P1236690
\e]P24C7391
\e]P33288B3
\e]P44F8FB2
\e]P534A4D5
\e]P652B3DE
\e]P7aedbee
\e]P87999a6
\e]P9236690
\e]PA4C7391
\e]PB3288B3
\e]PC4F8FB2
\e]PD34A4D5
\e]PE52B3DE
\e]PFaedbee
\ec'

View File

@ -0,0 +1,6 @@
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#aedbee", "#0b101a" },
[SchemeSel] = { "#aedbee", "#236690" },
[SchemeOut] = { "#aedbee", "#52B3DE" },
};

View File

@ -0,0 +1,18 @@
static const char norm_fg[] = "#aedbee";
static const char norm_bg[] = "#0b101a";
static const char norm_border[] = "#7999a6";
static const char sel_fg[] = "#aedbee";
static const char sel_bg[] = "#4C7391";
static const char sel_border[] = "#aedbee";
static const char urg_fg[] = "#aedbee";
static const char urg_bg[] = "#236690";
static const char urg_border[] = "#236690";
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 },
};

View File

@ -0,0 +1,34 @@
const char *colorname[] = {
/* 8 normal colors */
[0] = "#0b101a", /* black */
[1] = "#236690", /* red */
[2] = "#4C7391", /* green */
[3] = "#3288B3", /* yellow */
[4] = "#4F8FB2", /* blue */
[5] = "#34A4D5", /* magenta */
[6] = "#52B3DE", /* cyan */
[7] = "#aedbee", /* white */
/* 8 bright colors */
[8] = "#7999a6", /* black */
[9] = "#236690", /* red */
[10] = "#4C7391", /* green */
[11] = "#3288B3", /* yellow */
[12] = "#4F8FB2", /* blue */
[13] = "#34A4D5", /* magenta */
[14] = "#52B3DE", /* cyan */
[15] = "#aedbee", /* white */
/* special colors */
[256] = "#0b101a", /* background */
[257] = "#aedbee", /* foreground */
[258] = "#aedbee", /* cursor */
};
/* Default colors (colorname index)
* foreground, background, cursor */
unsigned int defaultbg = 0;
unsigned int defaultfg = 257;
unsigned int defaultcs = 258;
unsigned int defaultrcs= 258;

View File

@ -0,0 +1,6 @@
static const char* selbgcolor = "#0b101a";
static const char* selfgcolor = "#aedbee";
static const char* normbgcolor = "#4C7391";
static const char* normfgcolor = "#aedbee";
static const char* urgbgcolor = "#236690";
static const char* urgfgcolor = "#aedbee";

23
.cache/wal/colors-wal.vim Normal file
View File

@ -0,0 +1,23 @@
" Special
let wallpaper = "/home/jose/Imágenes/walls/wall65.jpg"
let background = "#0b101a"
let foreground = "#aedbee"
let cursor = "#aedbee"
" Colors
let color0 = "#0b101a"
let color1 = "#236690"
let color2 = "#4C7391"
let color3 = "#3288B3"
let color4 = "#4F8FB2"
let color5 = "#34A4D5"
let color6 = "#52B3DE"
let color7 = "#aedbee"
let color8 = "#7999a6"
let color9 = "#236690"
let color10 = "#4C7391"
let color11 = "#3288B3"
let color12 = "#4F8FB2"
let color13 = "#34A4D5"
let color14 = "#52B3DE"
let color15 = "#aedbee"

View File

@ -0,0 +1,20 @@
@define-color foreground #aedbee;
@define-color background #0b101a;
@define-color cursor #aedbee;
@define-color color0 #0b101a;
@define-color color1 #236690;
@define-color color2 #4C7391;
@define-color color3 #3288B3;
@define-color color4 #4F8FB2;
@define-color color5 #34A4D5;
@define-color color6 #52B3DE;
@define-color color7 #aedbee;
@define-color color8 #7999a6;
@define-color color9 #236690;
@define-color color10 #4C7391;
@define-color color11 #3288B3;
@define-color color12 #4F8FB2;
@define-color color13 #34A4D5;
@define-color color14 #52B3DE;
@define-color color15 #aedbee;

View File

@ -0,0 +1,68 @@
! X colors.
! Generated by 'wal'
*foreground: #aedbee
*background: #0b101a
*.foreground: #aedbee
*.background: #0b101a
emacs*foreground: #aedbee
emacs*background: #0b101a
URxvt*foreground: #aedbee
XTerm*foreground: #aedbee
UXTerm*foreground: #aedbee
URxvt*background: [100]#0b101a
XTerm*background: #0b101a
UXTerm*background: #0b101a
URxvt*cursorColor: #aedbee
XTerm*cursorColor: #aedbee
UXTerm*cursorColor: #aedbee
URxvt*borderColor: [100]#0b101a
! Colors 0-15.
*.color0: #0b101a
*color0: #0b101a
*.color1: #236690
*color1: #236690
*.color2: #4C7391
*color2: #4C7391
*.color3: #3288B3
*color3: #3288B3
*.color4: #4F8FB2
*color4: #4F8FB2
*.color5: #34A4D5
*color5: #34A4D5
*.color6: #52B3DE
*color6: #52B3DE
*.color7: #aedbee
*color7: #aedbee
*.color8: #7999a6
*color8: #7999a6
*.color9: #236690
*color9: #236690
*.color10: #4C7391
*color10: #4C7391
*.color11: #3288B3
*color11: #3288B3
*.color12: #4F8FB2
*color12: #4F8FB2
*.color13: #34A4D5
*color13: #34A4D5
*.color14: #52B3DE
*color14: #52B3DE
*.color15: #aedbee
*color15: #aedbee
! Black color that will not be affected by bold highlighting.
*.color66: #0b101a
*color66: #0b101a
! Xclock colors.
XClock*foreground: #aedbee
XClock*background: #0b101a
XClock*majorColor: rgba:ae/db/ee/ff
XClock*minorColor: rgba:ae/db/ee/ff
XClock*hourColor: rgba:ae/db/ee/ff
XClock*minuteColor: rgba:ae/db/ee/ff
XClock*secondColor: rgba:ae/db/ee/ff
! Set depth to make transparency work.
URxvt*depth: 32

28
.cache/wal/colors.css Normal file
View File

@ -0,0 +1,28 @@
/* CSS variables
Generated by 'wal' */
:root {
--wallpaper: url("/home/jose/Imágenes/walls/wall65.jpg");
/* Special */
--background: #0b101a;
--foreground: #aedbee;
--cursor: #aedbee;
/* Colors */
--color0: #0b101a;
--color1: #236690;
--color2: #4C7391;
--color3: #3288B3;
--color4: #4F8FB2;
--color5: #34A4D5;
--color6: #52B3DE;
--color7: #aedbee;
--color8: #7999a6;
--color9: #236690;
--color10: #4C7391;
--color11: #3288B3;
--color12: #4F8FB2;
--color13: #34A4D5;
--color14: #52B3DE;
--color15: #aedbee;
}

37
.cache/wal/colors.hs Normal file
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/jose/Imágenes/walls/wall65.jpg"
-- Special
background="#0b101a"
foreground="#aedbee"
cursor="#aedbee"
-- Colors
color0="#0b101a"
color1="#236690"
color2="#4C7391"
color3="#3288B3"
color4="#4F8FB2"
color5="#34A4D5"
color6="#52B3DE"
color7="#aedbee"
color8="#7999a6"
color9="#236690"
color10="#4C7391"
color11="#3288B3"
color12="#4F8FB2"
color13="#34A4D5"
color14="#52B3DE"
color15="#aedbee"

28
.cache/wal/colors.json Normal file
View File

@ -0,0 +1,28 @@
{
"wallpaper": "/home/jose/Imágenes/walls/wall65.jpg",
"alpha": "100",
"special": {
"background": "#0b101a",
"foreground": "#aedbee",
"cursor": "#aedbee"
},
"colors": {
"color0": "#0b101a",
"color1": "#236690",
"color2": "#4C7391",
"color3": "#3288B3",
"color4": "#4F8FB2",
"color5": "#34A4D5",
"color6": "#52B3DE",
"color7": "#aedbee",
"color8": "#7999a6",
"color9": "#236690",
"color10": "#4C7391",
"color11": "#3288B3",
"color12": "#4F8FB2",
"color13": "#34A4D5",
"color14": "#52B3DE",
"color15": "#aedbee"
}
}

26
.cache/wal/colors.scss Normal file
View File

@ -0,0 +1,26 @@
// SCSS Variables
// Generated by 'wal'
$wallpaper: "/home/jose/Imágenes/walls/wall65.jpg";
// Special
$background: #0b101a;
$foreground: #aedbee;
$cursor: #aedbee;
// Colors
$color0: #0b101a;
$color1: #236690;
$color2: #4C7391;
$color3: #3288B3;
$color4: #4F8FB2;
$color5: #34A4D5;
$color6: #52B3DE;
$color7: #aedbee;
$color8: #7999a6;
$color9: #236690;
$color10: #4C7391;
$color11: #3288B3;
$color12: #4F8FB2;
$color13: #34A4D5;
$color14: #52B3DE;
$color15: #aedbee;

36
.cache/wal/colors.sh Normal file
View File

@ -0,0 +1,36 @@
# Shell variables
# Generated by 'wal'
wallpaper='/home/jose/Imágenes/walls/wall65.jpg'
# Special
background='#0b101a'
foreground='#aedbee'
cursor='#aedbee'
# Colors
color0='#0b101a'
color1='#236690'
color2='#4C7391'
color3='#3288B3'
color4='#4F8FB2'
color5='#34A4D5'
color6='#52B3DE'
color7='#aedbee'
color8='#7999a6'
color9='#236690'
color10='#4C7391'
color11='#3288B3'
color12='#4F8FB2'
color13='#34A4D5'
color14='#52B3DE'
color15='#aedbee'
# 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
.cache/wal/colors.yml Normal file
View File

@ -0,0 +1,24 @@
wallpaper: "/home/jose/Imágenes/walls/wall65.jpg"
special:
background: "#0b101a"
foreground: "#aedbee"
cursor: "#aedbee"
colors:
color0: "#0b101a"
color1: "#236690"
color2: "#4C7391"
color3: "#3288B3"
color4: "#4F8FB2"
color5: "#34A4D5"
color6: "#52B3DE"
color7: "#aedbee"
color8: "#7999a6"
color9: "#236690"
color10: "#4C7391"
color11: "#3288B3"
color12: "#4F8FB2"
color13: "#34A4D5"
color14: "#52B3DE"
color15: "#aedbee"

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/6138f0baa902d.jpg",
"alpha": "100",
"special": {
"background": "#0b0a0b",
"foreground": "#aec3d3",
"cursor": "#aec3d3"
},
"colors": {
"color0": "#0b0a0b",
"color1": "#68696C",
"color2": "#A45A2F",
"color3": "#907568",
"color4": "#CB9671",
"color5": "#657589",
"color6": "#827E81",
"color7": "#aec3d3",
"color8": "#798893",
"color9": "#68696C",
"color10": "#A45A2F",
"color11": "#907568",
"color12": "#CB9671",
"color13": "#657589",
"color14": "#827E81",
"color15": "#aec3d3"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/685053.jpg",
"alpha": "100",
"special": {
"background": "#0b0a0b",
"foreground": "#acc7dc",
"cursor": "#acc7dc"
},
"colors": {
"color0": "#0b0a0b",
"color1": "#907568",
"color2": "#CD9771",
"color3": "#395E88",
"color4": "#5F738A",
"color5": "#837E82",
"color6": "#668EAE",
"color7": "#acc7dc",
"color8": "#788b9a",
"color9": "#907568",
"color10": "#CD9771",
"color11": "#395E88",
"color12": "#5F738A",
"color13": "#837E82",
"color14": "#668EAE",
"color15": "#acc7dc"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/Venecia-lushpin.jpg",
"alpha": "100",
"special": {
"background": "#0a0c0d",
"foreground": "#acbfdd",
"cursor": "#acbfdd"
},
"colors": {
"color0": "#0a0c0d",
"color1": "#5B5D5E",
"color2": "#96705C",
"color3": "#9B8A76",
"color4": "#D6956C",
"color5": "#576E8B",
"color6": "#7188A5",
"color7": "#acbfdd",
"color8": "#78859a",
"color9": "#5B5D5E",
"color10": "#96705C",
"color11": "#9B8A76",
"color12": "#D6956C",
"color13": "#576E8B",
"color14": "#7188A5",
"color15": "#acbfdd"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/lupshin-amsterdam.jpg",
"alpha": "100",
"special": {
"background": "#0a090d",
"foreground": "#ccdad5",
"cursor": "#ccdad5"
},
"colors": {
"color0": "#0a090d",
"color1": "#9C6039",
"color2": "#CA955D",
"color3": "#38679A",
"color4": "#4673A7",
"color5": "#447DC3",
"color6": "#629DBD",
"color7": "#ccdad5",
"color8": "#8e9895",
"color9": "#9C6039",
"color10": "#CA955D",
"color11": "#38679A",
"color12": "#4673A7",
"color13": "#447DC3",
"color14": "#629DBD",
"color15": "#ccdad5"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/luschpin.jpg",
"alpha": "100",
"special": {
"background": "#0D0E0E",
"foreground": "#9fc3db",
"cursor": "#9fc3db"
},
"colors": {
"color0": "#0D0E0E",
"color1": "#5A5D5B",
"color2": "#A06746",
"color3": "#758479",
"color4": "#D7AA5C",
"color5": "#2F6791",
"color6": "#4C738F",
"color7": "#9fc3db",
"color8": "#6f8899",
"color9": "#5A5D5B",
"color10": "#A06746",
"color11": "#758479",
"color12": "#D7AA5C",
"color13": "#2F6791",
"color14": "#4C738F",
"color15": "#9fc3db"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall-hallstatt2.jpg",
"alpha": "100",
"special": {
"background": "#0f1015",
"foreground": "#c3c8cb",
"cursor": "#c3c8cb"
},
"colors": {
"color0": "#0f1015",
"color1": "#4E708F",
"color2": "#5178A3",
"color3": "#417BC1",
"color4": "#6086A5",
"color5": "#6E90AF",
"color6": "#6E9DC6",
"color7": "#c3c8cb",
"color8": "#888c8e",
"color9": "#4E708F",
"color10": "#5178A3",
"color11": "#417BC1",
"color12": "#6086A5",
"color13": "#6E90AF",
"color14": "#6E9DC6",
"color15": "#c3c8cb"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall10.jpg",
"alpha": "100",
"special": {
"background": "#0C161E",
"foreground": "#c8e0f0",
"cursor": "#c8e0f0"
},
"colors": {
"color0": "#0C161E",
"color1": "#4A6DB4",
"color2": "#0B55C8",
"color3": "#206ED6",
"color4": "#468ECC",
"color5": "#5D99E4",
"color6": "#95BBD5",
"color7": "#c8e0f0",
"color8": "#8c9ca8",
"color9": "#4A6DB4",
"color10": "#0B55C8",
"color11": "#206ED6",
"color12": "#468ECC",
"color13": "#5D99E4",
"color14": "#95BBD5",
"color15": "#c8e0f0"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall11.jpg",
"alpha": "100",
"special": {
"background": "#02060B",
"foreground": "#d2ddd6",
"cursor": "#d2ddd6"
},
"colors": {
"color0": "#02060B",
"color1": "#86777A",
"color2": "#718875",
"color3": "#888E7A",
"color4": "#396892",
"color5": "#6398A9",
"color6": "#99A497",
"color7": "#d2ddd6",
"color8": "#939a95",
"color9": "#86777A",
"color10": "#718875",
"color11": "#888E7A",
"color12": "#396892",
"color13": "#6398A9",
"color14": "#99A497",
"color15": "#d2ddd6"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall12.jpg",
"alpha": "100",
"special": {
"background": "#0d0d0c",
"foreground": "#b6b6b7",
"cursor": "#b6b6b7"
},
"colors": {
"color0": "#0d0d0c",
"color1": "#535352",
"color2": "#615F5C",
"color3": "#61615E",
"color4": "#70706F",
"color5": "#7F807C",
"color6": "#81817E",
"color7": "#b6b6b7",
"color8": "#7f7f80",
"color9": "#535352",
"color10": "#615F5C",
"color11": "#61615E",
"color12": "#70706F",
"color13": "#7F807C",
"color14": "#81817E",
"color15": "#b6b6b7"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall1.jpg",
"alpha": "100",
"special": {
"background": "#090716",
"foreground": "#abc8da",
"cursor": "#abc8da"
},
"colors": {
"color0": "#090716",
"color1": "#4A5D78",
"color2": "#356489",
"color3": "#4F7193",
"color4": "#677EC1",
"color5": "#8B6E96",
"color6": "#678EAB",
"color7": "#abc8da",
"color8": "#778c98",
"color9": "#4A5D78",
"color10": "#356489",
"color11": "#4F7193",
"color12": "#677EC1",
"color13": "#8B6E96",
"color14": "#678EAB",
"color15": "#abc8da"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall2.jpg",
"alpha": "100",
"special": {
"background": "#0C0B0A",
"foreground": "#ccc9c7",
"cursor": "#ccc9c7"
},
"colors": {
"color0": "#0C0B0A",
"color1": "#77726D",
"color2": "#9A6B36",
"color3": "#847C75",
"color4": "#8A837B",
"color5": "#E9A352",
"color6": "#948F89",
"color7": "#ccc9c7",
"color8": "#8e8c8b",
"color9": "#77726D",
"color10": "#9A6B36",
"color11": "#847C75",
"color12": "#8A837B",
"color13": "#E9A352",
"color14": "#948F89",
"color15": "#ccc9c7"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall3.jpg",
"alpha": "100",
"special": {
"background": "#0c0c19",
"foreground": "#b4e0e8",
"cursor": "#b4e0e8"
},
"colors": {
"color0": "#0c0c19",
"color1": "#4D748A",
"color2": "#617A8F",
"color3": "#6093A8",
"color4": "#21B2DB",
"color5": "#6CB6CA",
"color6": "#75C8D8",
"color7": "#b4e0e8",
"color8": "#7d9ca2",
"color9": "#4D748A",
"color10": "#617A8F",
"color11": "#6093A8",
"color12": "#21B2DB",
"color13": "#6CB6CA",
"color14": "#75C8D8",
"color15": "#b4e0e8"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall4.jpg",
"alpha": "100",
"special": {
"background": "#0a0a0c",
"foreground": "#d7d6db",
"cursor": "#d7d6db"
},
"colors": {
"color0": "#0a0a0c",
"color1": "#817E8A",
"color2": "#8B8995",
"color3": "#9A99A5",
"color4": "#A19EAB",
"color5": "#ABA9B5",
"color6": "#BAB8C3",
"color7": "#d7d6db",
"color8": "#969599",
"color9": "#817E8A",
"color10": "#8B8995",
"color11": "#9A99A5",
"color12": "#A19EAB",
"color13": "#ABA9B5",
"color14": "#BAB8C3",
"color15": "#d7d6db"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall63.jpg",
"alpha": "100",
"special": {
"background": "#0A121D",
"foreground": "#c6d0db",
"cursor": "#c6d0db"
},
"colors": {
"color0": "#0A121D",
"color1": "#366187",
"color2": "#546E8B",
"color3": "#647995",
"color4": "#718CA6",
"color5": "#54A8C0",
"color6": "#8BA0B6",
"color7": "#c6d0db",
"color8": "#8a9199",
"color9": "#366187",
"color10": "#546E8B",
"color11": "#647995",
"color12": "#718CA6",
"color13": "#54A8C0",
"color14": "#8BA0B6",
"color15": "#c6d0db"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall64.jpg",
"alpha": "100",
"special": {
"background": "#050119",
"foreground": "#e1c9e8",
"cursor": "#e1c9e8"
},
"colors": {
"color0": "#050119",
"color1": "#A461BB",
"color2": "#3494D3",
"color3": "#5596D7",
"color4": "#7194D5",
"color5": "#8E98DA",
"color6": "#A5A1DF",
"color7": "#e1c9e8",
"color8": "#9d8ca2",
"color9": "#A461BB",
"color10": "#3494D3",
"color11": "#5596D7",
"color12": "#7194D5",
"color13": "#8E98DA",
"color14": "#A5A1DF",
"color15": "#e1c9e8"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall65.jpg",
"alpha": "100",
"special": {
"background": "#0b101a",
"foreground": "#aedbee",
"cursor": "#aedbee"
},
"colors": {
"color0": "#0b101a",
"color1": "#236690",
"color2": "#4C7391",
"color3": "#3288B3",
"color4": "#4F8FB2",
"color5": "#34A4D5",
"color6": "#52B3DE",
"color7": "#aedbee",
"color8": "#7999a6",
"color9": "#236690",
"color10": "#4C7391",
"color11": "#3288B3",
"color12": "#4F8FB2",
"color13": "#34A4D5",
"color14": "#52B3DE",
"color15": "#aedbee"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall8.jpg",
"alpha": "100",
"special": {
"background": "#0E0E10",
"foreground": "#ccced0",
"cursor": "#ccced0"
},
"colors": {
"color0": "#0E0E10",
"color1": "#5E6166",
"color2": "#6B6E73",
"color3": "#7A7D82",
"color4": "#7E8185",
"color5": "#8C8F94",
"color6": "#9B9EA3",
"color7": "#ccced0",
"color8": "#8e9091",
"color9": "#5E6166",
"color10": "#6B6E73",
"color11": "#7A7D82",
"color12": "#7E8185",
"color13": "#8C8F94",
"color14": "#9B9EA3",
"color15": "#ccced0"
}
}

View File

@ -0,0 +1,27 @@
{
"wallpaper": "/home/jose/Im\u00e1genes/walls/wall9.jpg",
"alpha": "100",
"special": {
"background": "#030F11",
"foreground": "#aaedeb",
"cursor": "#aaedeb"
},
"colors": {
"color0": "#030F11",
"color1": "#176C6E",
"color2": "#318A75",
"color3": "#98AC6B",
"color4": "#277588",
"color5": "#2A9897",
"color6": "#50B1AE",
"color7": "#aaedeb",
"color8": "#76a5a4",
"color9": "#176C6E",
"color10": "#318A75",
"color11": "#98AC6B",
"color12": "#277588",
"color13": "#2A9897",
"color14": "#50B1AE",
"color15": "#aaedeb"
}
}

1
.cache/wal/sequences Normal file
View File

@ -0,0 +1 @@
]4;0;#0b101a\]4;1;#236690\]4;2;#4C7391\]4;3;#3288B3\]4;4;#4F8FB2\]4;5;#34A4D5\]4;6;#52B3DE\]4;7;#aedbee\]4;8;#7999a6\]4;9;#236690\]4;10;#4C7391\]4;11;#3288B3\]4;12;#4F8FB2\]4;13;#34A4D5\]4;14;#52B3DE\]4;15;#aedbee\]10;#aedbee\]11;#0b101a\]12;#aedbee\]13;#aedbee\]17;#aedbee\]19;#0b101a\]4;232;#0b101a\]4;256;#aedbee\]708;#0b101a\

1
.cache/wal/wal Normal file
View File

@ -0,0 +1 @@
/home/jose/Imágenes/walls/wall65.jpg