Iosevka font, blue colors in i3, cursor size visible on 4k display

This commit is contained in:
Łukasz Pankowski 2020-07-10 22:36:30 +02:00
parent aa1690a445
commit e747fe6f64
3 changed files with 13 additions and 8 deletions

View File

@ -1,8 +1,9 @@
#if HEIGHT == 2160 #if HEIGHT == 2160
Xft.dpi: 160 Xft.dpi: 160
#define EM_FONT FantasqueSansMono:pixelsize=30:antialias=true:autohint=true Xcursor.size: 48
#define EM_FONT Iosevka:pixelsize=30:antialias=true:autohint=true
#else #else
#define EM_FONT FantasqueSansMono:pixelsize=22:antialias=true:autohint=true #define EM_FONT Iosevka:pixelsize=22:antialias=true:autohint=true
#endif #endif
emacs.font: EM_FONT emacs.font: EM_FONT

View File

@ -11,7 +11,7 @@ colors:
font: font:
size: 13.5 size: 13.5
normal: normal:
family: Fantasque Sans Mono family: Iosevka
key_bindings: key_bindings:
- key: F6 - key: F6

View File

@ -6,8 +6,8 @@ set $mod Mod4
# Font for window titles. Will also be used by the bar unless a different font # Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below. # is used in the bar {} block below.
font pango:Fantasque Sans Mono 30px font pango:Iosevka 30px
set $dmenu_font "Fantasque Sans Mono:pixelsize=30" set $dmenu_font "Iosevka:pixelsize=30"
# Use pactl to adjust volume in PulseAudio. # Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status set $refresh_i3status killall -SIGUSR1 i3status
@ -31,7 +31,7 @@ bindsym $mod+e exec "emacsclient -n -c"
bindsym $mod+Shift+q kill bindsym $mod+Shift+q kill
# start dmenu (a program launcher) # start dmenu (a program launcher)
bindsym $mod+p exec dmenu_run -fn $dmenu_font -sb '#107d4a' bindsym $mod+p exec dmenu_run -fn $dmenu_font -sb '#3585ce'
# change focus # change focus
bindsym $mod+h focus left bindsym $mod+h focus left
@ -171,7 +171,9 @@ mode "$mode_cmd" {
bindsym $mod+semicolon mode "$mode_cmd" bindsym $mod+semicolon mode "$mode_cmd"
client.focused #3b8a6c #107d4a #fafafa #a9e694 #107d4a client.focused #29a6da #3585ce #e0e0e0 #6c6aef #3585ce
client.focused_inactive #333333 #5f676a #e0e0e0 #484e50 #5f676a
client.unfocused #333333 #2a5465 #a0a0a0 #292d2e #1a343a
# Start i3bar to display a workspace bar (plus the system information i3status # Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available) # finds out, if available)
@ -179,6 +181,8 @@ bar {
position top position top
status_command i3status status_command i3status
colors { colors {
focused_workspace #3b8a6c #107d4a #fafafa background #1a343a
inactive_workspace #505050 #1a343a #808080
focused_workspace #29a6da #3585ce #e0e0e0
} }
} }