diff --git a/config.yaml b/config.yaml index 9592b99..8347122 100644 --- a/config.yaml +++ b/config.yaml @@ -53,16 +53,10 @@ dotfiles: d_fonts: src: fonts dst: ~/.local/share/fonts + f_picom.conf: + src: picom.conf + dst: ~/.config/picom.conf profiles: - home: - include: - - zsh - - vim - - x11 - - i3 - - font - - git - - gdb laptop: include: - zsh @@ -70,6 +64,7 @@ profiles: - x11 - i3 - font + - picom - git - gdb work: @@ -79,21 +74,14 @@ profiles: - x11 - i3 - font + - picom - git - gdb - dev-linux-bash: - include: - - bash - - vim - dev-obsd-bash: - include: - - bash - - vim - dev-linux-zsh: + dev-linux: include: - zsh - vim - dev-obsd-zsh: + dev-obsd: include: - zsh - vim @@ -127,3 +115,6 @@ profiles: gdb: dotfiles: - f_gdbinit + picom: + dotfiles: + - f_picom.conf diff --git a/dotfiles/Xresources b/dotfiles/Xresources index 0f28c0b..85c71cf 100644 --- a/dotfiles/Xresources +++ b/dotfiles/Xresources @@ -60,3 +60,9 @@ Xterm.vt100.scrollBar.widht:1 XTerm.vt100.translations: #override \n\ Ctrl minus: smaller-vt-font() \n\ Ctrl plus: larger-vt-font() + +! some urxvt term settings +URxvt.font: xft:Inconsolata for Powerline:size=11:antialias=true +URxvt.transparent: true +URxvt.shading: 50 +URxvt.scrollBar: false diff --git a/dotfiles/fonts/Space Mono Nerd Font Complete Mono.ttf b/dotfiles/fonts/Space Mono Nerd Font Complete Mono.ttf new file mode 100644 index 0000000..ad07b9d --- /dev/null +++ b/dotfiles/fonts/Space Mono Nerd Font Complete Mono.ttf @@ -0,0 +1,878 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nerd-fonts/Space Mono Nerd Font Complete Mono.ttf at master · ryanoasis/nerd-fonts · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Skip to content + + + + + + + + + + + +
+ +
+ + +
+ +
+ + + + +
+
+
+ + + + + + + + + + + + + + +
+
+ + + + + + + + + Permalink + + + + + +
+ + +
+ + Branch: + master + + + + +
+ + + +
+
+
+ +
+ + Find file + + + Copy path + +
+
+ + +
+ + Find file + + + Copy path + +
+
+ + + + + + +
+ Fetching contributors… +
+ +
+ + Cannot retrieve contributors at this time +
+
+ + + + +
+ +
+
+ + 844 KB +
+ +
+ + + + +
+ + + + +
+ +
+
+
+ + + + + + +
+
+ View raw +
+
+ +
+ + + +
+ + +
+ + +
+
+ + + +
+
+ +
+
+ + +
+ + + + + + +
+ + + You can’t perform that action at this time. +
+ + + + + + + + + + + + + + + + + + +
+ + + + + +NO javascript +NO script-type + diff --git a/dotfiles/i3_config b/dotfiles/i3_config index e136170..c2b6dfb 100644 --- a/dotfiles/i3_config +++ b/dotfiles/i3_config @@ -42,6 +42,7 @@ floating_modifier $mod # start a terminal bindsym $mod+Return exec xterm -e zsh +# for_window [class="XTerm"] floating enable move right 450px,move down 350px # kill focused window bindsym $mod+Shift+q kill @@ -155,10 +156,10 @@ mode "resize" { # Pressing right will grow the window’s width. # Pressing up will shrink the window’s height. # Pressing down will grow the window’s height. - bindsym j resize shrink width 10 px or 10 ppt - bindsym k resize grow height 10 px or 10 ppt - bindsym l resize shrink height 10 px or 10 ppt - bindsym odiaeresis resize grow width 10 px or 10 ppt + bindsym h resize shrink width 25 px or 25 ppt + bindsym j resize grow height 25 px or 25 ppt + bindsym k resize shrink height 25 px or 25 ppt + bindsym l resize grow width 25 px or 25 ppt # same bindings, but for the arrow keys bindsym Left resize shrink width 10 px or 10 ppt diff --git a/dotfiles/picom.conf b/dotfiles/picom.conf new file mode 100644 index 0000000..06ed1c9 --- /dev/null +++ b/dotfiles/picom.conf @@ -0,0 +1,8 @@ +opacity-rule = [ + "80:class_g = 'XTerm' && !focused" +]; + +fading = true; +fade-delta = 4; +fade-in-step = 0.03; +fade-out-step = 0.03; diff --git a/dotfiles/zshrc b/dotfiles/zshrc index ecbce5d..4df0d27 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -1,8 +1,8 @@ export ZSH="/home/$USER/.oh-my-zsh" ZSH_THEME="agnoster-plus" -{%@@ if profile == "dev-obsd-zsh" @@%} -ZSH_THEME="marc-theme" +{%@@ if profile == "dev-obsd" @@%} +ZSH_THEME="marc-pygmalion" {%@@ endif @@%} DISABLE_AUTO_UPDATE="true"