* Added support for HiDPI devices * Only affects devices with a DPI >= 192 * Most screen objects are doubled in size * Updated .conkyrc * Vertical offset now set to 24 or 48 (to match URxvt) * Removed extra line after network adapters * Updated .xinitrc * Removed dunst logic since `cbatticon` no longer sends notifications * Update .Xresources for all programs before `xrdb -merge` * Update hostname after `connect-to-network` * URxvt windows are now based on a 16:9 ratio (instead of 4:3) * Removed * .update_wallpaper (integrated with .xinitrc) * .urxvt_default_res (integrated with .update_dpi_settings) * Fixes issue #45
19 lines
463 B
Bash
Executable file
19 lines
463 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dbus-update-activation-environment --systemd DISPLAY
|
|
$HOME/.update_dpi_settings
|
|
xrdb -merge $HOME/.Xresources
|
|
xset s off
|
|
xset -dpms
|
|
eval $(ssh-agent)
|
|
export SSH_AUTH_SOCK
|
|
compton --backend xrender --xrender-sync --xrender-sync-fence &
|
|
sleep 1s
|
|
conky -d
|
|
nm-applet &
|
|
volumeicon &
|
|
connect-to-network &
|
|
$HOME/.update_hostname &
|
|
feh --bg-fill "$HOME/.wallpaper" &
|
|
x0vncserver -display :0 -passwordfile $HOME/.vnc/passwd -AlwaysShared &
|
|
exec openbox-session
|