Re: how to change .bash_profile in Clover OS?

bill d via Fluxbox-users <[email protected]> Thu, 26 Jul 2018 08:36:32 +0000 (UTC)
Newsgroups gmane.comp.window-managers.fluxbox.user
Message-ID <[email protected]>
--===============5639457084165598466==
Content-Type: multipart/alternative; 
	boundary="----=_Part_2595951_1717972394.1532594192370"
Content-Length: 23834

------=_Part_2595951_1717972394.1532594192370
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

 Thanks much to both of you for the replies to my query! I used the script =
suggested below, and it does indeed allow me to login to my fluxbox without=
 all the other prompting. So my original query is solved.
On the other hand, and as you both have noted, several things are not where=
 i would expect them to be. Also, i have numerous other issues that i don't=
 think are specific to Gentoo so much as the Clover OS devs wanting to offe=
r so many desktop options. It does not save my Nitrogen wallpaper. I cannot=
 copy & paste into the default terminal so i installed lxterminal and set i=
t up as many times before, but i cannot get it to open. I cannot see partit=
ions outside this distro. Etc.

This is part of a multi-linux setup on my only laptop so i can't muck thing=
s up too badly. I'm thinking of using Antix for my FB learning, or possibly=
 just installing FB under my existing Fedora MATE or ArchLabs OpenBox. Any =
preferences there, or other suggestions for a FB install? Thanks.



    On Wednesday, July 25, 2018, 12:25:59 PM CDT, Leo Butler <leo.butler@me=
mber.ams.org> wrote: =20
=20
 Reading the script you provided, here is what I would do:

-Move your installed .bash_profile to .bash_profile.1 or whatnot.
-Create a new .bash_profile with the following at the top

if [ -z "$DISPLAY" ] && ! pgrep X > /dev/null; then
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 export DISPLAY=3D:0
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 X&
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 sleep 1
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 fluxbox &
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 eval "nitrogen --set-zoom wallpap=
er.png & xbindkeys & $taptoclick &"&
fi

Caveats:
I have just followed the logic of the script you sent. I would probably
put that eval line in my ~/.xinitrc file. It is also my understanding that
the startfluxbox script is the recommended way to start fluxbox, but
that may not exist in Gentoo.

The whole set-up looks pretty brittle, but it is a refreshingly clean
login compared to the distros using display managers. Sigh...

Best,
Leo

bill d via Fluxbox-users <[email protected]> writes:

