Compare commits

..

No commits in common. "00e1b1552153d374e577f9fbc675e979470acaa9" and "58673db4b58c5efff39fbbd9d1c1218390682a47" have entirely different histories.

10 changed files with 118 additions and 417 deletions

8
.alias
View File

@ -8,8 +8,11 @@ alias la="ll -a"
# applications # applications
alias code="code-oss" alias code="code-oss"
# git
alias gs="git status --short"
# dotfiles # dotfiles
alias dot="git --git-dir=$HOME/git/dotfiles/ --work-tree=$HOME" alias dot="/usr/bin/git --git-dir=$HOME/git/dotfiles/ --work-tree=$HOME"
# sane mkdir # sane mkdir
alias mkdir="mkdir -p" alias mkdir="mkdir -p"
@ -22,3 +25,6 @@ which kubectx kubens &>/dev/null && \
alias kx="kubectx" && \ alias kx="kubectx" && \
alias kn="kubens" alias kn="kubens"
# top
alias top="htop"
alias btop="bpytop"

View File

@ -1,21 +1,21 @@
#! /bin/bash #! /bin/bash
# set outputs # [ -z "$WALLPAPER" ] &&
xrandr --output DP-0 --primary --mode 2560x1440 --rate 165.08 --left-of DP-4 --output DP-4 --mode 2560x1440 --rate 74.92 export WALLPAPER="/mnt/win/d/Sync/Pictures/Public/Wallpapers/365242.jpg"
: ${WALLPAPER:="/mnt/win/d/Sync/Pictures/Public/Wallpapers/365242.jpg"}
# feh --bg-scale $WALLPAPER
~/.fehbg
pgrep -x sxhkd > /dev/null || sxhkd & pgrep -x sxhkd > /dev/null || sxhkd &
pgrep -x redshift > /dev/null || redshift &
pgrep -x picom > /dev/null || picom & pgrep -x picom > /dev/null || picom &
# $HOME/.config/polybar/launch.sh $HOME/.config/polybar/launch.sh
xwallpaper --zoom $WALLPAPER
xsetroot -cursor_name left_ptr & xsetroot -cursor_name left_ptr &
setxkbmap -model evdev -layout eu wpg -s "$WALLPAPER"
xrdb -merge "$HOME/.cache/wal/colors.Xresources"
setxkbmap -model evdev -layout us -variant altgr-intl
bspc monitor DP-0 -d term browser game code mail bspc monitor DP-4 -d I II III IV V
bspc monitor DP-4 -d browser2 comm music server misc tmp bspc monitor DP-2 -d VI VII VIII IX X
bspc config border_width 2 bspc config border_width 2
bspc config window_gap 12 bspc config window_gap 12
@ -24,8 +24,6 @@ bspc config split_ratio 0.5
bspc config borderless_monocle true bspc config borderless_monocle true
bspc config gapless_monocle true bspc config gapless_monocle true
bspc config focus_follows_pointer true
# -------------------------------------------------------- Rules # -------------------------------------------------------- Rules
# #
#---------------------------------------------- Default to float #---------------------------------------------- Default to float
@ -38,12 +36,11 @@ bspc rule -a kitty state=tiled
bspc rule -a Firefox state=tiled bspc rule -a Firefox state=tiled
bspc rule -a Firefox:*:"Save Image" state=floating bspc rule -a Firefox:*:"Save Image" state=floating
# ------------------------------------ Discord => Workspace Comm # --------------------------------------- Discord => Workspace 7
bspc rule -a discord state=tiled desktop=comm bspc rule -a discord follow=on state=tiled desktop=VII
# -------------------------------------- Steam => Workspace Game # ----------------------------------------- Steam => Workspace 4
bspc rule -a Steam state=tiled desktop=game bspc rule -a Steam follow=on state=tiled desktop=IV
bspc rule -a 'Steam:*:Friends List' split_ratio=0.3
# ------------------------------------- Coding => Workspace Code # ------------------------------------------- sxiv => Fullscreen
bspc rule -a "code - oss" state=tiled desktop=code bspc rule -a Sxiv state=fullscreen

View File

@ -1,27 +0,0 @@
# bash completion for runit sv(1)
_sv()
{
local cur prev words cword commands
_init_completion || return
commands='up down status once pause cont hup alarm interrupt 1 2 term kill exit start stop restart shutdown force-stop force-reload force-restart force-shutdown'
case $prev in
-w)
return
;;
-* | sv)
COMPREPLY=( $(compgen -W "${commands}" -- ${cur}) )
return
;;
*)
COMPREPLY=( /var/service/* )
COMPREPLY+=( /home/hendrik/sv/* )
COMPREPLY=( ${COMPREPLY[@]##*/} )
COMPREPLY=( $(compgen -W '${COMPREPLY[@]}' -- ${cur}) )
return
;;
esac
}
complete -F _sv sv

