diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index 8685985..68c5e41 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -72,7 +72,7 @@ bspc rule -a URxvt:flota state=floating # Otros bspc rule -a Zathura state=tiled -bspc rule -a Oblogout layer=above +bspc rule -a Oblogout state=fullscreen, layer=above bspc config external_rules_command "$HOME/.config/bspwm/external_rules.sh" rbspwm & diff --git a/.config/gtk-2.0/gtkfilechooser.ini b/.config/gtk-2.0/gtkfilechooser.ini index da6c8d5..d99751d 100644 --- a/.config/gtk-2.0/gtkfilechooser.ini +++ b/.config/gtk-2.0/gtkfilechooser.ini @@ -4,8 +4,8 @@ LocationMode=path-bar ShowHidden=false ExpandFolders=false ShowSizeColumn=true -GeometryX=207 -GeometryY=73 +GeometryX=209 +GeometryY=75 GeometryWidth=948 GeometryHeight=618 SortColumn=modified diff --git a/.config/nvim/templates/py.skeleton b/.config/nvim/templates/py.skeleton new file mode 100644 index 0000000..56fafa5 --- /dev/null +++ b/.config/nvim/templates/py.skeleton @@ -0,0 +1,2 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- diff --git a/.tmux.conf b/.tmux.conf index ccc113f..1449f5c 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -8,7 +8,7 @@ set -g set-clipboard on set -g mouse on set -gq status-utf8 on setw -gq utf8 on -set -g escape-time 50 +set -g escape-time 0 # Ventanas set -g base-index 1 @@ -84,10 +84,10 @@ bind-key M-Up swap-pane -U bind-key M-Down swap-pane -D # Redimensionar -bind-key J resize-pane -D 2 -bind-key K resize-pane -U 2 -bind-key H resize-pane -L 2 -bind-key L resize-pane -R 2 +bind -r J resize-pane -D 2 +bind -r K resize-pane -U 2 +bind -r H resize-pane -L 2 +bind -r L resize-pane -R 2 # Dividir bind-key | split-window -h -c "#{pane_current_path}" diff --git a/Pictures/trilock.png b/Pictures/trilock.png deleted file mode 100644 index 6cecf8a..0000000 Binary files a/Pictures/trilock.png and /dev/null differ diff --git a/Pictures/trilock.xcf b/Pictures/trilock.xcf deleted file mode 100644 index a38b54c..0000000 Binary files a/Pictures/trilock.xcf and /dev/null differ diff --git a/bin/exeflock4 b/bin/exeflock4 index 6eaf672..22a0918 100755 --- a/bin/exeflock4 +++ b/bin/exeflock4 @@ -25,14 +25,14 @@ c1='#000000ff' # black c2='#FABD2F88' c3='#FB493488' c4='#EBDBB2FF' -c5='#00d70000' +c5='#B8BB2688' c6='#28282888' c7='#282828FF' c8='#eeeeecff' c9='#12121200' cA='#c4a000ff' -lock="$HOME/Pictures/barlock.png" +lock="$HOME/Pictures/trilock.png" image=$(mktemp --suffix=.png) trap 'rm -f "$image"' SIGINT SIGTERM EXIT @@ -42,33 +42,28 @@ maim -u \ i3lock \ --image="$image" \ ---insidevercolor=$c2 \ +--insidevercolor=$c5 \ --insidewrongcolor=$c3 \ --insidecolor=$c0 \ ---ringvercolor=$c7 \ ---ringwrongcolor=$c7 \ +--ringvercolor=$c2 \ +--ringwrongcolor=$cA \ --ringcolor=$c7 \ --verifcolor=$c8 \ --wrongcolor=$c4 \ --linecolor=$c4 \ ---separatorcolor=$c7 \ +--separatorcolor=$c6 \ --keyhlcolor=$c4 \ --bshlcolor=$c3 \ ---timecolor=$c4 \ ---datecolor=$c0 \ ---layoutcolor=$c0 \ ---indpos='x+73:y+514' \ ---timepos='x+210:y+525' \ ---timestr='%H:%M' \ ---time-font='Sarasa UI J' \ ---force-clock \ +--layoutcolor=$c9 \ +--modsize=18 \ --refresh-rate=30 \ ---radius=32 \ +--radius=120 \ --ring-width=4 \ --veriftext='' \ --wrongtext='' \ --noinputtext='' \ --ignore-empty-password \ +-B \ --nofork & pid="$!"