Compare commits

..

No commits in common. "21913203ff151001a69302008739cc5556e72b62" and "445054554adde8c9dcc23b1e6573758f5f663c2e" have entirely different histories.

6 changed files with 17 additions and 37 deletions

View File

@ -5,7 +5,6 @@ xkblayout-state
xorg-setxkbmap
xorg-xrandr
xorg-xset
xorg-xsetroot
xss-lock
qutebrowser
picom
@ -39,4 +38,3 @@ xsel
xwallpaper
xss-lock
ripgrep
sxiv

View File

@ -15,6 +15,16 @@ set foldmethod=expr
set foldexpr=nvim_treesitter#foldexpr()
"autocmd BufEnter * normal zR
" project-wide searching
Plug 'mileszs/ack.vim'
" close quickfix list after pressing enter
let g:ack_autoclose = 1
" Ack! does not jump to first result
nnoremap <Leader>/ :Ack!<Space>
" use ripgrep
let g:ackprg = 'rg --vimgrep --smart-case'
" debugger interface atop many many abstractions
" (works on a lot of languages though!)
Plug 'puremourning/vimspector'

View File

@ -1,26 +1,4 @@
backend = "glx";
# animations
# works with https://github.com/FT-Labs/picom
# if your picom doesn't support it it won't do anything
animations = true;
animation-stiffness-in-tag = 125;
animation-stiffness-tag-change = 90.0;
animation-window-mass = 0.4;
animation-dampening = 15;
animation-clamping = true;
animation-for-open-window = "slide-up";
animation-for-unmap-window = "slide-up";
animation-for-transient-window = "slide-up";
animation-for-prev-tag = "slide-up";
enable-fading-prev-tag = true;
animation-for-next-tag = "slide-in-center";
enable-fading-next-tag = true;
# enable vsync
vsync = true;
backend = "glx"
# shadow
shadow = true;
@ -35,4 +13,4 @@ fade-out-step = 0.05;
fade-delta = 5;
# corner
corner-radius = 8;
corner-radius = 8

View File

@ -11,8 +11,7 @@
<Multi_key> <Escape> <r> <e> <l> <i> <e> <v> : "😌"
<Multi_key> <Escape> <s> <k> <u> <l> : "💀"
<Multi_key> <Escape> <e> <y> <e> <s> : "👀"
<Multi_key> <Escape> <e> <y> <e> <i> : "👁️"
<Multi_key> <Escape> <l> <i> <p> <s> : "👄"
<Multi_key> <Escape> <e> <y> <e> : "👁️"
<Multi_key> <Escape> <t> <h> <i> <n> <k> : "🤔"
<Multi_key> <Escape> <w> <a> <v> <e> : "👋"
<Multi_key> <Escape> <s> <h> <r> <u> <g> : "¯\\\\\\_(ツ)\\_/¯"

View File

@ -14,8 +14,7 @@ emoji = r"""
😌 reliev
💀 skul
👀 eyes
👁 eyei
👄 lips
👁 eye
🤔 think
👋 wave
¯\\\\\\_()\\_/¯ shrug

View File

@ -40,15 +40,11 @@ export XCOMPOSEFILE="$XDG_CONFIG_HOME"/xcompose/main
while true; do
DATE=$(date +'%H:%M:%S %a %b %d')
#TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C"
TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C"
BAT="$(acpi -b | head -n 1 | awk -F'[,:]' '{print $3}' | tr -d '[:space:]')"
if command -v xkblayout-state print &> /dev/null; then
KEY="$(xkblayout-state print '%s')"
else
KEY="??"
fi
KEY="$(xkblayout-state print '%s')"
xsetroot -name " $DATE // $BAT // $KEY"
xsetroot -name " $DATE // $TEMP, $BAT // $KEY"
sleep 1
done &