compatibility with alacritty 0.13+; updated colorscheme back to normal; ported some i3-specific scwrypts from scwrypts to here

This commit is contained in:
2024-02-06 13:37:58 -07:00
parent 39ec276c5d
commit 5ca1cd6d24
12 changed files with 392 additions and 59 deletions

View File

@ -1 +1 @@
/home/w0ryn/.wryn/colorschemes/winter.conf
/home/w0ryn/.wryn/colorschemes/main.conf

View File

@ -1,26 +1,27 @@
--- # yamllint disable rule:colons
# do not edit; generated by scwrypts
colors:
primary:
background: '0x000505'
foreground: '0xE0F7FF'
cursor:
cursor: '0xAAD7E6'
normal:
black: '0x02140D'
red: '0xD05023'
green: '0x027B9B'
yellow: '0x7B70AF'
blue: '0x3D8890'
magenta: '0x68D3F0'
cyan: '0x50A3B5'
white: '0xDEB88D'
bright:
black: '0x02DB88'
red: '0xD38677'
green: '0x618C98'
yellow: '0x7D72FE'
blue: '0x1ABCDD'
magenta: '0xBBE3EE'
cyan: '0x86ABB3'
white: '0xFEE3CD'
[colors.cursor]
cursor = '0xE0D0FF'
[colors.primary]
background = '0x000505'
foreground = '0xCFC2E9'
[colors.normal]
black = '0x000505'
red = '0xC80064'
green = '0x00C864'
yellow = '0x6400C8'
blue = '0x007D96'
magenta = '0x9600FA'
cyan = '0x00FAC8'
white = '0x7E707E'
[colors.bright]
black = '0x424253'
red = '0x640032'
green = '0x006432'
yellow = '0x320064'
blue = '0x00324B'
magenta = '0x640096'
cyan = '0x009664'
white = '0xC0B0C0'

View File

@ -0,0 +1,26 @@
--- # yamllint disable rule:colons
# do not edit; generated by scwrypts
colors:
primary:
background: '0x000505'
foreground: '0xCFC2E9'
cursor:
cursor: '0xE0D0FF'
normal:
black: '0x000505'
red: '0xC80064'
green: '0x00C864'
yellow: '0x6400C8'
blue: '0x007D96'
magenta: '0x9600FA'
cyan: '0x00FAC8'
white: '0x7E707E'
bright:
black: '0x424253'
red: '0x640032'
green: '0x006432'
yellow: '0x320064'
blue: '0x00324B'
magenta: '0x640096'
cyan: '0x009664'
white: '0xC0B0C0'

View File

@ -2,6 +2,6 @@
# source this file to apply colorscheme to linux getty
[[ "$TERM" =~ ^linux$ ]] || return 0
/bin/echo -e " ]P0000505 ]P1D05023 ]P2027B9B ]P37B70AF ]P43D8890 ]P568D3F0 ]P650A3B5 ]P7E0F7FF ]P8D38677 ]P9618C98 ]PA7D72FE ]PB1ABCDD ]PCBBE3EE ]PD86ABB3 ]PEDEB88D ]PFFEE3CD "
/bin/echo -e " ]P0000505 ]P1C80064 ]P200C864 ]P36400C8 ]P4007D96 ]P59600FA ]P600FAC8 ]P7CFC2E9 ]P8640032 ]P9006432 ]PA320064 ]PB00324B ]PC640096 ]PD009664 ]PE7E707E ]PFC0B0C0 "
[ ! $NO_CLEAR ] && clear
return 0