Various tweaks

x1carbon
Jure Podgoršek 2018-03-23 05:12:23 +01:00
parent 091f4db344
commit a2f4139e18
5 changed files with 14 additions and 11 deletions

View File

@ -1,14 +1,11 @@
!!! Scaling, fonts !!!
Xft.dpi: 166
!Xft.dpi: 210
Xft.autohint: 1
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintfull
!Xft.hintstyle: hintslight
Xft.hinting: 1
Xft.antialias: 1
Xft.rgba: rgb
!Xft.embolden: true
!!! Solarized color theme !!!
#define S_yellow #b58900

View File

@ -1,4 +1,5 @@
backend = "glx";
vsync = "opengl-swc";
# Opacity
inactive-opacity-override = false;
@ -11,9 +12,6 @@ fading = true;
fade-delta = 25;
no-fading-openclose = true;
detect-rounded-corners = true;
blur-background-fixed = false;
# Shadows
clear-shadow = true;
shadow = true;
@ -27,3 +25,11 @@ no-dock-shadow = true;
paint-on-overlay = true;
unredir-if-possible = false;
unredir-if-possible-delay = 1000;
# Etc
detect-rounded-corners = true;
blur-background-fixed = false;
wintypes: {
tooltip = { fade = true; shadow = false; opacity = 1.00; focus = true; };
};

View File

@ -211,7 +211,6 @@ bar {
}
#font pango:Fira Mono, Icons 10
font pango:FontAwesome Regular 11, Iosevka Medium 11
#font pango:FontAwesome Regular 11
strip_workspace_numbers yes
height 44
tray_padding 2
@ -306,8 +305,8 @@ bindsym $mod+d exec --no-startup-id "rofi -combi-modi window,drun -show combi -m
# Screen brightness
set $brt_sig_cmd pkill -RTMIN+5 i3blocks
bindsym XF86MonBrightnessUp exec "xbacklight -inc 10 && $brt_sig_cmd"
bindsym XF86MonBrightnessDown exec "xbacklight -dec 10 && $brt_sig_cmd"
bindsym XF86MonBrightnessUp exec "xbacklight -inc 8.333 -time 222 && $brt_sig_cmd"
bindsym XF86MonBrightnessDown exec "xbacklight -dec 8.333 -time 222 && $brt_sig_cmd"
# File manager
bindsym Mod1+Shift+q exec nautilus

View File

@ -24,4 +24,4 @@ if [ "$TERM" = "linux" ]; then
clear # against bg artifacts
fi
XDG_CONFIG_HOME="$HOME/.config"
export XDG_CONFIG_HOME="$HOME/.config"

3
.zshrc
View File

@ -20,7 +20,7 @@ export GOPATH=~/Sredstva/go
export PATH="/home/g1smo/bin:$PATH:/home/g1smo/.gem/ruby/2.4.0/bin:$GOPATH/bin"
# Default term (i3)
export TERMINAL="gnome-terminal"
export TERMINAL="termite"
export TERM="xterm-256color"
# Prompt
@ -57,6 +57,7 @@ alias gitclean="git fetch -p && for branch in \$(git branch -vv | grep ': gone]'
alias llc="sudo mount -t nfs -o noacl,nocto,rsize=32768,wsize=32768,noatime,nodiratime 10.0.0.203:/Users/g1smo/Projects/LickList ~/ll"
alias llcc="sudo mount -t nfs -o noacl,nocto,rsize=32768,wsize=32768,noatime,nodiratime 192.168.8.103:/Users/g1smo/Projects/LickList ~/ll"
alias lld="sudo umount -l ~/ll"
alias sctl="systemctl"
# Firefox scaling!
alias sf="find ~/.mozilla/firefox -name \"prefs.js\" -exec sed -ri 's/(devPixelsPerPx\\\", \\\")[0-9\\.]+/\\11\.00/' {} + ; firefox"