Initial commit

This commit is contained in:
sword 2022-10-25 14:03:00 +00:00
commit ddc5a2fd7b
20724 changed files with 2256279 additions and 0 deletions

485
.bashrc Normal file
View File

@ -0,0 +1,485 @@
[[ $- == *i* ]] &&
source "$HOME/.local/share/blesh/ble.sh" --attach=none
# Path to your oh-my-bash installation.
export OSH=/home/jose/.oh-my-bash
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-bash is loaded.
OSH_THEME="mairan"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_OSH_DAYS=13
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
HIST_STAMPS="dd.mm.yyyy"
# Would you like to use another custom folder than $OSH/custom?
# OSH_CUSTOM=/path/to/new-custom-folder
# Which completions would you like to load? (completions can be found in ~/.oh-my-bash/completions/*)
# Custom completions may be added to ~/.oh-my-bash/custom/completions/
# Example format: completions=(ssh git bundler gem pip pip3)
# Add wisely, as too many completions slow down shell startup.
completions=(
git
composer
ssh
)
# Which aliases would you like to load? (aliases can be found in ~/.oh-my-bash/aliases/*)
# Custom aliases may be added to ~/.oh-my-bash/custom/aliases/
# Example format: aliases=(vagrant composer git-avh)
# Add wisely, as too many aliases slow down shell startup.
aliases=(
general
ls
chmod
misc)
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-bash/plugins/*)
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
git
bashmarks
)
source $OSH/oh-my-bash.sh
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
export LANG=es_ES.UTF-8
#LOCAL bin directory
export PATH="$HOME/.local/bin:$PATH"
# Expand the history size
export HISTFILESIZE=10000
export HISTSIZE=500
# Don't put duplicate lines in the history and do not add lines that start with a space
export HISTCONTROL=erasedups:ignoredups:ignorespace
# Show auto-completion list automatically, without double tab
if [[ $iatest > 0 ]]; then bind "set show-all-if-ambiguous On"; fi
# To have colors for ls and all grep commands such as grep, egrep and zgrep
export CLICOLOR=1
export LS_COLORS='no=00:fi=00:di=00;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:*.xml=00;31:'
#export GREP_OPTIONS='--color=auto' #deprecated
alias grep="/usr/bin/grep $GREP_OPTIONS"
unset GREP_OPTIONS
# Color for manpages in less makes manpages a little easier to read
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
# kill a given process by name
function pskill() {
ps ax | grep "$1" | grep -v grep | awk '{ print $1 }' | xargs kill
}
# Copy file with a progress bar
cpp()
{
set -e
strace -q -ewrite cp -- "${1}" "${2}" 2>&1 \
| awk '{
count += $NF
if (count % 10 == 0) {
percent = count / total_size * 100
printf "%3d%% [", percent
for (i=0;i<=percent;i++)
printf "="
printf ">"
for (i=percent;i<100;i++)
printf " "
printf "]\r"
}
}
END { print "" }' total_size=$(stat -c '%s' "${1}") count=0
}
# Copy and go to the directory
cpg ()
{
if [ -d "$2" ];then
cp $1 $2 && cd $2
else
cp $1 $2
fi
}
# Move and go to the directory
mvg ()
{
if [ -d "$2" ];then
mv $1 $2 && cd $2
else
mv $1 $2
fi
}
# Create and go to the directory
mkdirg ()
{
mkdir -p $1
cd $1
}
# Goes up a specified number of directories (i.e. up 4)
up ()
{
local d=""
limit=$1
for ((i=1 ; i <= limit ; i++))
do
d=$d/..
done
d=$(echo $d | sed 's/^\///')
if [ -z "$d" ]; then
d=..
fi
cd $d
}
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# Set personal aliases, overriding those provided by oh-my-bash libs,
# plugins, and themes. Aliases can be placed here, though oh-my-bash
# users are encouraged to define aliases within the OSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias bashconfig="mate ~/.bashrc"
# alias ohmybash="mate ~/.oh-my-bash"
#Void Linux
alias search="xbps-query -Rs"
alias install="sudo xbps-install -S"
alias update="sudo xbps-install -Su"
alias clean="sudo xbps-remove -O"
alias remove="sudo xbps-remove -R"
alias reconf="sudo xbps-reconfigure"
alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
alias restricted="void && grep -rl '^restricted=' srcpkgs/"
alias services="sudo sv status /var/service/*"
alias non-free="xbps-query -Mi --repo=https://alpha.de.repo.voidlinux.org/current/nonfree -s \*"
alias doit="sce && topgrade && clean && hblock && ytfzfi && clear"
alias void="cd /home/jose/Plantillas/void-linux/void-packages"
alias mklive="cd /home/jose/Plantillas/void-linux/void-mklive"
alias ignpa="echo "ignorepkg=pulseaudio" | sudo tee -a /etc/xbps.d/XX-ignore.conf"
alias etcher="cd ~/Plantillas/varios/etcher && npm start"
alias goodies="cd ~/Plantillas/void-linux/void-goodies && git pull"
alias xanmod="cd ~/Plantillas/void-linux/xanmod/void-packages && git pull"
alias nvoid="cd ~/Plantillas/void-linux/nvoid && git pull"
alias git-update="cd ~/Plantillas/void-linux/void-packages && git pull && cd ~/Plantillas/void-linux/void-mklive && git pull"
alias ymir="cd ~/Plantillas/void-linux/ymir-linux/void-packages"
alias ymirp="cd ~/Plantillas/void-linux/ymir-linux/void-packages && git pull"
alias voidp="git clone git://github.com/void-linux/void-packages.git && xbpsbb"
alias agar="cd ~/Público/AgarimOS/"
#youtube-dl
alias yta-aac="youtube-dl --extract-audio --audio-format aac"
alias yta-best="youtube-dl --extract-audio --audio-format best"
alias yta-flac="youtube-dl --extract-audio --audio-format flac"
alias yta-m4a="youtube-dl --extract-audio --audio-format m4a"
alias yta-mp3="youtube-dl --extract-audio --audio-format mp3"
alias yta-opus="youtube-dl --extract-audio --audio-format opus"
alias yta-vorbis="youtube-dl --extract-audio --audio-format vorbis"
alias yta-wav="youtube-dl --extract-audio --audio-format wav"
alias ytv-best="youtube-dl -f bestvideo+bestaudio"
# Corona
alias top10="curl 'https://corona-stats.online?top=10&source=2&minimal=true&emojis=true'"
alias top20="curl 'https://corona-stats.online?top=20&source=2&minimal=true&emojis=true'"
alias top30="curl 'https://corona-stats.online?top=30&source=2&minimal=true&emojis=true'"
alias top40="curl 'https://corona-stats.online?top=40&source=2&minimal=true&emojis=true'"
alias coves="curl -L covid19.trackercli.com/es"
alias covat="curl -L covid19.trackercli.com/at"
alias covuk="curl -L covid19.trackercli.com/gb"
alias covde="curl -L covid19.trackercli.com/de"
alias covfr="curl -L covid19.trackercli.com/fr"
alias covru="curl -L covid19.trackercli.com/ru"
alias covil="curl -L covid19.trackercli.com/il"
alias covit="curl -L covid19.trackercli.com/it"
alias covbe="curl -L covid19.trackercli.com/be"
alias covpt="curl -L covid19.trackercli.com/pt"
alias covnl="curl -L covid19.trackercli.com/nl"
alias covch="curl -L covid19.trackercli.com/ch"
alias covus="curl -L covid19.trackercli.com/us"
alias covsk="curl -L covid19.trackercli.com/sk"
alias covcz="curl -L covid19.trackercli.com/cz"
alias covpl="curl -L covid19.trackercli.com/pl"
alias covhr="curl -L covid19.trackercli.com/hr"
alias covrs="curl -L covid19.trackercli.com/rs"
# Alias's for multiple directory listing commands
alias la='ls -Alh' # show hidden files
alias ls='ls -aFh --color=always' # add colors and file type extensions
alias lx='ls -lXBh' # sort by extension
alias lk='ls -lSrh' # sort by size
alias lc='ls -lcrh' # sort by change time
alias lu='ls -lurh' # sort by access time
alias lr='ls -lRh' # recursive ls
alias lt='ls -ltrh' # sort by date
alias lm='ls -alh |more' # pipe through 'more'
alias lw='ls -xAh' # wide listing format
alias ll='ls -Fls' # long listing format
alias labc='ls -lap' #alphabetical sort
alias lf="ls -l | egrep -v '^d'" # files only
alias ldir="ls -l | egrep '^d'" # directories only
# I am lazy
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias ......='cd ../../../../..'
alias descargas="cd /home/jose/Descargas"
alias videos="cd /home/jose/Vídeos"
alias themes="cd /usr/share/themes"
alias fonts="cd /usr/share/fonts"
alias icons="cd /usr/share/icons"
alias trash="sudo rm -rf ~/.local/share/Trash/*"
alias npmu="sudo npm upgrade -g npm"
alias nzsh=" cd ~ && nano .bashrc"
alias sce=" cd ~ && source .bashrc"
alias del="rm -rf"
alias ft="fc-cache -f -v"
alias kzsh="kate ~/.bashrc"
alias probe="sudo -E hw-probe -all -upload"
alias fzsh="cd ~ && featherpad .bashrc"
alias npmaf="npm audit fix"
alias ter="sensors"
alias diff='colordiff'
alias untar='tar -zxvf'
alias multitail='multitail --no-repeat -c'
alias loc="locate"
alias lc="lsd -lA"
alias ext="extract"
alias vi="vim"
alias mount='mount |column -t'
alias chsh="chsh -s /bin/bash"
alias ext="extract"
alias userlist="cut -d: -f1 /etc/passwd"
alias bat='upower -i /org/freedesktop/UPower/devices/battery_BAT0| grep --color=never -E "state|to\ full|percentage"'
alias inf="kinfocenter"
alias ext="ex"
alias cl='cal'
alias who='whoami'
alias cc='sudo sh -c "sync; echo 3 > /proc/sys/vm/drop_caches"' # Clear System Cache
alias spt='speedtest-cli'
alias wifi="wirelessNetworksInRange"
#Inxi
alias mac="inxi -zv8"
alias weather="inxi -wxxx"
alias machine="inxi -Fxxxrza"
# Kitty
alias icat="kitty +kitten icat"
alias d="kitty +kitten diff"
alias clip="kitty +kitten clipboard"
alias kittyc="nano ~/.config/kitty/kitty.conf"
alias kittys="nano ~/.config/kitty/settings.conf"
alias kittyf="nano ~/.config/kitty/font.conf"
alias kittyk="nano ~/.config/kitty/keybindings.conf"
alias kittyb="nano ~/.config/kitty/bell.conf"
alias kittycu="nano ~/.config/kitty/cursor.conf"
alias kittym="nano ~/.config/kitty/mouse.conf"
alias kittyp="nano ~/.config/kitty/performance.conf"
alias kittysc="nano ~/.config/kitty/scrollback.conf"
alias kittyt="nano ~/.config/kitty/tab.conf"
alias kittyw="nano ~/.config/kitty/window.conf"
#Ricing
alias nerdfetch="curl -fsSL https://raw.githubusercontent.com/ThatOneCalculator/NerdFetch/master/nerdfetch | sh"
alias pipesa="cpipes -p30 -r1"
alias pipesb="cpipes -p100 -r0 -i1"
alias pman="colorscript -e 30"
alias skull="colorscript -e 33"
alias spaceinvaders="colorscript -e 38"
alias clock="tty-clock -c"
#Ytfzf
alias showme="ytfzf -t"
alias ytfzfi="curl -sL "https://raw.githubusercontent.com/pystardust/ytfzf/master/ytfzf" | sudo tee /usr/local/bin/ytfzf >/dev/null && sudo chmod 755 /usr/local/bin/ytfzf"
#Common mistakes
alias cd..='cd ..'
alias pdw="pwd"
alias isntall="install"
#Other aliases
# reboot / halt / poweroff
alias reboot='sudo /sbin/reboot'
alias poweroff='sudo /sbin/poweroff'
alias halt='sudo /sbin/halt'
alias shutdown='sudo /sbin/shutdown'
# alias chmod commands
alias mx='chmod a+x'
alias 000='chmod -R 000'
alias 644='chmod -R 644'
alias 666='chmod -R 666'
alias 755='chmod -R 755'
alias 777='chmod -R 777'
# Search command line history
alias h="history | grep "
alias tree='tree -CAhF --dirsfirst'
alias treed='tree -CAFd'
alias mountedinfo='df -hT'
# cd into the old directory
alias bd='cd "$OLDPWD"'
# Remove a directory and all files
alias rmd='/bin/rm --recursive --force --verbose'
# Stop after sending count ECHO_REQUEST packets #
alias ping='ping -c 5'
# Do not wait interval 1 second, go fast #
alias fastping='ping -c 100 -s.2'
## shortcut for iptables and pass it via sudo#
alias ipt='sudo /sbin/iptables'
# display all rules #
alias iptlist='sudo /sbin/iptables -L -n -v --line-numbers'
alias iptlistin='sudo /sbin/iptables -L INPUT -n -v --line-numbers'
alias iptlistout='sudo /sbin/iptables -L OUTPUT -n -v --line-numbers'
alias iptlistfw='sudo /sbin/iptables -L FORWARD -n -v --line-numbers'
alias firewall=iptlist
# do not delete / or prompt if deleting more than 3 files at a time #
alias rm='rm -I --preserve-root'
# get web server headers #
alias header='curl -I'
# find out if remote server supports gzip / mod_deflate or not #
alias headerc='curl -I --compress'
# confirmation #
alias mv='mv -i'
alias cp='cp -i'
alias ln='ln -i'
# Parenting changing perms on / #
alias chown='chown --preserve-root'
alias chmod='chmod --preserve-root'
alias chgrp='chgrp --preserve-root'
## pass options to free ##
alias meminfo='free -m -l -t'
## get top process eating memory
alias psmem='ps auxf | sort -nr -k 4'
alias psmem10='ps auxf | sort -nr -k 4 | head -10'
## get top process eating cpu ##
alias pscpu='ps auxf | sort -nr -k 3'
alias pscpu10='ps auxf | sort -nr -k 3 | head -10'
## Get server cpu info ##
alias cpuinfo='lscpu'
## get GPU ram on desktop / laptop##
alias gpumeminfo='grep -i --color memory /var/log/Xorg.0.log'
# become root #
alias root='sudo -i'
alias su='sudo -i'
# Time
alias now='date +"%T"'
alias nowtime='now'
alias nowdate='date +"%d-%m-%Y"'
# make directory and any parent directories needed
alias mkdir='mkdir -p'
# Give less options to man
export MANPAGER='less -s -M +Gg'
## this one saved by butt so many times ##
alias wget='wget -c'
alias path='echo -e ${PATH//:/\\n}'
# make common commands easier to read for humans
alias df="df -Tha --total"
alias du="du -ach | sort -h"
alias free="free -mth"
# custom cmatrix
#alias cmatrix="cmatrix -bC yellow"
# search processes (find PID easily)
alias psg="ps aux | grep -v grep | grep -i -e VSZ -e"
# show all processes
alias psf="ps auxfww"
#given a PID, intercept the stdout and stderr
alias intercept="sudo strace -ff -e trace=write -e write=1,2 -p"
#curl -fsSL https://raw.githubusercontent.com/ThatOneCalculator/NerdFetch/master/nerdfetch | sh
nerdfetch
[[ ${BLE_VERSION-} ]] && ble-attach

30
.betterlockscreenrc Normal file
View File

@ -0,0 +1,30 @@
# configuration file for betterlockscreen
# colour inside ring
insidecolor=00000000
# colour inside ring while checking
insidevercolor=00000000
# colour inside ring when you make an incorrect attempt
insidewrongcolor=46837D
# colour of ring
ringcolor=476D6D
# colour of ring while checking
ringvercolor=32847B
# colour of ring when you make an incorrect attempt
ringwrongcolor=476D6D
# colour of section on ring when you press a key
keyhlcolor=32847B
# colour of section on ring when you backspace
bshlcolor=476D6D
# colour of time text
timecolor=d0d0d0ff
# colour of lockscreen text
datecolor=d0d0d0ff
# unknown
separatorcolor=00000000
verifcolor=0000ffff
loginbox=00000066

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

View File

@ -0,0 +1,58 @@
---
window:
dimensions:
columns: 50
lines: 18
position:
x: 480
y: 270
padding:
x: 6
y: 6
dynamic_padding: false
decorations: "none"
title: "Disfruta cada minuto"
dynamic_title: false
scrolling:
history: 5000
multiplier: 3
font:
size: 14
draw_bold_text_with_bright_colors: true
background_opacity: 0.8
mouse:
hide_when_typing: true
selection:
save_to_clipboard: true
cursor:
style: "Block"
shell:
program: "/bin/zsh"
# BEGIN ACE
colors:
primary:
background: '#090a06'
foreground: '#ded5a7'
cursor:
text: '#090a06'
cursor: '#ded5a7'
normal:
black: '#090a06'
red: '#64693A'
green: '#565D48'
yellow: '#6F6F4C'
blue: '#877952'
magenta: '#7C824A'
cyan: '#959256'
white: '#ded5a7'
bright:
black: '#9b9574'
red: '#64693A'
green: '#565D48'
yellow: '#6F6F4C'
blue: '#877952'
magenta: '#7C824A'
cyan: '#959256'
white: '#ded5a7'
# END ACE

View File

@ -0,0 +1,16 @@
# Example font config file. If you have these fonts installed you can apply them
fonts:
UbuntuMono: UbuntuMono Nerd Font
Mononoki: mononoki Nerd Font
Agave: agave Nerd Font
Caskaydia: Caskaydia Cove Nerd Font
Hurmit: Hurmit Nerd Font Mono
DaddyTime: DaddyTimeMono Nerd Font
Iosevka: Iosevka NF
Hack: Hack NF
SpaceMono: SpaceMono NF
FiraCode: Fira Code Nerd Font
normal: FiraCode Regular Nerd Font
italic: FiraCode Retina Nerd Font
bold: FiraCode Bold Nerd Font

View File

@ -0,0 +1,27 @@
colors:
name: 3024 (dark)
author: Chris Kempson
primary:
background: "#090300"
foreground: "#a5a2a2"
cursor:
text: "#090300"
cursor: "#a5a2a2"
normal:
black: "#090300"
red: "#db2d20"
green: "#01a252"
yellow: "#fded02"
blue: "#01a0e4"
magenta: "#a16a94"
cyan: "#b5e4f4"
white: "#a5a2a2"
bright:
black: "#5c5855"
red: "#db2d20"
green: "#01a252"
yellow: "#fded02"
blue: "#01a0e4"
magenta: "#a16a94"
cyan: "#b5e4f4"
white: "#f7f7f7"

View File

@ -0,0 +1,27 @@
colors:
name: 3024 (light)
author: Chris Kempson
primary:
background: "#f7f7f7"
foreground: "#4a4543"
cursor:
text: "#f7f7f7"
cursor: "#4a4543"
normal:
black: "#090300"
red: "#db2d20"
green: "#01a252"
yellow: "#fded02"
blue: "#01a0e4"
magenta: "#a16a94"
cyan: "#b5e4f4"
white: "#a5a2a2"
bright:
black: "#5c5855"
red: "#db2d20"
green: "#01a252"
yellow: "#fded02"
blue: "#01a0e4"
magenta: "#a16a94"
cyan: "#b5e4f4"
white: "#f7f7f7"

View File

@ -0,0 +1,48 @@
colors:
# Default colors
primary:
background: '#2c2c2c'
foreground: '#d6d6d6'
dim_foreground: '#dbdbdb'
bright_foreground: '#d9d9d9'
dim_background: '#202020' # not sure
bright_background: '#3a3a3a' # not sure
# Cursor colors
cursor:
text: '#2c2c2c'
cursor: '#d9d9d9'
# Normal colors
normal:
black: '#1c1c1c'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#cacaca'
# Bright colors
bright:
black: '#636363'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#f7f7f7'
# Dim colors
dim:
black: '#232323'
red: '#74423f'
green: '#5e6547'
yellow: '#8b7653'
blue: '#556b79'
magenta: '#6e4962'
cyan: '#5c8482'
white: '#828282'

View File

@ -0,0 +1,32 @@
colors:
# Default colors
primary:
background: '#292C3E'
foreground: '#EBEBEB'
# Cursor colors
cursor:
text: '#FF261E'
cursor: '#FF261E'
# Normal colors
normal:
black: '#0d0d0d'
red: '#FF301B'
green: '#A0E521'
yellow: '#FFC620'
blue: '#1BA6FA'
magenta: '#8763B8'
cyan: '#21DEEF'
white: '#EBEBEB'
# Bright colors
bright:
black: '#6D7070'
red: '#FF4352'
green: '#B8E466'
yellow: '#FFD750'
blue: '#1BA6FA'
magenta: '#A578EA'
cyan: '#73FBF1'
white: '#FEFEF8'

View File

@ -0,0 +1,27 @@
colors:
name: Ashes (dark)
author: Chris Kempson
primary:
background: "#1c2023"
foreground: "#c7ccd1"
cursor:
text: "#1c2023"
cursor: "#c7ccd1"
normal:
black: "#1c2023"
red: "#c7ae95"
green: "#95c7ae"
yellow: "#aec795"
blue: "#ae95c7"
magenta: "#c795ae"
cyan: "#95aec7"
white: "#c7ccd1"
bright:
black: "#747c84"
red: "#c7ae95"
green: "#95c7ae"
yellow: "#aec795"
blue: "#ae95c7"
magenta: "#c795ae"
cyan: "#95aec7"
white: "#f3f4f5"

View File

@ -0,0 +1,27 @@
colors:
name: Ashes (light)
author: Chris Kempson
primary:
background: "#f3f4f5"
foreground: "#565e65"
cursor:
text: "#f3f4f5"
cursor: "#565e65"
normal:
black: "#1c2023"
red: "#c7ae95"
green: "#95c7ae"
yellow: "#aec795"
blue: "#ae95c7"
magenta: "#c795ae"
cyan: "#95aec7"
white: "#c7ccd1"
bright:
black: "#747c84"
red: "#c7ae95"
green: "#95c7ae"
yellow: "#aec795"
blue: "#ae95c7"
magenta: "#c795ae"
cyan: "#95aec7"
white: "#f3f4f5"

View File

@ -0,0 +1,27 @@
colors:
name: astromouse
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#1c1c1c"
red: "#d770af"
green: "#9acc79"
yellow: "#d0d26b"
blue: "#77b6c5"
magenta: "#a488d9"
cyan: "#7fcab3"
white: "#8d8d8d"
bright:
black: "#3d3a3a"
red: "#d28abf"
green: "#8fb676"
yellow: "#c8bc45"
blue: "#8fa7b9"
magenta: "#bd89de"
cyan: "#6ec2a8"
white: "#dad3d3"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierdune (dark)
author: Chris Kempson
primary:
background: "#20201d"
foreground: "#a6a28c"
cursor:
text: "#20201d"
cursor: "#a6a28c"
normal:
black: "#20201d"
red: "#d73737"
green: "#60ac39"
yellow: "#cfb017"
blue: "#6684e1"
magenta: "#b854d4"
cyan: "#1fad83"
white: "#a6a28c"
bright:
black: "#7d7a68"
red: "#d73737"
green: "#60ac39"
yellow: "#cfb017"
blue: "#6684e1"
magenta: "#b854d4"
cyan: "#1fad83"
white: "#fefbec"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierdune (light)
author: Chris Kempson
primary:
background: "#fefbec"
foreground: "#6e6b5e"
cursor:
text: "#fefbec"
cursor: "#6e6b5e"
normal:
black: "#20201d"
red: "#d73737"
green: "#60ac39"
yellow: "#cfb017"
blue: "#6684e1"
magenta: "#b854d4"
cyan: "#1fad83"
white: "#a6a28c"
bright:
black: "#7d7a68"
red: "#d73737"
green: "#60ac39"
yellow: "#cfb017"
blue: "#6684e1"
magenta: "#b854d4"
cyan: "#1fad83"
white: "#fefbec"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierforest (dark)
author: Chris Kempson
primary:
background: "#1b1918"
foreground: "#a8a19f"
cursor:
text: "#1b1918"
cursor: "#a8a19f"
normal:
black: "#1b1918"
red: "#f22c40"
green: "#5ab738"
yellow: "#d5911a"
blue: "#407ee7"
magenta: "#6666ea"
cyan: "#00ad9c"
white: "#a8a19f"
bright:
black: "#766e6b"
red: "#f22c40"
green: "#5ab738"
yellow: "#d5911a"
blue: "#407ee7"
magenta: "#6666ea"
cyan: "#00ad9c"
white: "#f1efee"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierforest (light)
author: Chris Kempson
primary:
background: "#f1efee"
foreground: "#68615e"
cursor:
text: "#f1efee"
cursor: "#68615e"
normal:
black: "#1b1918"
red: "#f22c40"
green: "#5ab738"
yellow: "#d5911a"
blue: "#407ee7"
magenta: "#6666ea"
cyan: "#00ad9c"
white: "#a8a19f"
bright:
black: "#766e6b"
red: "#f22c40"
green: "#5ab738"
yellow: "#d5911a"
blue: "#407ee7"
magenta: "#6666ea"
cyan: "#00ad9c"
white: "#f1efee"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierheath (dark)
author: Chris Kempson
primary:
background: "#1b181b"
foreground: "#ab9bab"
cursor:
text: "#1b181b"
cursor: "#ab9bab"
normal:
black: "#1b181b"
red: "#ca402b"
green: "#379a37"
yellow: "#bb8a35"
blue: "#516aec"
magenta: "#7b59c0"
cyan: "#159393"
white: "#ab9bab"
bright:
black: "#776977"
red: "#ca402b"
green: "#379a37"
yellow: "#bb8a35"
blue: "#516aec"
magenta: "#7b59c0"
cyan: "#159393"
white: "#f7f3f7"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierheath (light)
author: Chris Kempson
primary:
background: "#f7f3f7"
foreground: "#695d69"
cursor:
text: "#f7f3f7"
cursor: "#695d69"
normal:
black: "#1b181b"
red: "#ca402b"
green: "#379a37"
yellow: "#bb8a35"
blue: "#516aec"
magenta: "#7b59c0"
cyan: "#159393"
white: "#ab9bab"
bright:
black: "#776977"
red: "#ca402b"
green: "#379a37"
yellow: "#bb8a35"
blue: "#516aec"
magenta: "#7b59c0"
cyan: "#159393"
white: "#f7f3f7"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierlakeside (dark)
author: Chris Kempson
primary:
background: "#161b1d"
foreground: "#7ea2b4"
cursor:
text: "#161b1d"
cursor: "#7ea2b4"
normal:
black: "#161b1d"
red: "#d22d72"
green: "#568c3b"
yellow: "#8a8a0f"
blue: "#257fad"
magenta: "#5d5db1"
cyan: "#2d8f6f"
white: "#7ea2b4"
bright:
black: "#5a7b8c"
red: "#d22d72"
green: "#568c3b"
yellow: "#8a8a0f"
blue: "#257fad"
magenta: "#5d5db1"
cyan: "#2d8f6f"
white: "#ebf8ff"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierlakeside (light)
author: Chris Kempson
primary:
background: "#ebf8ff"
foreground: "#516d7b"
cursor:
text: "#ebf8ff"
cursor: "#516d7b"
normal:
black: "#161b1d"
red: "#d22d72"
green: "#568c3b"
yellow: "#8a8a0f"
blue: "#257fad"
magenta: "#5d5db1"
cyan: "#2d8f6f"
white: "#7ea2b4"
bright:
black: "#5a7b8c"
red: "#d22d72"
green: "#568c3b"
yellow: "#8a8a0f"
blue: "#257fad"
magenta: "#5d5db1"
cyan: "#2d8f6f"
white: "#ebf8ff"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierseaside (dark)
author: Chris Kempson
primary:
background: "#131513"
foreground: "#8ca68c"
cursor:
text: "#131513"
cursor: "#8ca68c"
normal:
black: "#131513"
red: "#e6193c"
green: "#29a329"
yellow: "#c3c322"
blue: "#3d62f5"
magenta: "#ad2bee"
cyan: "#1999b3"
white: "#8ca68c"
bright:
black: "#687d68"
red: "#e6193c"
green: "#29a329"
yellow: "#c3c322"
blue: "#3d62f5"
magenta: "#ad2bee"
cyan: "#1999b3"
white: "#f0fff0"

View File

@ -0,0 +1,27 @@
colors:
name: Atelierseaside (light)
author: Chris Kempson
primary:
background: "#f0fff0"
foreground: "#5e6e5e"
cursor:
text: "#f0fff0"
cursor: "#5e6e5e"
normal:
black: "#131513"
red: "#e6193c"
green: "#29a329"
yellow: "#c3c322"
blue: "#3d62f5"
magenta: "#ad2bee"
cyan: "#1999b3"
white: "#8ca68c"
bright:
black: "#687d68"
red: "#e6193c"
green: "#29a329"
yellow: "#c3c322"
blue: "#3d62f5"
magenta: "#ad2bee"
cyan: "#1999b3"
white: "#f0fff0"

View File

@ -0,0 +1,28 @@
# Colors (Ayu Dark)
colors:
# Default colors
primary:
background: '#0A0E14'
foreground: '#B3B1AD'
# Normal colors
normal:
black: '#01060E'
red: '#EA6C73'
green: '#91B362'
yellow: '#F9AF4F'
blue: '#53BDFA'
magenta: '#FAE994'
cyan: '#90E1C6'
white: '#C7C7C7'
# Bright colors
bright:
black: '#686868'
red: '#F07178'
green: '#C2D94C'
yellow: '#FFB454'
blue: '#59C2FF'
magenta: '#FFEE99'
cyan: '#95E6CB'
white: '#FFFFFF'

View File

@ -0,0 +1,28 @@
# Colors (Ayu Mirage)
colors:
# Default colors
primary:
background: '#202734'
foreground: '#CBCCC6'
# Normal colors
normal:
black: '#191E2A'
red: '#FF3333'
green: '#BAE67E'
yellow: '#FFA759'
blue: '#73D0FF'
magenta: '#FFD580'
cyan: '#95E6CB'
white: '#C7C7C7'
# Bright colors
bright:
black: '#686868'
red: '#F27983'
green: '#A6CC70'
yellow: '#FFCC66'
blue: '#5CCFE6'
magenta: '#FFEE99'
cyan: '#95E6CB'
white: '#FFFFFF'

View File

@ -0,0 +1,33 @@
# Colors (Base16 Default Dark)
colors:
# Default colors
primary:
background: '#181818'
foreground: '#d8d8d8'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '#d8d8d8'
cursor: '#d8d8d8'
# Normal colors
normal:
black: '#181818'
red: '#ab4642'
green: '#a1b56c'
yellow: '#f7ca88'
blue: '#7cafc2'
magenta: '#ba8baf'
cyan: '#86c1b9'
white: '#d8d8d8'
# Bright colors
bright:
black: '#585858'
red: '#ab4642'
green: '#a1b56c'
yellow: '#f7ca88'
blue: '#7cafc2'
magenta: '#ba8baf'
cyan: '#86c1b9'
white: '#f8f8f8'

View File

@ -0,0 +1,27 @@
colors:
name: Count Von Count
author: Baskerville
primary:
background: "#000000"
foreground: "#919191"
cursor:
text: "#000000"
cursor: "#919191"
normal:
black: "#303030"
red: "#c10023"
green: "#a83334"
yellow: "#b51d2c"
blue: "#8c4b46"
magenta: "#7d534f"
cyan: "#9a413d"
white: "#c6c6c6"
bright:
black: "#5e5e5e"
red: "#ff8781"
green: "#ffa095"
yellow: "#ff948b"
blue: "#feb2aa"
magenta: "#ebbbb5"
cyan: "#ffaaa0"
white: "#ffffff"

View File

@ -0,0 +1,27 @@
colors:
name: Eldorado dark
author: Baskerville
primary:
background: "#292929"
foreground: "#a2a2a2"
cursor:
text: "#292929"
cursor: "#a2a2a2"
normal:
black: "#4e4e4e"
red: "#a9635d"
green: "#468459"
yellow: "#84763d"
blue: "#5879af"
magenta: "#9c6594"
cyan: "#008592"
white: "#cfcfcf"
bright:
black: "#777777"
red: "#ffbbb2"
green: "#9ddeaf"
yellow: "#e0ce91"
blue: "#b3d1ff"
magenta: "#fabdf0"
cyan: "#79e0ed"
white: "#ffffff"

View File

@ -0,0 +1,27 @@
colors:
name: FarSide
author: Baskerville
primary:
background: "#000000"
foreground: "#919191"
cursor:
text: "#000000"
cursor: "#919191"
normal:
black: "#303030"
red: "#a43261"
green: "#006ca5"
yellow: "#007086"
blue: "#6751a6"
magenta: "#913e88"
cyan: "#0061b1"
white: "#c6c6c6"
bright:
black: "#5e5e5e"
red: "#ff9fc9"
green: "#3bd6ff"
yellow: "#00ddf4"
blue: "#d5b8ff"
magenta: "#ffa7f6"
cyan: "#93c9ff"
white: "#ffffff"

View File

@ -0,0 +1,27 @@
colors:
name: Ivory Dark
author: Baskerville
primary:
background: "#2d2c28"
foreground: "#a4a6ab"
cursor:
text: "#2d2c28"
cursor: "#a4a6ab"
normal:
black: "#5b5955"
red: "#c4756e"
green: "#559a6a"
yellow: "#9b8a4b"
blue: "#6a8dca"
magenta: "#b577ac"
cyan: "#019baa"
white: "#dbdde2"
bright:
black: "#707277"
red: "#f6a299"
green: "#82c896"
yellow: "#cab775"
blue: "#98bbfb"
magenta: "#e5a4db"
cyan: "#53cad9"
white: "#f7f9ff"

View File

@ -0,0 +1,27 @@
colors:
name: Lost Woods
author: Baskerville
primary:
background: "#000000"
foreground: "#919191"
cursor:
text: "#000000"
cursor: "#919191"
normal:
black: "#303030"
red: "#a13a38"
green: "#00715d"
yellow: "#006f32"
blue: "#a43261"
magenta: "#913e88"
cyan: "#007086"
white: "#c6c6c6"
bright:
black: "#5e5e5e"
red: "#ffa59a"
green: "#24dfc4"
yellow: "#73db95"
blue: "#ff9fc9"
magenta: "#ffa7f6"
cyan: "#00ddf4"
white: "#ffffff"

View File

@ -0,0 +1,27 @@
colors:
name: Ivory Light
author: Baskerville
primary:
background: "#fef9ec"
foreground: "#6d727e"
cursor:
text: "#fef9ec"
cursor: "#6d727e"
normal:
black: "#c5c1b4"
red: "#e75c58"
green: "#00a250"
yellow: "#a08a00"
blue: "#208ffb"
magenta: "#d160c4"
cyan: "#00a4c1"
white: "#3e424d"
bright:
black: "#a1a6b2"
red: "#b22b31"
green: "#007427"
yellow: "#715f00"
blue: "#0065ca"
magenta: "#a03196"
cyan: "#007693"
white: "#282c36"

View File

@ -0,0 +1,27 @@
colors:
name: Belge
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#252525"
red: "#ef6769"
green: "#a6e22e"
yellow: "#fd971f"
blue: "#6495ed"
magenta: "#deb887"
cyan: "#b0c4de"
white: "#dbdcdc"
bright:
black: "#454545"
red: "#fc7ca5"
green: "#b6e354"
yellow: "#fd971f"
blue: "#87ceeb"
magenta: "#996600"
cyan: "#87ceeb"
white: "#fdfdfd"

View File

@ -0,0 +1,27 @@
colors:
name: Bespin (dark)
author: Chris Kempson
primary:
background: "#28211c"
foreground: "#8a8986"
cursor:
text: "#28211c"
cursor: "#8a8986"
normal:
black: "#28211c"
red: "#cf6a4c"
green: "#54be0d"
yellow: "#f9ee98"
blue: "#5ea6ea"
magenta: "#9b859d"
cyan: "#afc4db"
white: "#8a8986"
bright:
black: "#666666"
red: "#cf6a4c"
green: "#54be0d"
yellow: "#f9ee98"
blue: "#5ea6ea"
magenta: "#9b859d"
cyan: "#afc4db"
white: "#baae9e"

View File

@ -0,0 +1,27 @@
colors:
name: Bespin (light)
author: Chris Kempson
primary:
background: "#baae9e"
foreground: "#5e5d5c"
cursor:
text: "#baae9e"
cursor: "#5e5d5c"
normal:
black: "#28211c"
red: "#cf6a4c"
green: "#54be0d"
yellow: "#f9ee98"
blue: "#5ea6ea"
magenta: "#9b859d"
cyan: "#afc4db"
white: "#8a8986"
bright:
black: "#666666"
red: "#cf6a4c"
green: "#54be0d"
yellow: "#f9ee98"
blue: "#5ea6ea"
magenta: "#9b859d"
cyan: "#afc4db"
white: "#baae9e"

View File

@ -0,0 +1,27 @@
colors:
name: Bitmute
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#282828"
red: "#b76969"
green: "#719d72"
yellow: "#909858"
blue: "#68668f"
magenta: "#966894"
cyan: "#688891"
white: "#8e8e8e"
bright:
black: "#494949"
red: "#b87e7e"
green: "#839d84"
yellow: "#919864"
blue: "#73718f"
magenta: "#987397"
cyan: "#758c93"
white: "#aeaeae"

View File

@ -0,0 +1,27 @@
colors:
name: Bleh-1
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#666666"
red: "#996578"
green: "#889965"
yellow: "#998565"
blue: "#657a99"
magenta: "#8b6599"
cyan: "#65998d"
white: "#a5a5a4"
bright:
black: "#8c847f"
red: "#bd4b76"
green: "#95b548"
yellow: "#bd814b"
blue: "#4c83bf"
magenta: "#a04bbd"
cyan: "#4dbda8"
white: "#848484"

View File

@ -0,0 +1,28 @@
# Colors (Blood Moon)
colors:
# Default colors
primary:
background: '#10100E'
foreground: '#C6C6C4'
# Normal colors
normal:
black: '#10100E'
red: '#C40233'
green: '#009F6B'
yellow: '#FFD700'
blue: '#0087BD'
magenta: '#9A4EAE'
cyan: '#20B2AA'
white: '#C6C6C4'
# Bright colors
bright:
black: '#696969'
red: '#FF2400'
green: '#03C03C'
yellow: '#FDFF00'
blue: '#007FFF'
magenta: '#FF1493'
cyan: '#00CCCC'
white: '#FFFAFA'

View File

@ -0,0 +1,44 @@
# KDE Breeze (Ported from Konsole)
colors:
# Default colors
primary:
background: '#232627'
foreground: '#fcfcfc'
dim_foreground: '#eff0f1'
bright_foreground: '#ffffff'
dim_background: '#31363b'
bright_background: '#000000'
# Normal colors
normal:
black: '#232627'
red: '#ed1515'
green: '#11d116'
yellow: '#f67400'
blue: '#1d99f3'
magenta: '#9b59b6'
cyan: '#1abc9c'
white: '#fcfcfc'
# Bright colors
bright:
black: '#7f8c8d'
red: '#c0392b'
green: '#1cdc9a'
yellow: '#fdbc4b'
blue: '#3daee9'
magenta: '#8e44ad'
cyan: '#16a085'
white: '#ffffff'
# Dim colors
dim:
black: '#31363b'
red: '#783228'
green: '#17a262'
yellow: '#b65619'
blue: '#1b668f'
magenta: '#614a73'
cyan: '#186c60'
white: '#63686d'

View File

@ -0,0 +1,27 @@
colors:
name: Brewer (dark)
author: Chris Kempson
primary:
background: "#0c0d0e"
foreground: "#b7b8b9"
cursor:
text: "#0c0d0e"
cursor: "#b7b8b9"
normal:
black: "#0c0d0e"
red: "#e31a1c"
green: "#31a354"
yellow: "#dca060"
blue: "#3182bd"
magenta: "#756bb1"
cyan: "#80b1d3"
white: "#b7b8b9"
bright:
black: "#737475"
red: "#e31a1c"
green: "#31a354"
yellow: "#dca060"
blue: "#3182bd"
magenta: "#756bb1"
cyan: "#80b1d3"
white: "#fcfdfe"

View File

@ -0,0 +1,27 @@
colors:
name: Brewer (light)
author: Chris Kempson
primary:
background: "#fcfdfe"
foreground: "#515253"
cursor:
text: "#fcfdfe"
cursor: "#515253"
normal:
black: "#0c0d0e"
red: "#e31a1c"
green: "#31a354"
yellow: "#dca060"
blue: "#3182bd"
magenta: "#756bb1"
cyan: "#80b1d3"
white: "#b7b8b9"
bright:
black: "#737475"
red: "#e31a1c"
green: "#31a354"
yellow: "#dca060"
blue: "#3182bd"
magenta: "#756bb1"
cyan: "#80b1d3"
white: "#fcfdfe"

View File

@ -0,0 +1,28 @@
# Campbell (Windows 10 default)
colors:
# Default colors
primary:
background: '#0c0c0c'
foreground: '#cccccc'
# Normal colors
normal:
black: '#0c0c0c'
red: '#c50f1f'
green: '#13a10e'
yellow: '#c19c00'
blue: '#0037da'
magenta: '#881798'
cyan: '#3a96dd'
white: '#cccccc'
# Bright colors
bright:
black: '#767676'
red: '#e74856'
green: '#16c60c'
yellow: '#f9f1a5'
blue: '#3b78ff'
magenta: '#b4009e'
cyan: '#61d6d6'
white: '#f2f2f2'

View File

@ -0,0 +1,27 @@
colors:
name: Chalk (dark)
author: Chris Kempson
primary:
background: "#151515"
foreground: "#d0d0d0"
cursor:
text: "#151515"
cursor: "#d0d0d0"
normal:
black: "#151515"
red: "#fb9fb1"
green: "#acc267"
yellow: "#ddb26f"
blue: "#6fc2ef"
magenta: "#e1a3ee"
cyan: "#12cfc0"
white: "#d0d0d0"
bright:
black: "#505050"
red: "#fb9fb1"
green: "#acc267"
yellow: "#ddb26f"
blue: "#6fc2ef"
magenta: "#e1a3ee"
cyan: "#12cfc0"
white: "#f5f5f5"

View File

@ -0,0 +1,27 @@
colors:
name: Chalk (light)
author: Chris Kempson
primary:
background: "#f5f5f5"
foreground: "#303030"
cursor:
text: "#f5f5f5"
cursor: "#303030"
normal:
black: "#151515"
red: "#fb9fb1"
green: "#acc267"
yellow: "#ddb26f"
blue: "#6fc2ef"
magenta: "#e1a3ee"
cyan: "#12cfc0"
white: "#d0d0d0"
bright:
black: "#505050"
red: "#fb9fb1"
green: "#acc267"
yellow: "#ddb26f"
blue: "#6fc2ef"
magenta: "#e1a3ee"
cyan: "#12cfc0"
white: "#f5f5f5"

View File

@ -0,0 +1,27 @@
colors:
# Default colors
primary:
background: '0x1b182c'
foreground: '0xcbe3e7'
# Normal colors
normal:
black: '0x100e23'
red: '0xff8080'
green: '0x95ffa4'
yellow: '0xffe9aa'
blue: '0x91ddff'
magenta: '0xc991e1'
cyan: '0xaaffe4'
white: '0xcbe3e7'
# Bright colors
bright:
black: '0x565575'
red: '0xff5458'
green: '0x62d196'
yellow: '0xffb378'
blue: '0x65b2ff'
magenta: '0x906cff'
cyan: '0x63f2f1'
white: '0xa6b3cc'

View File

@ -0,0 +1,27 @@
colors:
name: Cloud
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#222827"
red: "#d5a8e3"
green: "#9c75dd"
yellow: "#9898ae"
blue: "#654a96"
magenta: "#625566"
cyan: "#a9d1df"
white: "#e6ebe5"
bright:
black: "#5d6f74"
red: "#cd749c"
green: "#63b0b0"
yellow: "#c0c0dd"
blue: "#5786bc"
magenta: "#3f3442"
cyan: "#849da2"
white: "#d9d6cf"

View File

@ -0,0 +1,33 @@
# Colors (Cobalt 2)
colors:
cursor:
text: '#fefff2'
cursor: '#f0cc09'
selection:
text: '#b5b5b5'
background: '#18354f'
primary:
background: '#132738'
foreground: '#ffffff'
normal:
black: '#000000'
red: '#ff0000'
green: '#38de21'
yellow: '#ffe50a'
blue: '#1460d2'
magenta: '#ff005d'
cyan: '#00bbbb'
white: '#bbbbbb'
bright:
black: '#555555'
red: '#f40e17'
green: '#3bd01d'
yellow: '#edc809'
blue: '#5555ff'
magenta: '#ff55ff'
cyan: '#6ae3fa'
white: '#ffffff'

View File

@ -0,0 +1,34 @@
# From the famous Cobalt2 sublime theme
# Source : https://github.com/wesbos/cobalt2/tree/master/Cobalt2
colors:
# Default colors
primary:
background: '0x122637'
foreground: '0xffffff'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x122637'
cursor: '0xf0cb09'
# Normal colors
normal:
black: '0x000000'
red: '0xff0000'
green: '0x37dd21'
yellow: '0xfee409'
blue: '0x1460d2'
magenta: '0xff005d'
cyan: '0x00bbbb'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x545454'
red: '0xf40d17'
green: '0x3bcf1d'
yellow: '0xecc809'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x6ae3f9'
white: '0xffffff'

View File

@ -0,0 +1,27 @@
colors:
name: Codeschool (dark)
author: Chris Kempson
primary:
background: "#232c31"
foreground: "#9ea7a6"
cursor:
text: "#232c31"
cursor: "#9ea7a6"
normal:
black: "#232c31"
red: "#2a5491"
green: "#237986"
yellow: "#a03b1e"
blue: "#484d79"
magenta: "#c59820"
cyan: "#b02f30"
white: "#9ea7a6"
bright:
black: "#3f4944"
red: "#2a5491"
green: "#237986"
yellow: "#a03b1e"
blue: "#484d79"
magenta: "#c59820"
cyan: "#b02f30"
white: "#b5d8f6"

View File

@ -0,0 +1,27 @@
colors:
name: Codeschool (light)
author: Chris Kempson
primary:
background: "#b5d8f6"
foreground: "#2a343a"
cursor:
text: "#b5d8f6"
cursor: "#2a343a"
normal:
black: "#232c31"
red: "#2a5491"
green: "#237986"
yellow: "#a03b1e"
blue: "#484d79"
magenta: "#c59820"
cyan: "#b02f30"
white: "#9ea7a6"
bright:
black: "#3f4944"
red: "#2a5491"
green: "#237986"
yellow: "#a03b1e"
blue: "#484d79"
magenta: "#c59820"
cyan: "#b02f30"
white: "#b5d8f6"

View File

@ -0,0 +1,27 @@
colors:
name: Colorful Colors
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#151515"
red: "#ff8eaf"
green: "#a6e25f"
yellow: "#f8e578"
blue: "#a6e2f0"
magenta: "#e85b92"
cyan: "#5f868f"
white: "#d5f1f2"
bright:
black: "#696969"
red: "#ed4c7a"
green: "#a6e179"
yellow: "#ffdf6b"
blue: "#79d2ff"
magenta: "#bb5d79"
cyan: "#87a8af"
white: "#e2f1f6"

View File

@ -0,0 +1,27 @@
colors:
name: Dark Ocean
author: DOOMICIDE
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#000000"
red: "#571dc2"
green: "#14db49"
yellow: "#403d70"
blue: "#385a70"
magenta: "#384894"
cyan: "#4f3a5e"
white: "#999999"
bright:
black: "#38372c"
red: "#7c54b0"
green: "#a2e655"
yellow: "#9c6f59"
blue: "#323f5c"
magenta: "#5e6c99"
cyan: "#667d77"
white: "#ffffff"

View File

@ -0,0 +1,27 @@
# Colors (Darkside)
colors:
primary:
background: '#222324'
foreground: '#BABABA'
# Normal colors
normal:
black: '#000000'
red: '#E8341C'
green: '#68C256'
yellow: '#F2D42C'
blue: '#1C98E8'
magenta: '#8E69C9'
cyan: '#1C98E8'
white: '#BABABA'
# Bright colors
bright:
black: '#666666'
red: '#E05A4F'
green: '#77B869'
yellow: '#EFD64B'
blue: '#387CD3'
magenta: '#957BBE'
cyan: '#3D97E2'
white: '#BABABA'

View File

@ -0,0 +1,40 @@
# Colors (Darktooth)
colors:
# Default colors
primary:
background: '#282828'
foreground: '#fdf4c1'
# Normal colors
normal:
black: '#282828'
red: '#9d0006'
green: '#79740e'
yellow: '#b57614'
blue: '#076678'
magenta: '#8f3f71'
cyan: '#00a7af'
white: '#fdf4c1'
# Bright colors
bright:
black: '#32302f'
red: '#fb4933'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#3fd7e5'
white: '#ffffc8'
# Dim colors (Optional)
dim:
black: '#1d2021'
red: '#421e1e'
green: '#232b0f'
yellow: '#4d3b27'
blue: '#2b3c44'
magenta: '#4e3d45'
cyan: '#205161'
white: '#f4e8ba'

View File

@ -0,0 +1,27 @@
colors:
name: Dawn
author: Escapist
primary:
background: "#181B20"
foreground: "#9B9081"
cursor:
text: "#181B20"
cursor: "#9B9081"
normal:
black: "#353535"
red: "#744B40"
green: "#6D6137"
yellow: "#765636"
blue: "#61564B"
magenta: "#6B4A49"
cyan: "#435861"
white: "#B3B3B3"
bright:
black: "#5F5F5F"
red: "#785850"
green: "#6F6749"
yellow: "#776049"
blue: "#696057"
magenta: "#6F5A59"
cyan: "#525F66"
white: "#CDCDCD"

View File

@ -0,0 +1,27 @@
colors:
name: Deafened
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#3d3e3d"
red: "#755a5b"
green: "#68755a"
yellow: "#756e5a"
blue: "#5b6976"
magenta: "#755b76"
cyan: "#465457"
white: "#ccccc6"
bright:
black: "#5a5b5c"
red: "#a37679"
green: "#87a376"
yellow: "#a39b76"
blue: "#758ba3"
magenta: "#9f76a3"
cyan: "#899ca1"
white: "#f8f8f2"

View File

@ -0,0 +1,27 @@
colors:
name: Default (dark)
author: Chris Kempson
primary:
background: "#151515"
foreground: "#d0d0d0"
cursor:
text: "#151515"
cursor: "#d0d0d0"
normal:
black: "#151515"
red: "#ac4142"
green: "#90a959"
yellow: "#f4bf75"
blue: "#6a9fb5"
magenta: "#aa759f"
cyan: "#75b5aa"
white: "#d0d0d0"
bright:
black: "#505050"
red: "#ac4142"
green: "#90a959"
yellow: "#f4bf75"
blue: "#6a9fb5"
magenta: "#aa759f"
cyan: "#75b5aa"
white: "#f5f5f5"

View File

@ -0,0 +1,27 @@
colors:
name: Default (light)
author: Chris Kempson
primary:
background: "#f5f5f5"
foreground: "#303030"
cursor:
text: "#f5f5f5"
cursor: "#303030"
normal:
black: "#151515"
red: "#ac4142"
green: "#90a959"
yellow: "#f4bf75"
blue: "#6a9fb5"
magenta: "#aa759f"
cyan: "#75b5aa"
white: "#d0d0d0"
bright:
black: "#505050"
red: "#ac4142"
green: "#90a959"
yellow: "#f4bf75"
blue: "#6a9fb5"
magenta: "#aa759f"
cyan: "#75b5aa"
white: "#f5f5f5"

View File

@ -0,0 +1,27 @@
colors:
name: Derp
author: ""
primary:
background: "#000000"
foreground: "#ffffff"
cursor:
text: "#000000"
cursor: "#ffffff"
normal:
black: "#111111"
red: "#d36265"
green: "#aece91"
yellow: "#e7e18c"
blue: "#5297cf"
magenta: "#963c59"
cyan: "#5e7175"
white: "#bebebe"
bright:
black: "#666666"
red: "#ef8171"
green: "#cfefb3"
yellow: "#fff796"
blue: "#74b8ef"
magenta: "#b85e7b"
cyan: "#a3babf"
white: "#ffffff"

Some files were not shown because too many files have changed in this diff Show More