blob: 1299058d351bcac3a24fab3095116a3784030067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
export XKB_DEFAULT_OPTIONS=caps:escape
export XDG_DESTOP_DIR="$HOME"
export XDG_DOWNLOAD_DIR="$HOME/downloads"
export XDG_DOCUMENTS_DIR="$HOME/documents"
export XDG_MUSIC_DIR="$HOME/music"
export XDG_PICTURES_DIR="$HOME/pictures"
export XDG_VIDEOS_DIR="$HOME/videos"
export XDG_CURRENT_DIR=sway
if [ -z "$XDG_RUNTIME_DIR" ]
then
mkdir -p /tmp/runtime/michael
chmod 700 /tmp/runtime/michael
export XDG_RUNTIME_DIR=/tmp/runtime/michael
fi
exec dbus-run-session sway
|