blob: 044c483a372fd0645dff1a1a3c4d175ef611bde5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
feh --no-fehbg --bg-scale "$HOME"/pics/wallpaper &
setxkbmap us -variant colemak -option ctrl:swapcaps,altwin:menu_win &
xset s off -dpms &
if [ "$(hostname)" = "winter" ]; then
(
CurrentOutput="$(xrandr | grep '\bconnected\b' | awk '{print $1}')"
xrandr --output "$CurrentOutput" --mode "1920x1080" --rate "144"
) &
signal-desktop &
~/src/xobs/env/bin/python ~/src/xobs/pulse.py | xob &
fi
if [ "$(hostname)" = "spring" ]
then
tail -f ~/src/xob/scripts/volume.pipe | xob &
xautolock -locker slock &
saveself &
fi
st -e "sh" "-c" "pgrep tmux && tmux a || tmux" &
picom -b &
gammastep -m randr &
ntfy transmission &
herbimisu &
slstatus &
# upds &
unclutter --timeout 3 --jitter 50 -b &
202020 &
if [ "$(hostname)" = "spring" ]
then
keyadd autumn &
keyadd spacehb.net &
fi
gpu-screen-recorder \
-w screen \
-f 60 \
-c mkv \
-a "default_output|default_input" \
-r 60 \
-replay-storage ram \
-restart-replay-on-save yes \
-o ~/vids/replays \
-sc "$(which replay.sh)" &
|