22 lines
388 B
Bash
Executable file
22 lines
388 B
Bash
Executable file
set -x
|
|
|
|
# setxkbmap -layout us,ru -option grp:win_space_toggle
|
|
xwallpaper --zoom ${HOME}/.local/share/wallpaper/wallpaper.png
|
|
|
|
launch() {
|
|
cmd="$1"
|
|
shift
|
|
pkill "${cmd}"
|
|
"${cmd}" "$@"
|
|
}
|
|
|
|
xrdb -merge ~/.Xresources
|
|
|
|
launch xsettingsd &
|
|
# launch picom --config="${HOME}/.config/picom.conf" &
|
|
launch copyq &
|
|
launch dunst &
|
|
launch flameshot &
|
|
launch dwmblocks &
|
|
|
|
# vim: ft=bash
|