2013-06-02 11:02:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# ~/.xinitrc
|
|
|
|
#
|
|
|
|
# Executed by startx (run your window manager from here)
|
|
|
|
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
|
|
|
|
2013-06-02 18:38:35 +00:00
|
|
|
#DWM
|
|
|
|
|
2013-06-11 21:26:08 +00:00
|
|
|
export PATH=~/Programmation/Utils/:$PATH
|
|
|
|
|
|
|
|
source ~/.bashrc
|
|
|
|
|
|
|
|
$OCTOPUS init-all
|
2013-06-02 18:38:35 +00:00
|
|
|
|
2013-06-11 20:39:53 +00:00
|
|
|
#Java
|
|
|
|
wmname LG3D
|
|
|
|
|
2013-06-02 11:02:37 +00:00
|
|
|
while true; do
|
2013-06-11 21:26:08 +00:00
|
|
|
$OCTOPUS refresh
|
2013-07-06 19:43:41 +00:00
|
|
|
sleep 50
|
2013-06-02 11:02:37 +00:00
|
|
|
done &
|
2013-06-02 18:38:35 +00:00
|
|
|
|
2013-07-20 17:12:05 +00:00
|
|
|
while true; do
|
|
|
|
$OCTOPUS wallpaper
|
|
|
|
sleep 240
|
|
|
|
done &
|
2013-07-27 17:09:01 +00:00
|
|
|
xautolock -time 60 -locker "systemctl suspend" &
|
2013-08-06 10:18:27 +00:00
|
|
|
redshift -l 46:6&
|
2013-07-29 16:34:39 +00:00
|
|
|
|
|
|
|
ssh-agent -t 10 /home/frank/Programmation/dotfiles/dwm/dwm
|
2013-06-02 18:38:35 +00:00
|
|
|
|
|
|
|
|
2013-06-11 15:00:23 +00:00
|
|
|
# exec gnome-session
|
2013-06-02 18:38:35 +00:00
|
|
|
|
|
|
|
|
2013-06-02 11:02:37 +00:00
|
|
|
# exec startkde
|
|
|
|
# exec startxfce4
|
|
|
|
# ...or the Window Manager of your choice
|