View File

@ -1,133 +0,0 @@
_xbps_parse_help() {
local IFS line word
$1 --help 2>&1 | while IFS=$'\n' read -r line; do
[[ $line == *([ $'\t'])-* ]] || continue
IFS=$' \t,='
for word in $line; do
[[ $word == -* ]] || continue
printf -- '%s\n' $word
done
done | sort | uniq
}
_xbps_all_packages() {
xbps-query -Rs "$1*" | sed 's/^... \([^ ]*\)-.* .*/\1/'
}
_xbps_installed_packages() {
xbps-query -l | sed 's/^.. \([^ ]*\)-.* .*/\1/'
}
_xbps_all_reply() {
COMPREPLY=( $( compgen -W '$(_xbps_all_packages "$1")' -- "$1") )
}
_xbps_installed_reply() {
COMPREPLY=( $( compgen -W '$(_xbps_installed_packages)' -- "$1") )
}
_xbps_complete() {
local cur prev words cword
_init_completion || return
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _xbps_parse_help "$1" )' -- "$cur") )
return
fi
local common='C|-config|r|-rootdir'
local morecommon="$common|c|-cachedir"
local modes='auto manual hold unhold'
local props='architecture
archive-compression-type
automatic-install
build-options
conf_files
conflicts
filename-sha256
filename-size
homepage
install-date
install-msg
install-script
installed_size
license
maintainer
metafile-sha256
packaged-with
pkgver
preserve
provides
remove-msg
remove-script
replaces
repository
shlib-provides
shlib-requires
short_desc
source-revisions
state'
case $1 in
xbps-dgraph)
if [[ $prev != -@(c|o|r) ]]; then
_xbps_installed_reply $cur
return
fi
;;
xbps-install | xi)
if [[ $prev != -@($morecommon) ]]; then
_xbps_all_reply $cur
return
fi
;;
xbps-pkgdb)
if [[ $prev == -@(m|-mode) ]]; then
COMPREPLY=( $( compgen -W "$modes" -- "$cur") )
return
fi
if [[ $prev != -@($common) ]]; then
_xbps_installed_reply $cur
return
fi
;;
xbps-query)
if [[ $prev == -@(p|-property) ]]; then
COMPREPLY=( $( compgen -W "$props" -- "$cur") )
return
fi
if [[ $prev != -@($morecommon|o|-ownedby) ]]; then
local w
for w in "${words[@]}"; do
if [[ "$w" == -@(R|-repository) ]]; then
_xbps_all_reply $cur
return
fi
done
_xbps_installed_reply $cur
return
fi
;;
xbps-reconfigure)
if [[ $prev != -@($common) ]]; then
_xbps_installed_reply $cur
return
fi
;;
xbps-remove | xr)
if [[ $prev != -@($morecommon) ]]; then
_xbps_installed_reply $cur
return
fi
;;
esac
_filedir
}
complete -F _xbps_complete xbps-checkvers xbps-create xbps-dgraph xbps-install \
xbps-pkgdb xbps-query xbps-reconfigure xbps-remove xbps-rindex xi xr

View File

