tvim: get rid of nvim; mykblayouts: get rid of ducky layouts; compton_toggle: disable fade effects
This commit is contained in:
parent
6c3e745835
commit
8d27b64fdb
3 changed files with 5 additions and 12 deletions
|
@ -15,7 +15,7 @@ if [[ -e $nvidia_dev ]]; then
|
|||
else
|
||||
gpu_opts=(--dbe --vsync opengl --backend xrender)
|
||||
fi
|
||||
compton $gpu_opts[@] -cGC -t-5 -l-5 -r4 -o.55 &
|
||||
compton $gpu_opts[@] -cGC -t-5 -l-5 -r4 -o.55 --no-fading-openclose &
|
||||
pid=$!
|
||||
if [[ -n $pid ]]; then
|
||||
printf '%s' $pid > $pidfile
|
||||
|
|
12
mykblayouts
12
mykblayouts
|
@ -1,14 +1,8 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
layouts='us(altgr-intl),ru(typewriter)'
|
||||
opts='grp:win_space_toggle,compose:menu,ctrl:nocaps'
|
||||
|
||||
# reset this before setting anything
|
||||
setxkbmap us -option
|
||||
|
||||
if $(lsusb -d '04d9:0125' > /dev/null) || [[ -n $1 ]]; then
|
||||
layouts='us(altgr-intl),ru(typewriter)'
|
||||
opts='grp:win_space_toggle,compose:menu,ctrl:nocaps'
|
||||
else
|
||||
layouts='us(ducky),ru(ducky)'
|
||||
opts='grp:win_space_toggle,compose:menu'
|
||||
fi
|
||||
|
||||
setxkbmap $layouts -option $opts
|
||||
|
|
3
tvim
3
tvim
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
typeset -a vimopt=(
|
||||
'--cmd' 'let g:tvim = 1'
|
||||
'-c' 'set mouse=a'
|
||||
)
|
||||
|
||||
error() {
|
||||
|
@ -10,6 +9,6 @@ error() {
|
|||
}
|
||||
|
||||
termbin=$(command -v default-terminal-emulator) || termbin=$(command -v xterm) || error "No terminal found!"
|
||||
vimbin=$(command -v nvim) || vimbin=$(command -v vim) || error "No vim binary found!"
|
||||
vimbin=$(command -v vim) || error "No vim binary found!"
|
||||
|
||||
exec "$termbin" -c tvim -e "$vimbin" "${vimopt[@]}" "$@" &>/dev/null & disown
|
||||
|
|
Loading…
Reference in a new issue