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 & 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 <[email protected]> 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" ] && ! pgrep X > /dev/null; then<=
br clear=3D"none"> export DISPLAY=
=3D:0<br clear=3D"none"> X&<br=
clear=3D"none"> sleep 1<br clear=
=3D"none"> fluxbox &<br clear=
=3D"none"> eval "nitrogen --set-zo=
om wallpaper.png & xbindkeys & $taptoclick &"&<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 <<a shape=3D"rect" href=3D"mailto:[email protected].=
net" rel=3D"nofollow" target=3D"_blank">[email protected]=
</a>> writes:<br clear=3D"none"><br clear=3D"none">> Hi all,<br clear=
=3D"none">> New member and relatively new FluxBox user here. I have been=
looking<br clear=3D"none">> for a linux distro that installs only FB an=
d this morning installed<br clear=3D"none">> Clover OS (a Gentoo-based d=
istro). There is very little info on their<br clear=3D"none">> home page=
, but it does say i can change my default WM & DE via<br clear=3D"none"=
>> .bash_profile.<br clear=3D"none">> Currently i seem to have no WM.=
I boot to a login prompt. After<br clear=3D"none">> logging in as user =
i am given a number of desktop choices and must<br clear=3D"none">> re-s=
elect my already installed Fluxbox each time. How can i change<br clear=3D"=
none">> that .bash_profile file so that i skip all the choices and simpl=
y boot<br clear=3D"none">> into my fluxbox? I suppose I'm looking for so=
mething other than<br clear=3D"none">> /dev/null in the first line, but =
see nothing under /dev/ pertaining to<br clear=3D"none">> fluxbox?<br cl=
ear=3D"none">> Thanks for any suggestions!<br clear=3D"none">><br cle=
ar=3D"none">> Currently it reads like this:<br clear=3D"none">> if [ =
-z "$DISPLAY" ] && ! pgrep X > /dev/null; then<br clear=3D"none"=
>> 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">> read -erp "Start X? [y/n] " -n 1 ch=
oice<br clear=3D"none">> declare -A wms<br clear=3D"n=
one">> declare -A wmspkg<br clear=3D"none">>  =
; declare -A wmspost<br clear=3D"none">> =
wms[y]=3Dfvwm<br clear=3D"none">> wms[Y]=3Dfvwm<br cl=
ear=3D"none">> wms[i]=3Di3<br clear=3D"none">> &nb=
sp; wms[a]=3Dawesome<br clear=3D"none">> =
wms[o]=3Dopenbox<br clear=3D"none">> wms[e]=3Denlight=
enment_start<br clear=3D"none">> wms[k]=3Dstartkde<br=
clear=3D"none">> wms[m]=3Dmate-session<br clear=3D"n=
one">> wms[x]=3Dstartxfce4<br clear=3D"none">> &nb=
sp; wms[l]=3Dstartlxde<br clear=3D"none">> &nbs=
p;wms[q]=3Dstartlxqt<br clear=3D"none">> wms[f]=3Dflu=
xbox<br clear=3D"none">> wms[d]=3Ddwm<br clear=3D"non=
e">> wms[c]=3Dicewm<br clear=3D"none">> &nbs=
p; wms[w]=3Dwmaker<br clear=3D"none">> wms[t]=
=3Dfvwm-themes-start<br clear=3D"none">> wms[h]=3Dxmo=
nad<br clear=3D"none">> wmspkg[y]=3Dfvwm<br clear=3D"=
none">> wmspkg[Y]=3Dfvwm<br clear=3D"none">>  =
; wmspkg[i]=3D"i3-gaps i3status"<br clear=3D"none">> &=
nbsp; wmspkg[a]=3Dawesome<br clear=3D"none">> w=
mspkg[o]=3Dopenbox<br clear=3D"none">> wmspkg[e]=3D"e=
nlightenment:0.17 terminology"<br clear=3D"none">> wm=
spkg[k]=3D"kdebase-meta gwenview"<br clear=3D"none">>  =
;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">> wmspkg[x]=
=3Dxfce4-meta<br clear=3D"none">> wmspkg[l]=3Dlxde-me=
ta<br clear=3D"none">> wmspkg[q]=3Dlxqt-meta<br clear=
=3D"none">> wmspkg[f]=3Dfluxbox<br clear=3D"none">>=
; wmspkg[d]=3Ddwm<br clear=3D"none">> &n=
bsp;wmspkg[c]=3Dicewm<br clear=3D"none">> wmspkg[w]=
=3Dwindowmaker<br clear=3D"none">> wmspkg[t]=3Dfvwm-t=
hemes<br clear=3D"none">> wmspkg[h]=3Dxmonad<br clear=
=3D"none">> wmspost[y]=3D"nitrogen --set-zoom wallpap=
er.png & xbindkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\"=
\"libinput Tapping Enabled\" 1 &"<br clear=3D"none">> =
wmspost[Y]=3D"nitrogen --set-zoom wallpaper.png & xbindkeys &=
xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping Enabled\=
" 1 &"<br clear=3D"none">> wmspost[i]=3D"nitrogen=
--set-zoom wallpaper.png & xbindkeys & xinput set-prop \"SynPS/2 S=
ynaptics TouchPad\" \"libinput Tapping Enabled\" 1 &"<br clear=3D"none"=
>> wmspost[a]=3D"nitrogen --set-zoom wallpaper.png &a=
mp; xbindkeys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinp=
ut Tapping Enabled\" 1 &"<br clear=3D"none">> wms=
post[o]=3D"nitrogen --set-zoom wallpaper.png & xbindkeys & xinput s=
et-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tapping Enabled\" 1 &=
"<br clear=3D"none">> wmspost[t]=3D"nitrogen --set-zo=
om wallpaper.png & xbindkeys & xinput set-prop \"SynPS/2 Synaptics =
TouchPad\" \"libinput Tapping Enabled\" 1 &"<br clear=3D"none">> &nb=
sp; wmspost[h]=3D"nitrogen --set-zoom wallpaper.png & xbind=
keys & xinput set-prop \"SynPS/2 Synaptics TouchPad\" \"libinput Tappin=
g Enabled\" 1 &"<br clear=3D"none">> wmspost[e]=
=3D""<br clear=3D"none">> wmspost[k]=3D""<br clear=3D=
"none">> wmspost[m]=3D""<br clear=3D"none">>  =
; wmspost[x]=3D""<br clear=3D"none">> wms=
post[l]=3D""<br clear=3D"none">> wmspost[q]=3D""<br c=
lear=3D"none">> wmspost[f]=3D"nitrogen --set-zoom wal=
lpaper.png & xbindkeys & $taptoclick &"<br clear=3D"none">> =
wmspost[d]=3D"nitrogen --set-zoom wallpaper.png & xb=
indkeys & $taptoclick &"<br clear=3D"none">> =
wmspost[c]=3D"nitrogen --set-zoom wallpaper.png & xbindkeys & $tapt=
oclick &"<br clear=3D"none">> wmspost[w]=3D"nitro=
gen --set-zoom wallpaper.png & xbindkeys & $taptoclick &"<br cl=
ear=3D"none">><br clear=3D"none">> if [ -v wms[$ch=
oice] ]; then<br clear=3D"none">> =
if [ ! -f /usr/bin/${wms[$choice]} ]; then<br clear=3D"none">> &nb=
sp; echo<br clear=3D"none">>=
echo ${wms[$choic=
e]} is not installed. Install it by running:<br clear=3D"none">> &=
nbsp; echo $ sudo emerge ${wmsp=
kg[$choice]}<br clear=3D"none">> &=
nbsp; read -erp "Install now? [y/n] " -n 1 installyn<br clear=
=3D"none">> if =
[[ "$installyn" =3D=3D "y" || "$installyn" =3D=3D "Y" ]]; then<br clear=3D"=
none">> &=
nbsp; sudo emerge -v ${wmspkg[$choice]}<br clear=3D"none">> =
if [ =
-f /usr/bin/${wms[$choice]} ]; then<br clear=3D"none">> &nb=
sp; &n=
bsp;export DISPLAY=3D:0<br clear=3D"none">> &nb=
sp; X&<b=
r clear=3D"none">> &n=
bsp; sleep 1<br clear=3D"none">> &n=
bsp; &=
nbsp; ${wms[$choice]}&<br clear=3D"none">> =
=
eval ${wmspost[$choice]}&<br clear=3D"none">> &n=
bsp; else<br clear=
=3D"none">> &nb=
sp; echo Please connect to the Internet<br c=
lear=3D"none">>  =
; fi<br clear=3D"none">> &nbs=
p; fi<br clear=3D"none">> &n=
bsp; else<br clear=3D"none">>  =
; export DISPLAY=3D:0<br clear=3D"none">>  =
; X&<br clear=3D"none=
">> sleep 1<br =
clear=3D"none">> &nbs=
p;${wms[$choice]}&<br clear=3D"none">> &nbs=
p; eval ${wmspost[$choice]}&<br clear=3D"none"=
>> fi<br clear=3D"none">>  =
; fi<br clear=3D"none">> fi<br clear=3D"none">><br clear=
=3D"none">><br clear=3D"none">> -------------------------------------=
-----------------------------------------<br clear=3D"none">> Check out =
the vibrant tech community on one of the world's most<br clear=3D"none">>=
; 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">><br clear=3D"none">> __________________________=
_____________________<br clear=3D"none">> Fluxbox-users mailing list<br =
clear=3D"none">> <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">> <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==--