My configuration files

[[ ๐Ÿ—ƒ ^qn870 konfigz ]] :: [๐Ÿ“ฅ Inbox] [๐Ÿ“ค Outbox] [๐Ÿ’ฅ Errbox] [๐Ÿค Followers] [๐Ÿค Collaborators] [๐Ÿ— Projects] [๐Ÿ›  Commits] [โ‘‚ Forks]
[โ‘‚ Fork]

Clone

HTTPS: git clone https://fig.fr33domlover.site/repos/qn870

SSH: git clone USERNAME@fig.fr33domlover.site:qn870

Branches

Tags

main :: dotfluxbox /

startup

#!/bin/sh
#
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.

# Change your keymap:
xmodmap "/home/len/.Xmodmap"

# Applications you want to run with fluxbox.
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
#
# unclutter -idle 2 &
# wmnd &
# wmsmixer -w &
# idesk &
#feh --bg-max /home/len/Pictures/ostalo/social_democracy.jpg
#exec x-terminal-emulator &
#
# Debian-local change:
#   - fbautostart has been added with a quick hack to check to see if it
#     exists. If it does, we'll start it up by default.
which fbautostart > /dev/null
if [ $? -eq 0 ]; then
    fbautostart
fi

# And last but not least we start fluxbox.
# Because it is the last app you have to run it with ''exec'' before it.

# exec fluxbox
# or if you want to keep a log:
# exec fluxbox -log "/home/len/.fluxbox/log"

exec fluxbox &
fbpid=$!

sleep 3
{
    xrandr --output VGA1 --mode 1280x1024 --output LVDS1 --off &
    wicd-client &
    feh --bg-max /home/len/Pictures/ostalo/glitchbg.jpg
    conky -c ~/.conky/conkyrc &
    conky -c ~/.conky/weather/conkyrcweather &
    bash /home/len/local/zmalo/malo.sh
} &
wait $fbpid

[See repo JSON]