aboutsummaryrefslogtreecommitdiff
path: root/.xprofile
blob: d3db31c6988462314a134fbb4a7c8d83dfa8c238 (plain)
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
#!/bin/zsh

# set .zshenv
[[ -f ~/.config/zsh/.zshenv ]] && source ~/.config/zsh/.zshenv

# keyboard layout
xmodmap /home/zt/.Xmodmap &

# makes gnome-keyring work
dbus-update-activation-environment --all

# autostart apps for both xmonad and any other DE
emacs --daemon &

# autostart apps for xmonad
if [[ $DESKTOP_SESSION = "xmonad" ]]; then
  # set screen layout
  # this would fail when on integrated graphics
  # that's the desired behaviour
  xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --output eDP-1-1 --primary --mode 1920x1080 --pos 1920x749 --rotate normal

  # autostart apps
  blueman-applet &
  picom &
  dunst &
  udiskie &
  nitrogen --restore &
  polystart &

fi