> Hi all,
> New member and relatively new FluxBox user here. I have been looking
> for a linux distro that installs only FB and this morning installed
> Clover OS (a Gentoo-based distro). There is very little info on their
> home page, but it does say i can change my default WM & DE via
> .bash_profile.
> Currently i seem to have no WM. I boot to a login prompt. After
> logging in as user i am given a number of desktop choices and must
> re-select my already installed Fluxbox each time. How can i change
> that .bash_profile file so that i skip all the choices and simply boot
> into my fluxbox? I suppose I'm looking for something other than
> /dev/null in the first line, but see nothing under /dev/ pertaining to
> fluxbox?
> Thanks for any suggestions!
>
> Currently it reads like this:
> if [ -z "$DISPLAY" ] && ! pgrep X > /dev/null; then
> =C2=A0=C2=A0 =C2=A0echo "WM Options: (y) Default (i) i3 (a) Awesome (o) O=
penbox (e) Enlightenment (k) KDE (m) MATE (x) XFCE (l) LXDE (q) LXQT (f) Fl=
uxbox (d) dwm (c) IceWM (w) Window Maker (t) FVWM Themes (h) xmonad"
> =C2=A0=C2=A0 =C2=A0read -erp "Start X? [y/n] " -n 1 choice
> =C2=A0=C2=A0 =C2=A0declare -A wms
> =C2=A0=C2=A0 =C2=A0declare -A wmspkg
> =C2=A0=C2=A0 =C2=A0declare -A wmspost
> =C2=A0=C2=A0 =C2=A0wms[y]=3Dfvwm
> =C2=A0=C2=A0 =C2=A0wms[Y]=3Dfvwm
> =C2=A0=C2=A0 =C2=A0wms[i]=3Di3
> =C2=A0=C2=A0 =C2=A0wms[a]=3Dawesome
> =C2=A0=C2=A0 =C2=A0wms[o]=3Dopenbox
> =C2=A0=C2=A0 =C2=A0wms[e]=3Denlightenment_start
> =C2=A0=C2=A0 =C2=A0wms[k]=3Dstartkde
> =C2=A0=C2=A0 =C2=A0wms[m]=3Dmate-session
> =C2=A0=C2=A0 =C2=A0wms[x]=3Dstartxfce4
> =C2=A0=C2=A0 =C2=A0wms[l]=3Dstartlxde
> =C2=A0=C2=A0 =C2=A0wms[q]=3Dstartlxqt
> =C2=A0=C2=A0 =C2=A0wms[f]=3Dfluxbox
> =C2=A0=C2=A0 =C2=A0wms[d]=3Ddwm
> =C2=A0=C2=A0 =C2=A0wms[c]=3Dicewm
> =C2=A0=C2=A0 =C2=A0wms[w]=3Dwmaker
> =C2=A0=C2=A0 =C2=A0wms[t]=3Dfvwm-themes-start
> =C2=A0=C2=A0 =C2=A0wms[h]=3Dxmonad
> =C2=A0=C2=A0 =C2=A0wmspkg[y]=3Dfvwm
> =C2=A0=C2=A0 =C2=A0wmspkg[Y]=3Dfvwm
> =C2=A0=C2=A0 =C2=A0wmspkg[i]=3D"i3-gaps i3status"
> =C2=A0=C2=A0 =C2=A0wmspkg[a]=3Dawesome
> =C2=A0=C2=A0 =C2=A0wmspkg[o]=3Dopenbox
> =C2=A0=C2=A0 =C2=A0wmspkg[e]=3D"enlightenment:0.17 terminology"
> =C2=A0=C2=A0 =C2=A0wmspkg[k]=3D"kdebase-meta gwenview"
> =C2=A0=C2=A0 =C2=A0wmspkg[m]=3D"mate engrampa pluma atril gnome-calculato=
r caja-extensions mate-netbook mate-power-manager mate-screensaver mate-sys=
tem-monitor mate-utils eom mate-netspeed"
> =C2=A0=C2=A0 =C2=A0wmspkg[x]=3Dxfce4-meta
> =C2=A0=C2=A0 =C2=A0wmspkg[l]=3Dlxde-meta
> =C2=A0=C2=A0 =C2=A0wmspkg[q]=3Dlxqt-meta
> =C2=A0=C2=A0 =C2=A0wmspkg[f]=3Dfluxbox
> =C2=A0=C2=A0 =C2=A0wmspkg[d]=3Ddwm
> =C2=A0=C2=A0 =C2=A0wmspkg[c]=3Dicewm
> =C2=A0=C2=A0 =C2=A0wmspkg[w]=3Dwindowmaker
> =C2=A0=C2=A0 =C2=A0wmspkg[t]=3Dfvwm-themes
> =C2=A0=C2=A0 =C2=A0wmspkg[h]=3Dxmonad
> =C2=A0=C2=A0 =C2=A0wmspost[y]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[Y]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[i]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[a]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[o]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[t]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[h]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping E=
nabled\" 1 &"
> =C2=A0=C2=A0 =C2=A0wmspost[e]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[k]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[m]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[x]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[l]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[q]=3D""
> =C2=A0=C2=A0 =C2=A0wmspost[f]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & $taptoclick &"
> =C2=A0=C2=A0 =C2=A0wmspost[d]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & $taptoclick &"
> =C2=A0=C2=A0 =C2=A0wmspost[c]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & $taptoclick &"
> =C2=A0=C2=A0 =C2=A0wmspost[w]=3D"nitrogen --set-zoom wallpaper.png & xbin=
dkeys & $taptoclick &"
>
> =C2=A0=C2=A0 =C2=A0if [ -v wms[$choice] ]; then
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0if [ ! -f /usr/bin/${wms[$choice]} =
]; then
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0echo
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0echo ${wms[$choi=
ce]} is not installed. Install it by running:
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0echo $ sudo emer=
ge ${wmspkg[$choice]}
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0read -erp "Insta=
ll now? [y/n] " -n 1 installyn
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0if [[ "$instally=
n" =3D=3D "y" || "$installyn" =3D=3D "Y" ]]; then
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0sudo emerge -v ${wmspkg[$choice]}
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0if [ -f /usr/bin/${wms[$choice]} ]; then
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0export DISPLAY=3D:0
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0X&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0sleep 1
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0${wms[$choice]}&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0eval ${wmspost[$choice]}&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0else
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0=C2=A0=C2=A0 =C2=A0echo Please connect to the Internet
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=
=A0fi
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0fi
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0else
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0export DISPLAY=
=3D:0
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0X&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0sleep 1
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0${wms[$choice]}&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0eval ${wmspost[$=
choice]}&
> =C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0fi
> =C2=A0=C2=A0 =C2=A0fi
> fi
>
>
> -------------------------------------------------------------------------=
-----
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
> _______________________________________________
> Fluxbox-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/fluxbox-users =20
------=_Part_2595951_1717972394.1532594192370
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<html><head></head><body><div style=3D"font-family:Helvetica Neue, Helvetic=
a, Arial, sans-serif;font-size:16px;"><div style=3D"font-family:Helvetica N=
eue, Helvetica, Arial, sans-serif;font-size:16px;"><div></div>
        <div>Thanks much to both of you for the replies to my query! I used=
 the script suggested below, and it does indeed allow me to login to my flu=
xbox without all the other prompting. So my original query is solved.</div>=
<div><br></div><div>On the other hand, and as you both have noted, several =
things are not where i would expect them to be. Also, i have numerous other=
 issues that i don't think are specific to Gentoo so much as the Clover OS =
devs wanting to offer so many desktop options. It does not save my Nitrogen=
 wallpaper. I cannot copy &amp; paste into the default terminal so i instal=
led lxterminal and set it up as many times before, but i cannot get it to o=
pen. I cannot see partitions outside this distro. Etc.<br></div><div><br></=
div><div>This is part of a multi-linux setup on my only laptop so i can't m=
uck things up too badly. I'm thinking of using Antix for my FB learning, or=
 possibly just installing FB under my existing Fedora MATE or ArchLabs Open=
Box. Any preferences there, or other suggestions for a FB install? Thanks.<=
br></div><div><br></div><div><br></div><div><br></div>
       =20
        </div><div id=3D"ydpaa120254yahoo_quoted_2638831680" class=3D"ydpaa=
120254yahoo_quoted">
            <div style=3D"font-family:'Helvetica Neue', Helvetica, Arial, s=
ans-serif;font-size:13px;color:#26282a;">
               =20
                <div>
                    On Wednesday, July 25, 2018, 12:25:59 PM CDT, Leo Butle=
r &lt;[email protected]&gt; wrote:
                </div>
                <div><br></div>
                <div><br></div>
                <div><div dir=3D"ltr">Reading the script you provided, here=
 is what I would do:<br clear=3D"none"><br clear=3D"none">-Move your instal=
led .bash_profile to .bash_profile.1 or whatnot.<br clear=3D"none">-Create =
a new .bash_profile with the following at the top<br clear=3D"none"><br cle=
ar=3D"none">if [ -z "$DISPLAY" ] &amp;&amp; ! pgrep X &gt; /dev/null; then<=
br clear=3D"none">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; export DISPLAY=
=3D:0<br clear=3D"none">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X&amp;<br=
 clear=3D"none">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sleep 1<br clear=
=3D"none">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fluxbox &amp;<br clear=
=3D"none">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; eval "nitrogen --set-zo=
om wallpaper.png &amp; xbindkeys &amp; $taptoclick &amp;"&amp;<br clear=3D"=
none">fi<br clear=3D"none"><br clear=3D"none">Caveats:<br clear=3D"none">I =
have just followed the logic of the script you sent. I would probably<br cl=
ear=3D"none">put that eval line in my ~/.xinitrc file. It is also my unders=
tanding that<br clear=3D"none">the startfluxbox script is the recommended w=
ay to start fluxbox, but<br clear=3D"none">that may not exist in Gentoo.<br=
 clear=3D"none"><br clear=3D"none">The whole set-up looks pretty brittle, b=
ut it is a refreshingly clean<br clear=3D"none">login compared to the distr=
os using display managers. Sigh...<br clear=3D"none"><br clear=3D"none">Bes=
t,<br clear=3D"none">Leo<br clear=3D"none"><div class=3D"ydpaa120254yqt0480=
872285" id=3D"ydpaa120254yqtfd37610"><br clear=3D"none">bill d via Fluxbox-=
users &lt;<a shape=3D"rect" href=3D"mailto:[email protected].=
net" rel=3D"nofollow" target=3D"_blank">[email protected]=
</a>&gt; writes:<br clear=3D"none"><br clear=3D"none">&gt; Hi all,<br clear=
=3D"none">&gt; New member and relatively new FluxBox user here. I have been=
 looking<br clear=3D"none">&gt; for a linux distro that installs only FB an=
d this morning installed<br clear=3D"none">&gt; Clover OS (a Gentoo-based d=
istro). There is very little info on their<br clear=3D"none">&gt; home page=
, but it does say i can change my default WM &amp; DE via<br clear=3D"none"=
>&gt; .bash_profile.<br clear=3D"none">&gt; Currently i seem to have no WM.=
 I boot to a login prompt. After<br clear=3D"none">&gt; logging in as user =
i am given a number of desktop choices and must<br clear=3D"none">&gt; re-s=
elect my already installed Fluxbox each time. How can i change<br clear=3D"=
none">&gt; that .bash_profile file so that i skip all the choices and simpl=
y boot<br clear=3D"none">&gt; into my fluxbox? I suppose I'm looking for so=
mething other than<br clear=3D"none">&gt; /dev/null in the first line, but =
see nothing under /dev/ pertaining to<br clear=3D"none">&gt; fluxbox?<br cl=
ear=3D"none">&gt; Thanks for any suggestions!<br clear=3D"none">&gt;<br cle=
ar=3D"none">&gt; Currently it reads like this:<br clear=3D"none">&gt; if [ =
-z "$DISPLAY" ] &amp;&amp; ! pgrep X &gt; /dev/null; then<br clear=3D"none"=
>&gt; &nbsp;&nbsp; &nbsp;echo "WM Options: (y) Default (i) i3 (a) Awesome (=
o) Openbox (e) Enlightenment (k) KDE (m) MATE (x) XFCE (l) LXDE (q) LXQT (f=
) Fluxbox (d) dwm (c) IceWM (w) Window Maker (t) FVWM Themes (h) xmonad"<br=
 clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;read -erp "Start X? [y/n] " -n 1 ch=
oice<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;declare -A wms<br clear=3D"n=
one">&gt; &nbsp;&nbsp; &nbsp;declare -A wmspkg<br clear=3D"none">&gt; &nbsp=
;&nbsp; &nbsp;declare -A wmspost<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;=
wms[y]=3Dfvwm<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[Y]=3Dfvwm<br cl=
ear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[i]=3Di3<br clear=3D"none">&gt; &nb=
sp;&nbsp; &nbsp;wms[a]=3Dawesome<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;=
wms[o]=3Dopenbox<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[e]=3Denlight=
enment_start<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[k]=3Dstartkde<br=
 clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[m]=3Dmate-session<br clear=3D"n=
one">&gt; &nbsp;&nbsp; &nbsp;wms[x]=3Dstartxfce4<br clear=3D"none">&gt; &nb=
sp;&nbsp; &nbsp;wms[l]=3Dstartlxde<br clear=3D"none">&gt; &nbsp;&nbsp; &nbs=
p;wms[q]=3Dstartlxqt<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[f]=3Dflu=
xbox<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[d]=3Ddwm<br clear=3D"non=
e">&gt; &nbsp;&nbsp; &nbsp;wms[c]=3Dicewm<br clear=3D"none">&gt; &nbsp;&nbs=
p; &nbsp;wms[w]=3Dwmaker<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[t]=
=3Dfvwm-themes-start<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms[h]=3Dxmo=
nad<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[y]=3Dfvwm<br clear=3D"=
none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[Y]=3Dfvwm<br clear=3D"none">&gt; &nbsp=
;&nbsp; &nbsp;wmspkg[i]=3D"i3-gaps i3status"<br clear=3D"none">&gt; &nbsp;&=
nbsp; &nbsp;wmspkg[a]=3Dawesome<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;w=
mspkg[o]=3Dopenbox<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[e]=3D"e=
nlightenment:0.17 terminology"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wm=
spkg[k]=3D"kdebase-meta gwenview"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp=
;wmspkg[m]=3D"mate engrampa pluma atril gnome-calculator caja-extensions ma=
te-netbook mate-power-manager mate-screensaver mate-system-monitor mate-uti=
ls eom mate-netspeed"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[x]=
=3Dxfce4-meta<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[l]=3Dlxde-me=
ta<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[q]=3Dlxqt-meta<br clear=
=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[f]=3Dfluxbox<br clear=3D"none">&gt=
; &nbsp;&nbsp; &nbsp;wmspkg[d]=3Ddwm<br clear=3D"none">&gt; &nbsp;&nbsp; &n=
bsp;wmspkg[c]=3Dicewm<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[w]=
=3Dwindowmaker<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[t]=3Dfvwm-t=
hemes<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspkg[h]=3Dxmonad<br clear=
=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[y]=3D"nitrogen --set-zoom wallpap=
er.png &amp; xbindkeys &amp; xinput set-prop \"SynPS/2 Synaptics TouchPad\"=
 \"libinput Tapping Enabled\" 1 &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; =
&nbsp;wmspost[Y]=3D"nitrogen --set-zoom wallpaper.png &amp; xbindkeys &amp;=
 xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping Enabled\=
" 1 &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[i]=3D"nitrogen=
 --set-zoom wallpaper.png &amp; xbindkeys &amp; xinput set-prop \"SynPS/2 S=
ynaptics TouchPad\" \"libinput Tapping Enabled\" 1 &amp;"<br clear=3D"none"=
>&gt; &nbsp;&nbsp; &nbsp;wmspost[a]=3D"nitrogen --set-zoom wallpaper.png &a=
mp; xbindkeys &amp; xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinp=
ut Tapping Enabled\" 1 &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms=
post[o]=3D"nitrogen --set-zoom wallpaper.png &amp; xbindkeys &amp; xinput s=
et-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping Enabled\" 1 &amp;=
"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[t]=3D"nitrogen --set-zo=
om wallpaper.png &amp; xbindkeys &amp; xinput set-prop \"SynPS/2 Synaptics =
TouchPad\" \"libinput Tapping Enabled\" 1 &amp;"<br clear=3D"none">&gt; &nb=
sp;&nbsp; &nbsp;wmspost[h]=3D"nitrogen --set-zoom wallpaper.png &amp; xbind=
keys &amp; xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tappin=
g Enabled\" 1 &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[e]=
=3D""<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[k]=3D""<br clear=3D=
"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[m]=3D""<br clear=3D"none">&gt; &nbsp=
;&nbsp; &nbsp;wmspost[x]=3D""<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wms=
post[l]=3D""<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[q]=3D""<br c=
lear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[f]=3D"nitrogen --set-zoom wal=
lpaper.png &amp; xbindkeys &amp; $taptoclick &amp;"<br clear=3D"none">&gt; =
&nbsp;&nbsp; &nbsp;wmspost[d]=3D"nitrogen --set-zoom wallpaper.png &amp; xb=
indkeys &amp; $taptoclick &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;=
wmspost[c]=3D"nitrogen --set-zoom wallpaper.png &amp; xbindkeys &amp; $tapt=
oclick &amp;"<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;wmspost[w]=3D"nitro=
gen --set-zoom wallpaper.png &amp; xbindkeys &amp; $taptoclick &amp;"<br cl=
ear=3D"none">&gt;<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;if [ -v wms[$ch=
oice] ]; then<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;=
if [ ! -f /usr/bin/${wms[$choice]} ]; then<br clear=3D"none">&gt; &nbsp;&nb=
sp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;echo<br clear=3D"none">&gt;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;echo ${wms[$choic=
e]} is not installed. Install it by running:<br clear=3D"none">&gt; &nbsp;&=
nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;echo $ sudo emerge ${wmsp=
kg[$choice]}<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&=
nbsp;&nbsp; &nbsp;read -erp "Install now? [y/n] " -n 1 installyn<br clear=
=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if =
[[ "$installyn" =3D=3D "y" || "$installyn" =3D=3D "Y" ]]; then<br clear=3D"=
none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
nbsp; &nbsp;sudo emerge -v ${wmspkg[$choice]}<br clear=3D"none">&gt; &nbsp;=
&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if [ =
-f /usr/bin/${wms[$choice]} ]; then<br clear=3D"none">&gt; &nbsp;&nbsp; &nb=
sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &n=
bsp;export DISPLAY=3D:0<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nb=
sp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;X&amp;<b=
r clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &n=
bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;sleep 1<br clear=3D"none">&gt; &n=
bsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&=
nbsp;&nbsp; &nbsp;${wms[$choice]}&amp;<br clear=3D"none">&gt; &nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;eval ${wmspost[$choice]}&amp;<br clear=3D"none">&gt; &nbsp;&nbsp; &n=
bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;else<br clear=
=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nb=
sp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;echo Please connect to the Internet<br c=
lear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp=
;&nbsp;&nbsp; &nbsp;fi<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbs=
p; &nbsp;&nbsp;&nbsp; &nbsp;fi<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&n=
bsp;&nbsp; &nbsp;else<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
; &nbsp;&nbsp;&nbsp; &nbsp;export DISPLAY=3D:0<br clear=3D"none">&gt; &nbsp=
;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;X&amp;<br clear=3D"none=
">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;sleep 1<br =
clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbs=
p;${wms[$choice]}&amp;<br clear=3D"none">&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbs=
p; &nbsp;&nbsp;&nbsp; &nbsp;eval ${wmspost[$choice]}&amp;<br clear=3D"none"=
>&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;fi<br clear=3D"none">&gt; &nbsp=
;&nbsp; &nbsp;fi<br clear=3D"none">&gt; fi<br clear=3D"none">&gt;<br clear=
=3D"none">&gt;<br clear=3D"none">&gt; -------------------------------------=
-----------------------------------------<br clear=3D"none">&gt; Check out =
the vibrant tech community on one of the world's most<br clear=3D"none">&gt=
; engaging tech sites, Slashdot.org! <a shape=3D"rect" href=3D"http://sdm.l=
ink/slashdot" rel=3D"nofollow" target=3D"_blank">http://sdm.link/slashdot</=
a><br clear=3D"none">&gt;<br clear=3D"none">&gt; __________________________=
_____________________<br clear=3D"none">&gt; Fluxbox-users mailing list<br =
clear=3D"none">&gt; <a shape=3D"rect" href=3D"mailto:[email protected]=
urceforge.net" rel=3D"nofollow" target=3D"_blank">[email protected]=
eforge.net</a><br clear=3D"none">&gt; <a shape=3D"rect" href=3D"https://lis=
ts.sourceforge.net/lists/listinfo/fluxbox-users" rel=3D"nofollow" target=3D=
"_blank">https://lists.sourceforge.net/lists/listinfo/fluxbox-users</a></di=
v></div></div>
            </div>
        </div></div></body></html>
------=_Part_2595951_1717972394.1532594192370--


--===============5639457084165598466==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
--===============5639457084165598466==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Fluxbox-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fluxbox-users

--===============5639457084165598466==--