blob: bdad5b6fdcb937dd483c6ef0b4ebec7e6f75b588 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Polybar is starting when .xprofile is sourced,
# but in that case workspaces module won't start
# for openbox. This is dirty hack, but I don't
# need to change .xprofile
killall -q polybar
polybar main &
XDG_SESSION_TYPE=x11 plank &
|