On 2019-12-24 17:56, Ed Greshko wrote:
It sounds as if you're not running with the environment variable LC_TIME=C.

What does the followng LONG command string return?

xx=`pidof thunderbird` ; cat/proc/$xx/environ | grep "LC_TIME=[Cc]" ; echo $?

-

.

Well I do have this which I hope runs after rebooted:

[bobg@Workstation-2 ~]$ cat /home/bobg/.bashrc
# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions

export LC_TYPE="C"

And I.m not certain I got the pid right but this is what I see:

[bobg@Workstation-2 ~]$ ps ax  | grep thunderbird
   1652 ?        Sl     0:50 /usr/lib64/thunderbird/thunderbird
   2431 pts/1    S+     0:00 grep --color=auto thunderbird

[bobg@Workstation-2 ~]$ cat /proc/$1652/environ | grep "LC_TIME=[Cc]" ; echo $?
cat: /proc/652/environ: No such file or directory
1

--
Bob Goodwin - Zuni, Virginia,
Fedora Linux-31 XFCE
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org

Reply via email to