[Evolution-users] Can't delete mail account

Van Snyder van.snyder at sbcglobal.net
Wed Aug 13 21:15:40 UTC 2025


On Wed, 2025-08-13 at 21:57 +0100, Patrick O'Callaghan wrote:
> On Wed, 2025-08-13 at 11:02 -0700, Van Snyder via evolution-users
> wrote:
> > >    XDG_CURRENT_DESKTOP=GNOME gnome-control-center
> > 
> > Is this an environment setting or an Evolution command-line option?
> > I
> > tried the latter and it said "Cannot import any of the given URIs"
> > 
> > 
> 
> Since it's placed before the command, it's an environment setting.
> 
> > I don't run bash. If it's an environment setting, how do I do it in
> > tcsh?
> 
> As far as I know, all Linux shells do this in exactly the same way.

In tcsh (and csh)

XDG_CURRENT_DESKTOP=GNOME gnome-control-center

results in "

Using "XDG_CURRENT_DESKTOP=GNOME: Command not found."

tcsh (and csh) use a "setenv NAME value" syntax to set environment
variables.

setenv XDG_CURRENT_DESKTOP GNOME gnome-control-center

results in "setenv: Too many arguments."

So I read some bash stuff and realized that

XDG_CURRENT_DESKTOP=GNOME gnome-control-center

has the dual purpose of setting an environment variable and launching a
program.

In tcsh (and csh) one would need a semicolon after "GNOME", or two
lines:

setenv XDG_CURRENT_DESKTOP GNOME; gnome-control-center

setenv XDG_CURRENT_DESKTOP GNOME
gnome-control-center

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osuosl.org/pipermail/evolution-users/attachments/20250813/c3d9812e/attachment.htm>


More information about the evolution-users mailing list