P53 update
This commit is contained in:
parent
fa5df046ea
commit
0f42995fd5
13
Xresources
13
Xresources
@ -48,10 +48,17 @@ Xft.hintstyle: hintfull
|
|||||||
Xft.rgba: rgb
|
Xft.rgba: rgb
|
||||||
Xft.dpi: 282
|
Xft.dpi: 282
|
||||||
|
|
||||||
!URxvt*font: xft:DejaVuSansMono:size=8:style=dzForPowerline
|
URxvt.perl-ext-common: default,matcher,resize-font
|
||||||
URxvt*font: xft:Courier New:size=8
|
URxvt.iso14755: false
|
||||||
|
URxvt.iso14755_52: false
|
||||||
|
|
||||||
|
!URxvt*font: xft:DejaVuSansMono:size=8:style=dzForPowerline
|
||||||
|
URxvt*font: xft:Courier New:size=12
|
||||||
|
!URxvt.keysym.Alt-Up: resize-font:bigger
|
||||||
|
!URxvt.keysym.Alt-Down: resize-font:smaller
|
||||||
|
!URxvt.perl-ext:
|
||||||
|
!URxvt.perl-ext-common:
|
||||||
|
|
||||||
URxvt.perl-ext-common: default,matcher,font-size
|
|
||||||
URxvt.urlLauncher: xdg-open
|
URxvt.urlLauncher: xdg-open
|
||||||
URxvt.matcher.button: 1
|
URxvt.matcher.button: 1
|
||||||
URxvt*scrollstyle: plain
|
URxvt*scrollstyle: plain
|
||||||
|
|||||||
@ -20,7 +20,7 @@ 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:DejaVu Sans Mono 6
|
font pango:DejaVu Sans Mono 12
|
||||||
|
|
||||||
# This font is widely installed, provides lots of unicode glyphs, right-to-left
|
# This font is widely installed, provides lots of unicode glyphs, right-to-left
|
||||||
# text rendering and scalability on retina/hidpi displays (thanks to pango).
|
# text rendering and scalability on retina/hidpi displays (thanks to pango).
|
||||||
@ -130,6 +130,17 @@ bindsym $mod+Shift+Down move down
|
|||||||
bindsym $mod+Shift+Up move up
|
bindsym $mod+Shift+Up move up
|
||||||
bindsym $mod+Shift+Right move right
|
bindsym $mod+Shift+Right move right
|
||||||
|
|
||||||
|
# Resizing windows
|
||||||
|
bindsym $mod+Ctrl+Shift+Up resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+Down resize grow height 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+Right resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+Left resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
|
bindsym $mod+Ctrl+Shift+k resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+j resize grow height 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+l resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym $mod+Ctrl+Shift+h resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
# split in horizontal orientation
|
# split in horizontal orientation
|
||||||
bindsym $mod+b split h
|
bindsym $mod+b split h
|
||||||
|
|
||||||
@ -286,7 +297,8 @@ bar {
|
|||||||
|
|
||||||
# separator_symbol "ʃ"
|
# separator_symbol "ʃ"
|
||||||
#separator_symbol "❰"
|
#separator_symbol "❰"
|
||||||
separator_symbol "|"
|
#separator_symbol "|"
|
||||||
|
separator_symbol "ǁ"
|
||||||
|
|
||||||
|
|
||||||
strip_workspace_name no
|
strip_workspace_name no
|
||||||
|
|||||||
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
show-icons: true;
|
show-icons: true;
|
||||||
|
font: "Courier New 32";
|
||||||
icon-theme: "Papirus";
|
icon-theme: "Papirus";
|
||||||
}
|
}
|
||||||
|
|||||||
10
lock.sh
10
lock.sh
@ -1,11 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
BLANK='#00000000'
|
BLANK='#00000000'
|
||||||
CLEAR='#ffffff22'
|
CLEAR='#ffffffbb'
|
||||||
DEFAULT='#ff00ffcc'
|
DEFAULT='#ffffffbb'
|
||||||
TEXT='#ee00eeee'
|
TEXT='#888888bb'
|
||||||
WRONG='#880000bb'
|
WRONG='#000000bb'
|
||||||
VERIFYING='#bb00bbbb'
|
VERIFYING='#444444bb'
|
||||||
|
|
||||||
i3lock \
|
i3lock \
|
||||||
--insidever-color=$CLEAR \
|
--insidever-color=$CLEAR \
|
||||||
|
|||||||
6
vimrc
6
vimrc
@ -470,10 +470,12 @@ nnoremap <C-c> :vertical topleft Git <bar> vertical resize 50<CR>
|
|||||||
" Search file name
|
" Search file name
|
||||||
"nnoremap <C-G> :Files<CR>
|
"nnoremap <C-G> :Files<CR>
|
||||||
" Ignore ignored files => all files
|
" Ignore ignored files => all files
|
||||||
nnoremap <C-G> :CocCommand fzf-preview.DirectoryFiles --no-ignore-vcs<CR>
|
"nnoremap <C-G> :CocCommand fzf-preview.DirectoryFiles --no-ignore-vcs<CR>
|
||||||
|
nnoremap <C-G> :CocCommand fzf-preview.ProjectFiles<CR>
|
||||||
" Search git file name
|
" Search git file name
|
||||||
"nnoremap <C-X> :GFiles<CR>
|
"nnoremap <C-X> :GFiles<CR>
|
||||||
nnoremap <C-X> :CocCommand fzf-preview.DirectoryFiles<CR>
|
"nnoremap <C-X> :CocCommand fzf-preview.DirectoryFiles<CR>
|
||||||
|
nnoremap <C-X> :CocCommand fzf-preview.GitFiles<CR>
|
||||||
" Search buffers
|
" Search buffers
|
||||||
"nnoremap <C-B> :Buffers<CR>
|
"nnoremap <C-B> :Buffers<CR>
|
||||||
nnoremap <C-B> :CocCommand fzf-preview.Buffers<CR>
|
nnoremap <C-B> :CocCommand fzf-preview.Buffers<CR>
|
||||||
|
|||||||
3
xinitrc
3
xinitrc
@ -49,7 +49,8 @@ $HOME/.config/manipulate_monitors.sh $MONITOR rtl
|
|||||||
setxkbmap -option caps:swapescape
|
setxkbmap -option caps:swapescape
|
||||||
|
|
||||||
# Set background
|
# Set background
|
||||||
feh --bg-fill ~/Downloads/atlantis-nexus-nebula-black-background-digital-render-3840x2400-3704.jpg
|
#feh --bg-fill ~/Downloads/atlantis-nexus-nebula-black-background-digital-render-3840x2400-3704.jpg
|
||||||
|
feh --bg-fill ~/Downloads/digital-abstract-3d-render-pattern-minimal-art-black-3840x2160-7124.jpg
|
||||||
|
|
||||||
# Launch i3
|
# Launch i3
|
||||||
exec i3
|
exec i3
|
||||||
|
|||||||
4
xprofile
4
xprofile
@ -1,13 +1,13 @@
|
|||||||
xbindkeys
|
xbindkeys
|
||||||
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
||||||
export GDK_SCALE=1
|
export GDK_SCALE=2
|
||||||
|
export GDK_DPI_SCALE=0.5
|
||||||
|
|
||||||
# Used by i3-sensible-terminal
|
# Used by i3-sensible-terminal
|
||||||
export TERMINAL=alacritty
|
export TERMINAL=alacritty
|
||||||
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
|
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
|
||||||
#xrandr --setprovideroutputsource modesetting NVIDIA-0
|
#xrandr --setprovideroutputsource modesetting NVIDIA-0
|
||||||
xrandr --auto
|
xrandr --auto
|
||||||
xrandr --dpi 192
|
|
||||||
|
|
||||||
#xautolock -time 5 -locker "i3lock -i $HOME/.config/i3/arch-linux-logo-binary-code-minimal.png" &
|
#xautolock -time 5 -locker "i3lock -i $HOME/.config/i3/arch-linux-logo-binary-code-minimal.png" &
|
||||||
xset dpms 0 300 0
|
xset dpms 0 300 0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user