changes
This commit is contained in:
parent
a27848fc98
commit
9ac40bd36b
|
|
@ -37,63 +37,34 @@ font:
|
|||
# Style can be specified to pick a specific face.
|
||||
style: italic
|
||||
|
||||
|
||||
# XTerm's default colors
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x1e2127'
|
||||
foreground: '0xabb2bf'
|
||||
|
||||
# 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'
|
||||
|
||||
background: '0x000000'
|
||||
foreground: '0xffffff'
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '#1e2127'
|
||||
red: '#e06c75'
|
||||
green: '#98c379'
|
||||
yellow: '#d19a66'
|
||||
blue: '#61afef'
|
||||
magenta: '#c678dd'
|
||||
cyan: '#56b6c2'
|
||||
white: '#828791'
|
||||
black: '#000000'
|
||||
red: '#cd0000'
|
||||
green: '#00cd00'
|
||||
yellow: '#cdcd00'
|
||||
blue: '#0000ee'
|
||||
magenta: '#cd00cd'
|
||||
cyan: '#00cdcd'
|
||||
white: '#e5e5e5'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '#5c6370'
|
||||
red: '#e06c75'
|
||||
green: '#98c379'
|
||||
yellow: '#d19a66'
|
||||
blue: '#61afef'
|
||||
magenta: '#c678dd'
|
||||
cyan: '#56b6c2'
|
||||
white: '#e6efff'
|
||||
|
||||
# Dim 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'
|
||||
black: '#7f7f7f'
|
||||
red: '#ff0000'
|
||||
green: '#00ff00'
|
||||
yellow: '#ffff00'
|
||||
blue: '#5c5cff'
|
||||
magenta: '#ff00ff'
|
||||
cyan: '#00ffff'
|
||||
white: '#ffffff'
|
||||
|
||||
# Indexed Colors
|
||||
#
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ do
|
|||
case "$1" in
|
||||
"d")
|
||||
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
|
||||
"w")
|
||||
genwall $file
|
||||
"w") genwall $file;;
|
||||
"c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
|
||||
esac
|
||||
done
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
slstatus &
|
||||
setwall &
|
||||
#setwall &
|
||||
xwallpaper --zoom ~/.local/share/wallpaper.jpg
|
||||
xcompmgr &
|
||||
xset r rate 300 50
|
||||
dunst &
|
||||
|
|
|
|||
|
|
@ -73,3 +73,6 @@ contiguous -> sharing a common border; touching.
|
|||
concurrent -> operating or occuring at the same time
|
||||
vague -> of uncertain, indefinite, or unclear character or meaning
|
||||
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