mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
Nicer font configuration
This commit is contained in:
parent
ed93c42b1a
commit
b96d16bcef
14
.Xresources
14
.Xresources
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
urxvt.depth: 32
|
urxvt.depth: 32
|
||||||
|
|
||||||
urxvt.internalBorder: 9
|
urxvt.internalBorder: 4
|
||||||
urxvt.blurRadius: 25
|
urxvt.blurRadius: 25
|
||||||
urxvt.scrollBar: true
|
urxvt.scrollBar: true
|
||||||
urxvt.scrollBar_right: true
|
urxvt.scrollBar_right: true
|
||||||
@ -27,11 +27,12 @@ Xft.rgba: rgb
|
|||||||
Xft.autohint: false
|
Xft.autohint: false
|
||||||
Xft.hinting: true
|
Xft.hinting: true
|
||||||
Xft.hintstyle: hintfull
|
Xft.hintstyle: hintfull
|
||||||
urxvt*font: xft:Source Code Pro:size=11
|
urxvt*font: xft:Source Code Pro for Powerline:style=Regular:size=10,xft:FontAwesome:size=10
|
||||||
urxvt*imFont: xft:Source Code Pro:size=11
|
urxvt*imFont: xft:Source Code Pro for Powerline:style=Regular:size=10,xft:FontAwesome:size=10
|
||||||
urxvt*boldFont: xft:Source Code Pro:bold:size=11
|
urxvt*boldFont: xft:Source Code Pro for Powerline:style=Bold:size=10,xft:FontAwesome:size=10
|
||||||
urxvt*italicFont: xft:Source Code Pro:italic:size=11
|
urxvt*italicFont: xft:Source Code Pro for Powerline:style=Italic:size=10,xft:FontAwesome:size=10
|
||||||
urxvt*boldItalicFont: xft:Source Code Pro:bold:italic:size=10
|
urxvt*boldItalicFont: xft:Source Code Pro for Powerline:style=Bold,Italic:size=10,xft:FontAwesome:size=10
|
||||||
|
|
||||||
|
|
||||||
! clickable Url and copy paste keys
|
! clickable Url and copy paste keys
|
||||||
|
|
||||||
@ -59,6 +60,7 @@ urxvt*colorMode: on
|
|||||||
*.background: #002b36
|
*.background: #002b36
|
||||||
*.cursorColor: #eceff1
|
*.cursorColor: #eceff1
|
||||||
urxvt.background: [80]#002b36
|
urxvt.background: [80]#002b36
|
||||||
|
urxvt.scrollColor: #767B87
|
||||||
|
|
||||||
! black
|
! black
|
||||||
*.color0: #263238
|
*.color0: #263238
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
gtk-theme-name=Arc-Dark
|
gtk-theme-name=Arc-Dark
|
||||||
gtk-icon-theme-name=Xenlism-Wildfire-MidNight
|
gtk-icon-theme-name=Xenlism-Wildfire-MidNight
|
||||||
gtk-application-prefer-dark-theme=true
|
gtk-application-prefer-dark-theme=true
|
||||||
gtk-font-name=Noto Sans 10.5
|
gtk-font-name=Noto Sans 10
|
||||||
gtk-cursor-theme-name=Breeze_Obsidian
|
gtk-cursor-theme-name=Breeze_Obsidian
|
||||||
gtk-cursor-theme-size=0
|
gtk-cursor-theme-size=0
|
||||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
font pango:Noto Sans 11
|
font pango:Noto Sans 10.4
|
||||||
|
|
||||||
# kill focused window
|
# kill focused window
|
||||||
bindsym $mod+apostrophe kill
|
bindsym $mod+apostrophe kill
|
||||||
@ -95,7 +95,7 @@ bar {
|
|||||||
strip_workspace_numbers yes
|
strip_workspace_numbers yes
|
||||||
tray_output primary
|
tray_output primary
|
||||||
tray_padding 0
|
tray_padding 0
|
||||||
height 24
|
height 23
|
||||||
|
|
||||||
output $centre
|
output $centre
|
||||||
position top
|
position top
|
||||||
|
2
.profile
2
.profile
@ -1,4 +1,4 @@
|
|||||||
export LC_ALL="C"
|
export LC_ALL=en_GB.UTF-8
|
||||||
export LANG=en_GB.UTF-8
|
export LANG=en_GB.UTF-8
|
||||||
export LC_NUMERIC=en_GB
|
export LC_NUMERIC=en_GB
|
||||||
|
|
||||||
|
23
.vimrc
23
.vimrc
@ -1,6 +1,17 @@
|
|||||||
set nocompatible " be iMproved, required
|
set nocompatible " be iMproved, required
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
|
||||||
|
syntax enable
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set softtabstop=4
|
||||||
|
set expandtab
|
||||||
|
set number
|
||||||
|
set autoindent
|
||||||
|
set laststatus=2
|
||||||
|
set mouse=a
|
||||||
|
set encoding=utf-8
|
||||||
|
|
||||||
" set the runtime path to include Vundle and initialize
|
" set the runtime path to include Vundle and initialize
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
@ -12,15 +23,9 @@ Plugin 'vim-airline/vim-airline-themes'
|
|||||||
|
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
|
|
||||||
syntax enable
|
" Vim-Airline config
|
||||||
set tabstop=4
|
let g:Powerline_symbols = 'fancy'
|
||||||
set shiftwidth=4
|
let g:airline_powerline_fonts = 1
|
||||||
set softtabstop=4
|
|
||||||
set expandtab
|
|
||||||
set number
|
|
||||||
set autoindent
|
|
||||||
set laststatus=2
|
|
||||||
set mouse=a
|
|
||||||
|
|
||||||
" Interface with system clipboard
|
" Interface with system clipboard
|
||||||
noremap <Leader>y "*y
|
noremap <Leader>y "*y
|
||||||
|
5
packages
5
packages
@ -23,6 +23,7 @@ gdmap
|
|||||||
gimp
|
gimp
|
||||||
gitg
|
gitg
|
||||||
gksu
|
gksu
|
||||||
|
gnome-font-viewer
|
||||||
google-chrome
|
google-chrome
|
||||||
gtk-theme-arc-solid
|
gtk-theme-arc-solid
|
||||||
gvim
|
gvim
|
||||||
@ -54,8 +55,8 @@ oh-my-zsh-git
|
|||||||
openssh
|
openssh
|
||||||
pacaur
|
pacaur
|
||||||
pavucontrol
|
pavucontrol
|
||||||
powerline
|
|
||||||
powertop
|
powertop
|
||||||
|
powerline-fonts-git
|
||||||
pulseaudio
|
pulseaudio
|
||||||
pulseaudio-alsa
|
pulseaudio-alsa
|
||||||
qt5-qtstyleplugins
|
qt5-qtstyleplugins
|
||||||
@ -70,9 +71,7 @@ steam
|
|||||||
sysstat
|
sysstat
|
||||||
teamspeak3
|
teamspeak3
|
||||||
teamspeak3-soundpack-portal
|
teamspeak3-soundpack-portal
|
||||||
terminus-font
|
|
||||||
tree
|
tree
|
||||||
ttf-chromeos-fonts
|
|
||||||
ttf-font-awesome
|
ttf-font-awesome
|
||||||
unzip
|
unzip
|
||||||
urxvt-perls
|
urxvt-perls
|
||||||
|
Loading…
Reference in New Issue
Block a user