From ba6a320dffb87b29ec63f3966aaf86e22af999db Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 14 Mar 2019 18:11:08 +0100 Subject: [PATCH 1/6] exchanged fira code for iosevka --- .config/alacritty/alacritty.yml | 10 +++++----- .config/scripts/bootstrap/pkg/x.csv | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 1573f3f..fe5834d 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -86,7 +86,7 @@ font: # - (macOS) Menlo # - (Linux) monospace # - (Windows) Consolas - family: Fira Code + family: Iosevka # The `style` can be specified to pick a specific face. #style: Regular @@ -97,7 +97,7 @@ font: # # If the bold family is not specified, it will fall back to the # value specified for the normal font. - family: Fira Code + family: Iosevka # The `style` can be specified to pick a specific face. #style: Bold @@ -108,18 +108,18 @@ font: # # If the italic family is not specified, it will fall back to the # value specified for the normal font. - family: Fira Code + family: Iosevka # The `style` can be specified to pick a specific face. #style: Italic # Point size - size: 9.0 + size: 13.0 # Offset is the extra space around each character. `offset.y` can be thought of # as modifying the line spacing, and `offset.x` as modifying the letter spacing. offset: - x: -2 + x: 0 y: 0 # Glyph offset determines the locations of the glyphs within their cells with diff --git a/.config/scripts/bootstrap/pkg/x.csv b/.config/scripts/bootstrap/pkg/x.csv index cee4640..521e541 100644 --- a/.config/scripts/bootstrap/pkg/x.csv +++ b/.config/scripts/bootstrap/pkg/x.csv @@ -9,6 +9,6 @@ ,i3status,"is the status bar for i3." ,i3lock,"is the i3 screen lock provider." A,j4-dmenu-desktop,"is a faster dmenu replacement, the application launcher of the i3 suite." -A,nerd-fonts-fira-code,"is the mono-space font of choice, patched with embedded icon symbols." +A,nerd-fonts-iosevka,"is the mono-space font of choice, patched with embedded icon symbols." ,alacritty,"is an efficient, unicode compatible terminal emulator." ,qutebrowser,"is a keyboard focused browser with vim-keys enabled." From 866c04cfaa400b69f81dd6583d964f7001dc4b73 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 15 Mar 2019 11:30:36 +0100 Subject: [PATCH 2/6] add xdg user-dirs for xdg-user-dirs package --- .config/user-dirs.dirs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .config/user-dirs.dirs diff --git a/.config/user-dirs.dirs b/.config/user-dirs.dirs new file mode 100644 index 0000000..5dc3894 --- /dev/null +++ b/.config/user-dirs.dirs @@ -0,0 +1,8 @@ +XDG_DESKTOP_DIR="$HOME/desktop" +XDG_DOCUMENTS_DIR="$HOME/documents" +XDG_DOWNLOAD_DIR="$HOME/downloads" +#XDG_MUSIC_DIR="$HOME/music" +XDG_PICTURES_DIR="$HOME/pictures" +#XDG_PUBLICSHARE_DIR="$HOME/public" +#XDG_TEMPLATES_DIR="$HOME/templates" +#XDG_VIDEOS_DIR="$HOME/videos" From 46f04295820da93535dcf8459c2e535e362a8479 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 15 Mar 2019 13:44:23 +0100 Subject: [PATCH 3/6] remove window dimming in compton --- .config/compton/compton.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/compton/compton.conf b/.config/compton/compton.conf index e4871b3..991a819 100644 --- a/.config/compton/compton.conf +++ b/.config/compton/compton.conf @@ -111,7 +111,7 @@ frame-opacity = 1; inactive-opacity-override = true; # Dim inactive windows. (0.0 - 1.0) -inactive-dim = 0.1; +#inactive-dim = 0.1; # Do not let dimness adjust based on window opacity. # inactive-dim-fixed = true; # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. From d0820777f6a1fe8fe04a35f9f293bb205b1034cd Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 15 Mar 2019 13:44:48 +0100 Subject: [PATCH 4/6] add unclutter to x init if it exists --- .xinitrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.xinitrc b/.xinitrc index 1a7b5e2..e075a99 100644 --- a/.xinitrc +++ b/.xinitrc @@ -48,6 +48,8 @@ setxkbmap -option terminate:ctrl_alt_bksp # Needs xcape package installed. https://github.com/alols/xcape type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape' +# if unclutter exists start it +type unclutter >/dev/null 2>&1 && unclutter & # if compton exists then we can start it as our compositor type compton >/dev/null 2>&1 && compton & # same deal with flashfocus as our active window indicator From 26b58e78c987743804da08c8a751bf76137e8757 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 15 Mar 2019 13:59:08 +0100 Subject: [PATCH 5/6] add fontconfig substituting monospace for iosevka where available --- .config/fontconfig/fonts.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .config/fontconfig/fonts.conf diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf new file mode 100644 index 0000000..5e54ca0 --- /dev/null +++ b/.config/fontconfig/fonts.conf @@ -0,0 +1,26 @@ + + + + + + serif + Heuristica + + + sans-serif + Noto Sans + + + monospace + Iosevka + + + fantasy + Signika + + + cursive + TeX Gyre Chorus + + + From be53599ec9e972f210f6ef126d39c423396ae116 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 15 Mar 2019 14:00:21 +0100 Subject: [PATCH 6/6] set alacritty to use monospace font --- .config/alacritty/alacritty.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index fe5834d..5f9d4e6 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -86,7 +86,7 @@ font: # - (macOS) Menlo # - (Linux) monospace # - (Windows) Consolas - family: Iosevka + family: monospace # The `style` can be specified to pick a specific face. #style: Regular @@ -97,7 +97,7 @@ font: # # If the bold family is not specified, it will fall back to the # value specified for the normal font. - family: Iosevka + family: monospace # The `style` can be specified to pick a specific face. #style: Bold @@ -108,7 +108,7 @@ font: # # If the italic family is not specified, it will fall back to the # value specified for the normal font. - family: Iosevka + family: monospace # The `style` can be specified to pick a specific face. #style: Italic