Riyyi
7 years ago
commit
f656f77f2d
10 changed files with 486 additions and 0 deletions
@ -0,0 +1,60 @@ |
|||||||
|
! special |
||||||
|
*.foreground: #c5c8c6 |
||||||
|
*.background: #1d1f21 |
||||||
|
*.cursorColor: #c5c8c6 |
||||||
|
|
||||||
|
! black |
||||||
|
*.color0: #282a2e |
||||||
|
*.color8: #373b41 |
||||||
|
|
||||||
|
! red |
||||||
|
*.color1: #a54242 |
||||||
|
*.color9: #cc6666 |
||||||
|
|
||||||
|
! green |
||||||
|
*.color2: #8c9440 |
||||||
|
*.color10: #b5bd68 |
||||||
|
|
||||||
|
! yellow |
||||||
|
*.color3: #de935f |
||||||
|
*.color11: #f0c674 |
||||||
|
|
||||||
|
! blue |
||||||
|
*.color4: #5f819d |
||||||
|
*.color12: #81a2be |
||||||
|
|
||||||
|
! magenta |
||||||
|
*.color5: #85678f |
||||||
|
*.color13: #b294bb |
||||||
|
|
||||||
|
! cyan |
||||||
|
*.color6: #5e8d87 |
||||||
|
*.color14: #8abeb7 |
||||||
|
|
||||||
|
! white |
||||||
|
*.color7: #707880 |
||||||
|
*.color15: #c5c8c6 |
||||||
|
|
||||||
|
Xcursor.theme: capitaine-cursors |
||||||
|
|
||||||
|
URxvt*font: xft:DejaVu Sans Mono:size=9:antialias=true |
||||||
|
URxvt*boltfont: xft:DejaVu Sans Mono:bold:size=9:antialias=true |
||||||
|
URxvt*letterSpace: -1 |
||||||
|
URxvt*scrollBar: false |
||||||
|
|
||||||
|
URxvt.perl-ext-common: default,matcher,selection-to-clipboard |
||||||
|
URxvt.url-launcher: /usr/bin/xdg-open |
||||||
|
URxvt.matcher.button: 1 |
||||||
|
URxvt.matcher.rend.0: Uline Bold fg5 |
||||||
|
|
||||||
|
! Rofi |
||||||
|
! bg fg bgalt hlbg hlfg |
||||||
|
!rofi.color-normal: #FFFFFF, #58637B, #F5F5F5, #5294E2, #F3F4F5 |
||||||
|
!rofi.color-active: # |
||||||
|
!rofi.color-urgent: # |
||||||
|
|
||||||
|
! bg border seperator |
||||||
|
!rofi.color-window: #FFFFFF, #434A59, #434A59 |
||||||
|
|
||||||
|
rofi.color-normal: #404552, #D3DAE3, #3F4350, #5294E2, #D3DAE3 |
||||||
|
rofi.color-window: #404552, #2B2E39, #2B2E39 |
@ -0,0 +1,15 @@ |
|||||||
|
[Settings] |
||||||
|
gtk-theme-name=Arc-Dark |
||||||
|
gtk-icon-theme-name=Arc |
||||||
|
gtk-font-name=DejaVu Sans 10 |
||||||
|
gtk-cursor-theme-name=capitaine-cursors |
||||||
|
gtk-cursor-theme-size=0 |
||||||
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH |
||||||
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR |
||||||
|
gtk-button-images=1 |
||||||
|
gtk-menu-images=1 |
||||||
|
gtk-enable-event-sounds=1 |
||||||
|
gtk-enable-input-feedback-sounds=1 |
||||||
|
gtk-xft-antialias=1 |
||||||
|
gtk-xft-hinting=1 |
||||||
|
gtk-xft-hintstyle=hintfull |
@ -0,0 +1,9 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
icon="$HOME/Pictures/lock.png" |
||||||
|
tmpbg='/tmp/screen.png' |
||||||
|
|
||||||
|
scrot "$tmpbg" |
||||||
|
convert "$tmpbg" -scale 10% -scale 1000% "$tmpbg" |
||||||
|
convert "$tmpbg" "$icon" -gravity center -composite -matte "$tmpbg" |
||||||
|
i3lock -u -i "$tmpbg" |
@ -0,0 +1,18 @@ |
|||||||
|
# DO NOT EDIT! This file will be overwritten by LXAppearance. |
||||||
|
# Any customization should be done in ~/.gtkrc-2.0.mine instead. |
||||||
|
|
||||||
|
include "/home/rick/.gtkrc-2.0.mine" |
||||||
|
gtk-theme-name="Arc-Dark" |
||||||
|
gtk-icon-theme-name="Arc" |
||||||
|
gtk-font-name="DejaVu Sans 10" |
||||||
|
gtk-cursor-theme-name="capitaine-cursors" |
||||||
|
gtk-cursor-theme-size=0 |
||||||
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH |
||||||
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR |
||||||
|
gtk-button-images=1 |
||||||
|
gtk-menu-images=1 |
||||||
|
gtk-enable-event-sounds=1 |
||||||
|
gtk-enable-input-feedback-sounds=1 |
||||||
|
gtk-xft-antialias=1 |
||||||
|
gtk-xft-hinting=1 |
||||||
|
gtk-xft-hintstyle="hintfull" |
Binary file not shown.
@ -0,0 +1,28 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
userresources=$HOME/.Xresources |
||||||
|
usermodmap=$HOME/.Xmodmap |
||||||
|
sysresources=/etc/X11/xinit/.Xresources |
||||||
|
sysmodmap=/etc/X11/xinit/.Xmodmap |
||||||
|
|
||||||
|
# merge in defaults and keymaps |
||||||
|
|
||||||
|
if [ -f $sysresources ]; then |
||||||
|
xrdb -merge $sysresources |
||||||
|
fi |
||||||
|
|
||||||
|
if [ -f $sysmodmap ]; then |
||||||
|
xmodmap $sysmodmap |
||||||
|
fi |
||||||
|
|
||||||
|
if [ -f "$userresources" ]; then |
||||||
|
xrdb -merge "$userresources" |
||||||
|
fi |
||||||
|
|
||||||
|
if [ -f "$usermodmap" ]; then |
||||||
|
xmodmap "$usermodmap" |
||||||
|
fi |
||||||
|
|
||||||
|
# start some nice programs |
||||||
|
|
||||||
|
exec i3 |
@ -0,0 +1,3 @@ |
|||||||
|
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then |
||||||
|
exec startx |
||||||
|
fi |
@ -0,0 +1,27 @@ |
|||||||
|
#!/bin/bash |
||||||
|
# |
||||||
|
# This file echoes a bunch of color codes to the |
||||||
|
# terminal to demonstrate what's available. Each |
||||||
|
# line is the color code of one forground color, |
||||||
|
# out of 17 (default + 16 escapes), followed by a |
||||||
|
# test use of that color on all nine background |
||||||
|
# colors (default + 8 escapes). |
||||||
|
# |
||||||
|
|
||||||
|
T='gYw' # The test text |
||||||
|
|
||||||
|
echo -e "\n 40m 41m 42m 43m\ |
||||||
|
44m 45m 46m 47m"; |
||||||
|
|
||||||
|
for FGs in ' m' ' 1m' ' 30m' '1;30m' ' 31m' '1;31m' ' 32m' \ |
||||||
|
'1;32m' ' 33m' '1;33m' ' 34m' '1;34m' ' 35m' '1;35m' \ |
||||||
|
' 36m' '1;36m' ' 37m' '1;37m'; |
||||||
|
do FG=${FGs// /} |
||||||
|
echo -en " $FGs \033[$FG $T " |
||||||
|
for BG in 40m 41m 42m 43m 44m 45m 46m 47m; |
||||||
|
do echo -en "$EINS \033[$FG\033[$BG $T \033[0m"; |
||||||
|
done |
||||||
|
echo; |
||||||
|
done |
||||||
|
echo |
||||||
|
|
Loading…
Reference in new issue