dots/.config/x11/xprofile

18 lines
360 B
Bash

#!/bin/sh
# Keyboard layout
setxkbmap -layout us,ru,ua -option grp:ctrl_shift_toggle -variant altgr-intl
# Start on launch
remaps &
xrandr --dpi 96
gpg-agent --daemon
xwallpaper --zoom $XDG_CONFIG_HOME/wall.jpg
autostart="mpd dunst unclutter-xfixes pipewire"
for program in $autostart; do
pidof -s "$program" || setsid -f "$program"
done >/dev/null 2>&1