@ -1,78 +1,50 @@
<?xml version='1.0'?> <?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig> <fontconfig>
<dir prefix="xdg">fonts</dir>
<!-- Alias Helvetica and Courier New --> <match target="pattern">
<alias> <test name="family" qual="any">
<family>Helvetica</family> <string>monospace</string>
<prefer><family>sans-serif</family></prefer> </test>
</alias> <edit name="family" mode="prepend" binding="strong">
<alias> <string>JetBrains Mono</string>
<family>Helvetica Neue</family> </edit>
<prefer><family>sans-serif</family></prefer> </match>
</alias> <match>
<alias> <test name="family" qual="any">
<family>Courier New</family> <string>regular</string>
<prefer><family>monospace</family></prefer> </test>
</alias> <edit name="family" mode="prepend" binding="strong">
<alias> <string>FOT-RodinBokutoh Pro</string>
<family>Arial</family> </edit>
<prefer><family>sans-serif</family></prefer> </match>
</alias> <match>
<alias> <test name="family" qual="any">
<family>Times New Roman</family> <string>sans-serif</string>
<prefer><family>serif</family></prefer> </test>
</alias> <edit name="family" mode="prepend" binding="strong">
<alias> <string>FOT-RodinBokutoh Pro</string>
<family>Liberation Mono</family> </edit>
<prefer><family>monospace</family></prefer> </match>
</alias> <match>
<test name="family" qual="any">
<!-- Fuck Helvetica --> <string>serif</string>
<match> </test>
<test name="family"><string>Helvetica</string></test> <edit name="family" mode="prepend" binding="strong">
<edit binding="same" mode="assign" name="family"> <string>FOT-RodinBokutoh Pro</string>
<string>Fira Sans</string> </edit>
</edit> </match>
</match> <alias>
<family>Helvetica</family>
<!-- Set default fonts --> <prefer>
<match target="pattern"> <family>FOT-RodinBokutoh Pro</family>
<test name="family" qual="any"> </prefer>
<string>monospace</string> </alias>
</test> <alias>
<edit name="family" mode="prepend" binding="strong"> <family>Liberation Mono</family>
<string>JetBrainsMono Nerd Font Mono</string> <prefer>
<string>FiraCode Nerd Font Mono</string> <family>JetBrains Mono</family>
</edit> </prefer>
</match> </alias>
<match> <dir>~/.fonts</dir>
<test name="family" qual="any">
<string>regular</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Fira Sans</string>
<string>FiraCode Nerd Font</string>
</edit>
</match>
<match>
<test name="family" qual="any">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Fira Sans</string>
<string>FiraCode Nerd Font</string>
</edit>
</match>
<match>
<test name="family" qual="any">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Fira Sans</string>
<string>FiraCode Nerd Font</string>
</edit>
</match>
</fontconfig> </fontconfig>

View File

@ -19,12 +19,12 @@ super + alt + {q,r}
bspc {quit,wm -r} bspc {quit,wm -r}
# close and kill # close and kill
super + {w,q} super + shift + {w,q}
bspc node -{c,k} bspc node -{c,k}
# alternate between the tiled and monocle layout # alternate between the tiled and monocle layout
# super + m super + m
# bspc desktop -l next bspc desktop -l next
# send the newest marked node to the newest preselected node # send the newest marked node to the newest preselected node
super + y super + y
@ -46,13 +46,6 @@ super + {t,shift + t,s,f}
super + ctrl + {m,x,y,z} super + ctrl + {m,x,y,z}
bspc node -g {marked,locked,sticky,private} bspc node -g {marked,locked,sticky,private}
# send node to left tree and rotate 90 degrees
ctrl + alt + {h,j,k,l}
bspc node -n {west,south,north,east}
ctrl + alt + r
bspc node -r 90
# #
# focus/swap # focus/swap
# #
@ -61,33 +54,31 @@ ctrl + alt + r
super + {_,shift + }{h,j,k,l} super + {_,shift + }{h,j,k,l}
bspc node -{f,s} {west,south,north,east} bspc node -{f,s} {west,south,north,east}
# focus paired desktop # focus the node for the given path jump
super + {1-5} super + {p,b,comma,period}
select={1-5}; \ bspc node -f @{parent,brother,first,second}
current="$(bspc query -M -m focused)"; \
opposite="$(bspc query -M -m 'any.!focused')"; \
bspc desktop -f "$opposite:^$select"; \
bspc desktop -f "$current:^$select"
# focus or move node to single desktop # focus the next/previous window in the current desktop
super + ctrl + {1-9,0} super + {_,shift + }c
bspc desktop -f "^{1-9,0}" bspc node -f {next,prev}.local.!hidden.window
# send note to single desktop # focus the next/previous desktop in the current monitor
super + shift + {1-9,0} super + bracket{left,right}
bspc node -d "^{1-9,0}" --follow bspc desktop -f {prev,next}.local
# swap current desktop with target desktop and switch to paired desktop afterwards # focus the last node/desktop
super + alt + {1-5} super + {grave,Tab}
select={1-5}; \ bspc {node,desktop} -f last
current="$(bspc query -M -m focused)"; \
opposite="$(bspc query -M -m 'any.!focused')"; \
bspc desktop -s "$current:^$select" --follow; \
bspc desktop -f "$opposite:^$select"
# move current window to tmp desktop // or recall tmp windows # focus the older or newer node in the focus history
super + m super + {o,i}
bspc node -d "tmp" bspc wm -h off; \
bspc node {older,newer} -f; \
bspc wm -h on
# focus or send to the given desktop
super + {_,shift + }{1-9,0}
bspc {desktop -f,node -d} '^{1-9,10}'
# #
# preselect # preselect
@ -97,10 +88,30 @@ super + m
super + ctrl + {h,j,k,l} super + ctrl + {h,j,k,l}
bspc node -p {west,south,north,east} bspc node -p {west,south,north,east}
# preselect the ratio
super + ctrl + {1-9}
bspc node -o 0.{1-9}
# cancel the preselection for the focused node # cancel the preselection for the focused node
super + ctrl + space super + ctrl + space
bspc node -p cancel bspc node -p cancel
# cancel the preselection for the focused desktop # cancel the preselection for the focused desktop
# super + ctrl + shift + space super + ctrl + shift + space
# bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
#
# move/resize
#
# expand a window by moving one of its side outward
super + alt + {h,j,k,l}
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
# contract a window by moving one of its side inward
super + alt + shift + {h,j,k,l}
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
# move a floating window
super + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}

