Ver a proveniência

split x files into two files, background program prefs and others

pull/1/head
10sr há 12 anos
ascendente
cometimento
7a173ff711
2 ficheiros alterados com 23 adições e 5 eliminações
  1. +1
    -5
      xinitrc
  2. +22
    -0
      xprograms

+ 1
- 5
xinitrc Ver ficheiro

@@ -12,10 +12,6 @@ type synclient >/dev/null 2>&1 && {
synclient MinSpeed=0.2
}

test -f "$HOME/.fehbg" &&
type feh >/dev/null 2>&1 &&
sh "$HOME/.fehbg"

#export LC_MESSAGES=C
unset LC_MESSAGES
export LANG=ja_JP.utf8


+ 22
- 0
xprograms Ver ficheiro

@@ -0,0 +1,22 @@
#!/bin/sh
# Programs run in background when starting x.
# These programs are basically for Openbox Window Manager.
# Japanese IM settings are not included in this list.

test -f "$HOME/.fehbg" &&
type feh >/dev/null 2>&1 &&
sh "$HOME/.fehbg"

tint2 &

#dropboxd & # done by ~/.config/autostart/dropbox.desktop

volumeicon &
#wicd-client --tray & # done by /etc/xdg/autostart/wicd-client.desktop
# Detection of insertion of an optical disk
if ! pgrep -lf "udisks-daemon: polling /dev/sr0"; then
udisks --poll-for-media /dev/sr0
fi

udisksvm >/dev/null &


Carregando…
Cancelar
Guardar