changes
This commit is contained in:
parent
a27848fc98
commit
9ac40bd36b
|
|
@ -37,65 +37,36 @@ font:
|
||||||
# Style can be specified to pick a specific face.
|
# Style can be specified to pick a specific face.
|
||||||
style: italic
|
style: italic
|
||||||
|
|
||||||
|
|
||||||
|
# XTerm's default colors
|
||||||
colors:
|
colors:
|
||||||
# Default colors
|
# Default colors
|
||||||
primary:
|
primary:
|
||||||
background: '0x1e2127'
|
background: '0x000000'
|
||||||
foreground: '0xabb2bf'
|
foreground: '0xffffff'
|
||||||
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
#
|
|
||||||
# The dimmed foreground color is calculated automatically if it is not present.
|
|
||||||
# If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
|
|
||||||
# is `false`, the normal foreground color will be used.
|
|
||||||
#dim_foreground: '0x9a9a9a'
|
|
||||||
bright_foreground: '0xe6efff'
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
#
|
|
||||||
# Colors which should be used to draw the terminal cursor. If these are unset,
|
|
||||||
# the cursor color will be the inverse of the cell color.
|
|
||||||
#cursor:
|
|
||||||
# text: '0x000000'
|
|
||||||
# cursor: '0xffffff'
|
|
||||||
|
|
||||||
# Normal colors
|
# Normal colors
|
||||||
normal:
|
normal:
|
||||||
black: '#1e2127'
|
black: '#000000'
|
||||||
red: '#e06c75'
|
red: '#cd0000'
|
||||||
green: '#98c379'
|
green: '#00cd00'
|
||||||
yellow: '#d19a66'
|
yellow: '#cdcd00'
|
||||||
blue: '#61afef'
|
blue: '#0000ee'
|
||||||
magenta: '#c678dd'
|
magenta: '#cd00cd'
|
||||||
cyan: '#56b6c2'
|
cyan: '#00cdcd'
|
||||||
white: '#828791'
|
white: '#e5e5e5'
|
||||||
|
|
||||||
# Bright colors
|
# Bright colors
|
||||||
bright:
|
bright:
|
||||||
black: '#5c6370'
|
black: '#7f7f7f'
|
||||||
red: '#e06c75'
|
red: '#ff0000'
|
||||||
green: '#98c379'
|
green: '#00ff00'
|
||||||
yellow: '#d19a66'
|
yellow: '#ffff00'
|
||||||
blue: '#61afef'
|
blue: '#5c5cff'
|
||||||
magenta: '#c678dd'
|
magenta: '#ff00ff'
|
||||||
cyan: '#56b6c2'
|
cyan: '#00ffff'
|
||||||
white: '#e6efff'
|
white: '#ffffff'
|
||||||
|
|
||||||
# Dim colors
|
# Indexed Colors
|
||||||
#
|
|
||||||
# If the dim colors are not set, they will be calculated automatically based
|
|
||||||
# on the `normal` colors.
|
|
||||||
dim:
|
|
||||||
black: '#1e2127'
|
|
||||||
red: '#e06c75'
|
|
||||||
green: '#98c379'
|
|
||||||
yellow: '#d19a66'
|
|
||||||
blue: '#61afef'
|
|
||||||
magenta: '#c678dd'
|
|
||||||
cyan: '#56b6c2'
|
|
||||||
white: '#828791'
|
|
||||||
|
|
||||||
# Indexed Colors
|
|
||||||
#
|
#
|
||||||
# The indexed colors include all colors from 16 to 256.
|
# The indexed colors include all colors from 16 to 256.
|
||||||
# When these are not set, they're filled with sensible defaults.
|
# When these are not set, they're filled with sensible defaults.
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
"d")
|
"d")
|
||||||
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
|
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
|
||||||
"w")
|
"w") genwall $file;;
|
||||||
genwall $file
|
"c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
slstatus &
|
slstatus &
|
||||||
setwall &
|
#setwall &
|
||||||
|
xwallpaper --zoom ~/.local/share/wallpaper.jpg
|
||||||
xcompmgr &
|
xcompmgr &
|
||||||
xset r rate 300 50
|
xset r rate 300 50
|
||||||
dunst &
|
dunst &
|
||||||
|
|
|
||||||
|
|
@ -73,3 +73,6 @@ contiguous -> sharing a common border; touching.
|
||||||
concurrent -> operating or occuring at the same time
|
concurrent -> operating or occuring at the same time
|
||||||
vague -> of uncertain, indefinite, or unclear character or meaning
|
vague -> of uncertain, indefinite, or unclear character or meaning
|
||||||
concise -> giving a lot of information cleary and in a few words; brief but comprehensive
|
concise -> giving a lot of information cleary and in a few words; brief but comprehensive
|
||||||
|
lunatic -> a person who is mentally ill (not in technical use)
|
||||||
|
deterrent -> a thing that discourages or is intended to discourage someone from doing sometihng
|
||||||
|
omit -> leave out or exclude someone or something, either intentionally or forgetfully
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue