Re: Terminal scroll bar -

2016-12-14 Thread poma
On 13.12.2016 20:55, Bob Goodwin wrote:
> On 12/12/16 16:19, poma wrote:
>> Yeah, the same path:
>> http://goo.gl/Gm4ffO
>> source/etc/
> +
> I tried to :
> 
> wget http://goo.gl/Gm4ffO/source/etc/
> 
> I thought it was one line and that 
> didn't work, had to browse [Firefox] to 
> "http://goo.gl/Gm4ffO; and then select 
> "source" and "etc."
> 
> After that the rest worked as you said 
> it should. I have a lot of notes to 
> refer to!
>>
>> And here's one cool tip,
>> if you need to "colorize" the theme, here's how it can be done quite 
>> elegantly;
>>
>> - If it is not already, make a themes dir for the user
>>$ mkdir -p ~/.themes
>>
>> - Copy the system-wide Duskgrey theme dir to the themes dir for the user
>>$ cp -a /usr/share/themes/Duskgrey/ ~/.themes
>>
>> - Rename Duskgrey to Duskblue
>>$ mv ~/.themes/Duskgrey/ ~/.themes/Duskblue
>>
>> - Replace base/background color of the theme,
>>one of the shades of dark gray, to one of the shades of dark blue.
>>In this case 121212 presents color code of dark gray,
>>and 000111 presents color code of dark blue,
>>therefore
>>$ sed -i 's/121212/000111/g' ~/.themes/Duskblue/gtk*/gtk*
>>
>> - Set Duskblue as the theme
>>$ xfconf-query -c xsettings -p /Net/ThemeName -s Duskblue
>>
>>
>> 'gcolor2' can help find the requested color.
>>
> +
> 
> After doing all these things my XFCE 
> terminal has no scroll bar. :-(
> 
> Other than that I'm using the result of 
> the "Duskblue" exercise and am happy 
> with it.
> 
> I still need to try changing the 
> "userContent.css" file as suggested. 
> There are colors in Firefox I would like 
> to change but that can wait for another day.
> 
> I'm trying to make "Recoll" index things 
> I want listed now.
> 
> Thanks,
> 
> Bob
> 


I haven't encountered such a problem within xfce4-terminal, a scrollbar if 
enabled is always visible.

Here in this version, visibility of Gtk2 scrollbars and checkboxes generally, 
is improved.
$ md5sum duskgrey-theme-3.22.4-3.fc24.src.rpm 
6cfbec6f05cc4cba18842d9cf31d84e2  duskgrey-theme-3.22.4-3.fc24.src.rpm

To download via the command line:
$ curl -JLO https://goo.gl/f3QsSC

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-13 Thread Bob Goodwin

On 12/12/16 16:19, poma wrote:

Yeah, the same path:
http://goo.gl/Gm4ffO
source/etc/

+
I tried to :

wget http://goo.gl/Gm4ffO/source/etc/

I thought it was one line and that 
didn't work, had to browse [Firefox] to 
"http://goo.gl/Gm4ffO; and then select 
"source" and "etc."


After that the rest worked as you said 
it should. I have a lot of notes to 
refer to!


And here's one cool tip,
if you need to "colorize" the theme, here's how it can be done quite elegantly;

- If it is not already, make a themes dir for the user
   $ mkdir -p ~/.themes

- Copy the system-wide Duskgrey theme dir to the themes dir for the user
   $ cp -a /usr/share/themes/Duskgrey/ ~/.themes

- Rename Duskgrey to Duskblue
   $ mv ~/.themes/Duskgrey/ ~/.themes/Duskblue

- Replace base/background color of the theme,
   one of the shades of dark gray, to one of the shades of dark blue.
   In this case 121212 presents color code of dark gray,
   and 000111 presents color code of dark blue,
   therefore
   $ sed -i 's/121212/000111/g' ~/.themes/Duskblue/gtk*/gtk*

- Set Duskblue as the theme
   $ xfconf-query -c xsettings -p /Net/ThemeName -s Duskblue


'gcolor2' can help find the requested color.


+

After doing all these things my XFCE 
terminal has no scroll bar. :-(


Other than that I'm using the result of 
the "Duskblue" exercise and am happy 
with it.


I still need to try changing the 
"userContent.css" file as suggested. 
There are colors in Firefox I would like 
to change but that can wait for another day.


I'm trying to make "Recoll" index things 
I want listed now.


Thanks,

Bob

--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-12 Thread poma
On 12.12.2016 19:45, Bob Goodwin wrote:
> On 12/12/16 10:12, poma wrote:
>> You can also test this theme:
>> $ md5sum duskgrey-theme-3.22.4-2.fc24.src.rpm
>> fc3d02cd9b47cec7b473d85697e0c053  duskgrey-theme-3.22.4-2.fc24.src.rpm
> 
> +
> 
> I have not been able to find this 
> src.rpm file. Am I making an obvious 
> mistake, should I know where to find it?
> 
> I think I followed the same path as last 
> time ...
> 
> Bob
> 

Yeah, the same path:
http://goo.gl/Gm4ffO
source/etc/


And here's one cool tip,
if you need to "colorize" the theme, here's how it can be done quite elegantly;

- If it is not already, make a themes dir for the user
  $ mkdir -p ~/.themes

- Copy the system-wide Duskgrey theme dir to the themes dir for the user
  $ cp -a /usr/share/themes/Duskgrey/ ~/.themes

- Rename Duskgrey to Duskblue
  $ mv ~/.themes/Duskgrey/ ~/.themes/Duskblue

- Replace base/background color of the theme,
  one of the shades of dark gray, to one of the shades of dark blue.
  In this case 121212 presents color code of dark gray,
  and 000111 presents color code of dark blue,
  therefore
  $ sed -i 's/121212/000111/g' ~/.themes/Duskblue/gtk*/gtk*

- Set Duskblue as the theme
  $ xfconf-query -c xsettings -p /Net/ThemeName -s Duskblue


'gcolor2' can help find the requested color.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-12 Thread Bob Goodwin

On 12/12/16 10:12, poma wrote:

You can also test this theme:
$ md5sum duskgrey-theme-3.22.4-2.fc24.src.rpm
fc3d02cd9b47cec7b473d85697e0c053  duskgrey-theme-3.22.4-2.fc24.src.rpm


+

I have not been able to find this 
src.rpm file. Am I making an obvious 
mistake, should I know where to find it?


I think I followed the same path as last 
time ...


Bob

--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-12 Thread poma
On 03.12.2016 16:55, Bob Goodwin wrote:
> On 12/03/16 06:17, poma wrote:
 I changed the desktop theme under xfce
 appearance to Adwaita instead of
 XFCE-Dusk and got a scroll bar.

 Bob
>> You can test with this themes,
>> compatible across all Fedoras, 24 to 26,
>> i.e. GTK+ 3.20.9 to 3.22.4,
>> and  GTK+ 2.24.31.
>>
>> http://goo.gl/Gm4ffO
>> source/etc/
>> *grey-theme-3.22.4-4.fc24.src.rpm
>>
>> CHECKSUM:
>> $ md5sum *grey-theme-3.22.4-4.fc24.src.rpm
>> b33c868cd8da5cba7d82c99aa2926fb3  darkgrey-theme-3.22.4-4.fc24.src.rpm
>> 62e98c01fa5f1efdd8273b5400ca05d1  lightgrey-theme-3.22.4-4.fc24.src.rpm
>>
>> REBUILD:
>> $ rpmbuild --rebuild *grey-theme-3.22.4-4.fc24.src.rpm
>>
>> INSTALL:
>> $ su -c "rpm -Uvh 
>> $HOME/rpmbuild/RPMS/noarch/*grey-theme-3.22.4-4.fc24.noarch.rpm"
>>
>> GET CURRENT THEME:
>> $ xfconf-query -c xsettings -p /Net/ThemeName
>> $ xfconf-query -c xfwm4 -p /general/theme
>>
>> SET THEME:
>> $ xfconf-query -c xsettings -p /Net/ThemeName -s Darkgrey
>> $ xfconf-query -c xfwm4 -p /general/theme -s Darkgrey
>>
> +
> 
> Ok, I was able to work my way through 
> that, something I have never done before 
> and it took some effort to get things 
> right but it works perfectly to build 
> and install the rpm. I will save the 
> instructions.
> 
> And the resulting xfce theme looks good 
> to me and the xfce terminal HAS a scroll 
> bar.
> 
> Thanks for the detailed help, much 
> appreciated,
> 
> Bob
> 
> 

You can also test this theme:
$ md5sum duskgrey-theme-3.22.4-2.fc24.src.rpm 
fc3d02cd9b47cec7b473d85697e0c053  duskgrey-theme-3.22.4-2.fc24.src.rpm

After rebuilding and installing,
it is recommended to read the comments in:
/usr/share/doc/duskgrey-theme/userContent.css
apropos Firefox and dark themes,
if you have not already set up something similar.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-03 Thread Bob Goodwin

On 12/03/16 06:17, poma wrote:

>I changed the desktop theme under xfce
>appearance to Adwaita instead of
>XFCE-Dusk and got a scroll bar.
>
>Bob

You can test with this themes,
compatible across all Fedoras, 24 to 26,
i.e. GTK+ 3.20.9 to 3.22.4,
and  GTK+ 2.24.31.

http://goo.gl/Gm4ffO
source/etc/
*grey-theme-3.22.4-4.fc24.src.rpm

CHECKSUM:
$ md5sum *grey-theme-3.22.4-4.fc24.src.rpm
b33c868cd8da5cba7d82c99aa2926fb3  darkgrey-theme-3.22.4-4.fc24.src.rpm
62e98c01fa5f1efdd8273b5400ca05d1  lightgrey-theme-3.22.4-4.fc24.src.rpm

REBUILD:
$ rpmbuild --rebuild *grey-theme-3.22.4-4.fc24.src.rpm

INSTALL:
$ su -c "rpm -Uvh 
$HOME/rpmbuild/RPMS/noarch/*grey-theme-3.22.4-4.fc24.noarch.rpm"

GET CURRENT THEME:
$ xfconf-query -c xsettings -p /Net/ThemeName
$ xfconf-query -c xfwm4 -p /general/theme

SET THEME:
$ xfconf-query -c xsettings -p /Net/ThemeName -s Darkgrey
$ xfconf-query -c xfwm4 -p /general/theme -s Darkgrey


+

Ok, I was able to work my way through 
that, something I have never done before 
and it took some effort to get things 
right but it works perfectly to build 
and install the rpm. I will save the 
instructions.


And the resulting xfce theme looks good 
to me and the xfce terminal HAS a scroll 
bar.


Thanks for the detailed help, much 
appreciated,


Bob


--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-03 Thread poma
On 02.12.2016 22:20, Bob Goodwin wrote:
> On 12/02/16 12:18, Bob Goodwin wrote:
>> On 12/02/16 11:48, SternData wrote:
>>>  From EDIT -> Profile preferences, 
>>> what do you have set for "Scrolling"?
>>>
>>> http://i.imgur.com/9wjPcqn.png
>>>
>>> +
>>
> I changed the desktop theme under xfce 
> appearance to Adwaita instead of 
> XFCE-Dusk and got a scroll bar.
> 
> Bob


You can test with this themes,
compatible across all Fedoras, 24 to 26,
i.e. GTK+ 3.20.9 to 3.22.4,
and  GTK+ 2.24.31.

http://goo.gl/Gm4ffO
source/etc/
*grey-theme-3.22.4-4.fc24.src.rpm

CHECKSUM:
$ md5sum *grey-theme-3.22.4-4.fc24.src.rpm
b33c868cd8da5cba7d82c99aa2926fb3  darkgrey-theme-3.22.4-4.fc24.src.rpm
62e98c01fa5f1efdd8273b5400ca05d1  lightgrey-theme-3.22.4-4.fc24.src.rpm

REBUILD:
$ rpmbuild --rebuild *grey-theme-3.22.4-4.fc24.src.rpm

INSTALL:
$ su -c "rpm -Uvh 
$HOME/rpmbuild/RPMS/noarch/*grey-theme-3.22.4-4.fc24.noarch.rpm"

GET CURRENT THEME:
$ xfconf-query -c xsettings -p /Net/ThemeName
$ xfconf-query -c xfwm4 -p /general/theme

SET THEME:
$ xfconf-query -c xsettings -p /Net/ThemeName -s Darkgrey
$ xfconf-query -c xfwm4 -p /general/theme -s Darkgrey

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-02 Thread Bob Goodwin

On 12/02/16 12:18, Bob Goodwin wrote:

On 12/02/16 11:48, SternData wrote:
 From EDIT -> Profile preferences, 
what do you have set for "Scrolling"?


http://i.imgur.com/9wjPcqn.png

+


I changed the desktop theme under xfce 
appearance to Adwaita instead of 
XFCE-Dusk and got a scroll bar.


Bob

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org



--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-02 Thread Bob Goodwin

On 12/02/16 11:48, SternData wrote:

 From EDIT -> Profile preferences, what do you have set for "Scrolling"?

http://i.imgur.com/9wjPcqn.png

+

See attachment. plain text

--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-02 Thread Bob Goodwin

On 12/02/16 11:48, SternData wrote:

 From EDIT -> Profile preferences, what do you have set for "Scrolling"?

See attachment, 15.8 kB


--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Terminal scroll bar -

2016-12-02 Thread SternData
From EDIT -> Profile preferences, what do you have set for "Scrolling"?

http://i.imgur.com/9wjPcqn.png

On 12/02/2016 09:00 AM, Bob Goodwin wrote:
> 
> I have two essentially identically configured Fedora-25 workstation
> [fresh] installations. One has a scroll bar on the right side of the
> xfce4-terminal display, the other does not. This one that does not have
> the scroll bar began as F-25 alpha/beta and was upgraded from there.
> 
> I just tried a Dell Latitude upgraded directly from F-23 to F-25, it HAS
> the terminal scroll bar.
> 
> I have gone through the various menu items but have not been able to see
> anything different there. I find this inconvenient.
> 
> Any suggestion on fixing this will be appreciated.
> 
> Bob
> 
> 


-- 
-- Steve
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Terminal scroll bar -

2016-12-02 Thread Bob Goodwin


I have two essentially identically 
configured Fedora-25 workstation [fresh] 
installations. One has a scroll bar on 
the right side of the xfce4-terminal 
display, the other does not. This one 
that does not have the scroll bar began 
as F-25 alpha/beta and was upgraded from 
there.


I just tried a Dell Latitude upgraded 
directly from F-23 to F-25, it HAS the 
terminal scroll bar.


I have gone through the various menu 
items but have not been able to see 
anything different there. I find this 
inconvenient.


Any suggestion on fixing this will be 
appreciated.


Bob


--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-25/64it LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org