When switching keyboards, these aren't applied. So I want a separate script to run such that when I do switch keyboards I can just run it to reapply these crucial settings.
12 lines
247 B
Bash
12 lines
247 B
Bash
#!/bin/sh
|
|
|
|
sh .xprofile;
|
|
systemctl start --user emacs &
|
|
$(xss-lock --transfer-sleep-lock -- lock) &
|
|
feh --randomize --bg-scale $HOME/Pictures/Backgrounds &
|
|
|
|
while true; do
|
|
$HOME/.local/scripts/reboot_services &
|
|
ssh-agent dwm || break
|
|
done
|