-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 107115f
Showing
32 changed files
with
1,212 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# | ||
# ~/.bash_profile | ||
# | ||
|
||
#LANG=en_US.UTF-8 | ||
#LC_TIME=ru_RU.UTF-8 | ||
|
||
[[ -f ~/.bashrc ]] && . ~/.bashrc | ||
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# /etc/bash.bashrc | ||
# | ||
|
||
# If not running interactively, don't do anything | ||
[[ $- != *i* ]] && return | ||
|
||
|
||
complete -cf sudo | ||
|
||
alias ls='ls --color=auto' | ||
|
||
#LANG=en_US.UTF-8 | ||
#LC_TIME=ru_RU.UTF-8 | ||
|
||
PS1='\[\033[0;32m\]\h@\u\[\033[01;34m\] \W \[\033[01;32m\]\$\[\033[00m\] ' | ||
PS2='> ' | ||
PS3='> ' | ||
PS4='+ ' | ||
|
||
#case ${TERM} in | ||
# xterm*|rxvt*|Eterm|aterm|kterm|gnome*) | ||
# PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"' | ||
# | ||
# ;; | ||
# screen) | ||
# PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"' | ||
# ;; | ||
#esac | ||
# | ||
#[ -r /usr/share/bash-completion/completion ] && . /usr/share/bash-completion/completion | ||
|
||
export VISUAL="vim" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
shadow-exclude = [ "_GTK_FRAME_EXTENTS@:c" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<!--Этот файл должен быть тут: /etc/fonts/local.conf--> | ||
<!--Составлено Malody для записи в блоге http://archlinux.org.ru/forum/topic/16691/ --> | ||
<fontconfig> | ||
<!-- Настройки отоброжения --> | ||
<match target="font"> | ||
<edit name="antialias" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
<edit name="autohint" mode="assign"> | ||
<bool>false</bool> | ||
</edit> | ||
<edit name="embeddedbitmap" mode="assign"> | ||
<bool>false</bool> | ||
</edit> | ||
<edit name="hinting" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
<edit name="hintstyle" mode="assign"> | ||
<!--hintslight - для более "полных" шрифтов, hintsfull - для более тонких --> | ||
<const>hintslight</const> | ||
</edit> | ||
<edit name="lcdfilter" mode="assign"> | ||
<const>lcddefault</const> | ||
</edit> | ||
<edit name="rgba" mode="assign"> | ||
<const>rgb</const> | ||
</edit> | ||
<!--Отключение хинтинга для Bold шрифтов--> | ||
<test name="weight" compare="more"> | ||
<const>medium</const> | ||
</test> | ||
<edit name="autohint" mode="assign"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
<!--Замена шрифтов MS на метрически совместимые ChromeOs https://wiki.archlinux.org/index.php/Metric-compatible_fonts --> | ||
<alias> | ||
<family>serif</family> | ||
<prefer><family>Tinos</family></prefer> | ||
</alias> | ||
<alias> | ||
<family>sans-serif</family> | ||
<prefer><family>Arimo</family></prefer> | ||
</alias> | ||
<alias> | ||
<family>sans</family> | ||
<prefer><family>Arimo</family></prefer> | ||
</alias> | ||
<alias> | ||
<family>monospace</family> | ||
<prefer><family>Cousine</family></prefer> | ||
</alias> | ||
<!-- Map specific families to CrOS ones --> | ||
<match> | ||
<test name="family"><string>Arial</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Arimo</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Helvetica</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Arimo</string> | ||
</edit> | ||
</match> | ||
<match> <!-- Метрически не совместимая замена --> | ||
<test name="family"><string>Verdana</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Arimo</string> | ||
</edit> | ||
</match> | ||
<match> <!-- Метрически не совместимая замена --> | ||
<test name="family"><string>Tahoma</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Arimo</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Times New Roman</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Tinos</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Times</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Tinos</string> | ||
</edit> | ||
</match> | ||
<match> <!-- Метрически не совместимая замена --> | ||
<test name="family"><string>Consolas</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Cousine</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Courier New</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Cousine</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Calibri</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Carlito</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Cambria</string></test> | ||
<edit name="family" mode="assign" binding="strong"> | ||
<string>Caladea</string> | ||
</edit> | ||
</match> | ||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version='1.0'?> | ||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | ||
<fontconfig> | ||
<match target="font"> | ||
<edit name="rgba" mode="assign"> | ||
<const>rgb</const> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit name="hinting" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit name="hintstyle" mode="assign"> | ||
<const>hintsfull/const> | ||
</edit> | ||
</match> | ||
<dir>~/.fonts</dir> | ||
<match target="font"> | ||
<edit name="antialias" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit name="autohint" mode="assign"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit name="embeddedbitmap" mode="assign"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit name="lcdfilter" mode="assign"> | ||
<bool>lcddefault</bool> | ||
</edit> | ||
</match> | ||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Beware! This file is rewritten by htop when settings are changed in the interface. | ||
# The parser is also very primitive, and not human-friendly. | ||
fields=0 48 17 18 38 39 40 2 46 47 49 1 | ||
sort_key=1 | ||
sort_direction=1 | ||
hide_threads=0 | ||
hide_kernel_threads=1 | ||
hide_userland_threads=0 | ||
shadow_other_users=0 | ||
show_thread_names=0 | ||
show_program_path=1 | ||
highlight_base_name=0 | ||
highlight_megabytes=1 | ||
highlight_threads=1 | ||
tree_view=0 | ||
header_margin=1 | ||
detailed_cpu_time=0 | ||
cpu_count_from_zero=0 | ||
update_process_names=0 | ||
account_guest_in_cpu_meter=0 | ||
color_scheme=0 | ||
delay=15 | ||
left_meters=AllCPUs Memory Swap | ||
left_meter_modes=1 1 1 | ||
right_meters=Tasks LoadAverage Uptime Memory | ||
right_meter_modes=2 2 2 2 |
Oops, something went wrong.