Skip to content

Commit e02dfde

Browse files
committed
first commit
0 parents  commit e02dfde

32 files changed

+3904
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "urxvt/ext"]
2+
path = urxvt/ext
3+
url = https://github.com/pkkolos/urxvt-scripts.git

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Dotfiles
2+
3+
Для установки всех зависимостей и самих dotfiles достаточно запустить скрипт, представленный ниже, в консоли.
4+
5+
```bash
6+
curl -o- https://raw.githubusercontent.com/pavletto/dotfiles/master/install.sh | bash
7+
```

Xresources

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
URxvt*scrollBar: false
2+
URxvt*saveLines: 10000
3+
URxvt*skipBuiltinGlyphs: true
4+
5+
!!Rofi
6+
! Enable the extended coloring options
7+
rofi.color-enabled: true
8+
9+
! Property Name BG Border Separator
10+
rofi.color-window: #073642, #073642, #2aa198
11+
12+
! Property Name BG FG BG-alt Head-BG Head-FG
13+
rofi.color-normal: #073642, #93a1a1, #073642, #073642, #fdf6e3
14+
rofi.color-active: #d33682, #268bd2, #d33682, #d33682, #268bd2
15+
rofi.color-urgent: #073642, #dc322f, #073642, #073642, #dc322f
16+
17+
! Set the desired separator style
18+
rofi.separator-style: solid
19+
rofi.bw: 1
20+
!rofi.color-active: #d33682
21+
rofi.padding: 16
22+
23+
rofi.yoffset: 0
24+
rofi.fake-transparency: false
25+
rofi.location: 0
26+
rofi.eh: 1
27+
rofi.width: 50
28+
rofi.lines: 15
29+
rofi.fixed-num-lines: true
30+
!Colorscheme
31+
!!Source http://github.com/altercation/solarized
32+
33+
*background: #002b36
34+
*foreground: #657b83
35+
!!*fading: 40
36+
*fadeColor: #002b36
37+
*cursorColor: #93a1a1
38+
*pointerColorBackground: #586e75
39+
*pointerColorForeground: #93a1a1
40+
41+
!! black dark/light
42+
*color0: #073642
43+
*color8: #002b36
44+
45+
!! red dark/light
46+
*color1: #dc322f
47+
*color9: #cb4b16
48+
49+
!! green dark/light
50+
*color2: #859900
51+
*color10: #586e75
52+
53+
!! yellow dark/light
54+
*color3: #b58900
55+
*color11: #657b83
56+
57+
!! blue dark/light
58+
*color4: #268bd2
59+
*color12: #839496
60+
61+
!! magenta dark/light
62+
*color5: #d33682
63+
*color13: #6c71c4
64+
65+
!! cyan dark/light
66+
*color6: #2aa198
67+
*color14: #93a1a1
68+
69+
!! white dark/light
70+
*color7: #eee8d5
71+
*color15: #fdf6e3
72+
73+
! Cursor
74+
URxvt.cursorBlink: true
75+
URxvt.cursorColor: #657b83
76+
URxvt.cursorUnderline: false
77+
78+
! Pointer
79+
URxvt.pointerBlank: true
80+
81+
82+
! Font
83+
! URxvt*font:
84+
85+
URxvt.font: xft:Hack-Regular:pixelsize=16,xft:Symbola
86+
URxvt.boldFont: xft:Hack-Bold:pixelsize=16:weight=bold,xft:Symbola
87+
URxvt.italicFont: xft:Hack-RegularOblique:pixelsize=16:slant=italic,xft:Symbola
88+
URxvt.utf8: true
89+
URxvt.locale: true
90+
URxvt*letterSpace: -1
91+
Xft.autohint: 0
92+
Xft.lcdfilter: lcddefault
93+
Xft.hintstyle: hintslight
94+
Xft.hinting: 1
95+
Xft.antialias: 1
96+
Xft.rgba: rgb
97+
Xft.dpi: 102
98+
! Plugins
99+
!https://github.com/pkkolos/urxvt-scripts
100+
URxvt.perl-ext-common: default,matcher,keyboard-select,font-size,url-select
101+
102+
! keyboard-select
103+
URxvt.keysym.M-Escape: perl:keyboard-select:activate
104+
URxvt.keysym.M-s: perl:keyboard-select:search
105+
106+
! url-select
107+
!
108+
URxvt.url-select.launcher: /usr/bin/xdg-open
109+
URxvt.url-select.underline: true
110+
URxvt.urlLauncher: chromium
111+
URxvt.keysym.M-u: perl:url-select:select_next
112+
URxvt.colorUL: #d33682
113+
URxvt.underlineURLs: true
114+
115+
! matcher
116+
URxvt.matcher.button: 1
117+
118+
! resize-font
119+
URxvt.keysym.C-Up: font-size:increase
120+
URxvt.keysym.C-Down: font-size:decrease
121+
URxvt.keysym.C-S-Up: font-size:incglobal
122+
URxvt.keysym.C-S-Down: font-size:decglobal
123+
URxvt.keysym.C-equal: font-size:reset
124+
URxvt.keysym.C-slash: font-size:show
125+
126+
!color (https://github.com/sos4nt/dynamic-colors)
127+
URxvt*dynamicColors: on
128+
URxvt.keysym.F12: perl:urxvt-colors:

config/awesome/env.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
chosen_theme = "multicolor"
2+
modkey = "Mod4"
3+
altkey = "Mod1"
4+
terminal = "urxvt"
5+
editor = os.getenv("EDITOR") or "vim"
6+
gui_editor = "gvim"
7+
browser = "chromium"
8+
guieditor = "subl"
9+
ide = "idea"
10+
modkey = "Mod4"
11+
altkey = "Mod1"

0 commit comments

Comments
 (0)