5
.vimrc
View File

@ -37,8 +37,8 @@ set laststatus=2
set wildmenu set wildmenu
set tabpagemax=50 set tabpagemax=50
set noerrorbells set noerrorbells
" set visualbell set visualbell
" set mouse=a set mouse=a
set title set title
" Folding " Folding
@ -53,4 +53,5 @@ set formatoptions+=j
set nomodeline set nomodeline
set noswapfile set noswapfile
set nrformats-=octal set nrformats-=octal
set shell
set wildignore+=.pyc,.swp set wildignore+=.pyc,.swp

View File

@ -3,17 +3,11 @@
# import general use aliases # import general use aliases
[[ -r ~/.alias ]] && . ~/.alias [[ -r ~/.alias ]] && . ~/.alias
# config files
alias cb="vim ~/.config/bspwm/bspwmrc"
alias cs="vim ~/.config/sxhkd/sxhkdrc"
# xbps-install # xbps-install
# use xtools instead # use xtools instead
# alias xin="doas xbps-install -S" # alias xin="doas xbps-install -S"
alias xup="xi -Su" alias xup="xi -Su"
complete -F _xbps_complete xi
# xbps-query # xbps-query
alias xqr="xbps-query" alias xqr="xbps-query"
alias xs="xqr -Rs" alias xs="xqr -Rs"

View File

@ -8,7 +8,6 @@
[[ $- != *i* ]] && return [[ $- != *i* ]] && return
PATH=~/.local/bin:$PATH PATH=~/.local/bin:$PATH
PATH=~/.luarocks/bin:$PATH
################################# #################################
# - bash_aliases # - bash_aliases
@ -17,12 +16,6 @@ PATH=~/.luarocks/bin:$PATH
# always bash-completion first # always bash-completion first
[[ -r /usr/share/bash-completion/bash_completion ]] && . /usr/share/bash-completion/bash_completion [[ -r /usr/share/bash-completion/bash_completion ]] && . /usr/share/bash-completion/bash_completion
if [[ -d ~/.config/completions ]]; then
for i in ~/.config/completions/*; do
. $i
done
fi
# integrate git prompt functions # integrate git prompt functions
# will break PS1 if not used # will break PS1 if not used
[[ -f /usr/share/git/git-prompt.sh ]] && . /usr/share/git/git-prompt.sh [[ -f /usr/share/git/git-prompt.sh ]] && . /usr/share/git/git-prompt.sh

View File

@ -1,113 +0,0 @@
ImageMagick
NetworkManager
NetworkManager
Signal
adwaita
arandr
asunder
base
bash
bsdtar
bspwm
curl
dbus
direnv
discord
dmenu
docker
docker
easyeffects
elixir
elogind
eog
exa
feh
ffmpeg
firefox
font
font
fontmanager
gnome
gpick
grub
hplip
htop
hydrus
jq
keepassxc
kitty
latte
lesspipe
libdrm
libgcc
libstdc++
libu2f
lightdm
lua54
luarocks
lutris
lxappearance
mesa
mgba
nautilus
neofetch
nerd
net
network
noto
noto
noto
noto
ntfs
nvidia
nvidia
obmenu
obs
openjdk8
openntpd
openvpn
pam
papirus
papirus
pavucontrol
picom
piper
pipewire
polybar
ppsspp
protontricks
pulseaudio
qbittorrent
qrencode
qt5
redshift
redshift
schedtool
scrot
socklog
source
sqlitebrowser
steam
strace
sxhkd
syncthing
syncthing
telegram
unzip
vim
vlc
void
void
void
vscode
wget
wine
wine
wine
winetricks
wireguard
xfd
xorg
xterm
xtitle
xtools