JanDeDobbeleer / oh-my-posh

The most customisable and low-latency cross platform/shell prompt renderer
https://ohmyposh.dev
MIT License
17.01k stars 2.37k forks source link

Using tcsh shell with oh my posh will impede while loops to run #4793

Closed ghost closed 6 months ago

ghost commented 6 months ago

Code of Conduct

What happened?

Using Oh my posh 19.18.1 in tcsh and executing a script such as shit one:

#!/bin/csh

set num_sims_missing = 1

while (${num_sims_missing} > 0)
  set num_sims_missing = `bjobs | grep .src | wc -l`
  sleep 1s
  echo "${num_sims_missing} procs are still running......."
end

The script will not exit the while loop even if the num_sims_missing variable is zero

using set echo and set verbose we see the following log

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis
set verbose

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis
set num_sims_missing = 1
set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis
set num_sims_missing = 1

set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis
while ( ${num_sims_missing} > 0 )
set POSH_START_TIME = `/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis`
/remote/us01home50/andrer/oh_my_posh/oh-my-posh get millis
while ( 1 > 0 )
set num_sims_missing = `bjobs | grep .src | wc -l`
set num_sims_missing = `bjobs | grep .src | wc -l`
bjobs
grep --color=auto .src
wc -l
No unfinished job found
sleep 1s
sleep 1s
echo "${num_sims_missing} procs are still running......."
echo 0 procs are still running.......
0 procs are still running.......
end
end
set num_sims_missing = `bjobs | grep .src | wc -l`
set num_sims_missing = `bjobs | grep .src | wc -l`
bjobs
wc -l
grep --color=auto .src
No unfinished job found
sleep 1s
sleep 1s
echo "${num_sims_missing} procs are still running......."
echo 0 procs are still running.......
0 procs are still running.......
end
end
set num_sims_missing = `bjobs | grep .src | wc -l`
set num_sims_missing = `bjobs | grep .src | wc -l`
bjobs
wc -l
grep --color=auto .src
No unfinished job found
sleep 1s
sleep 1s
^C

On a normal shell the following log happens:

set num_sims_missing = 1
set num_sims_missing = 1

while ( ${num_sims_missing} > 0 )
while ( 1 > 0 )
set num_sims_missing = `bjobs | grep .src | wc -l`
set num_sims_missing = `bjobs | grep .src | wc -l`
bjobs
wc -l
grep --color=auto .src
No unfinished job found
sleep 1s
sleep 1s
echo "${num_sims_missing} procs are still running......."
echo 0 procs are still running.......
0 procs are still running.......
end
end
while ( ${num_sims_missing} > 0 )
while ( 0 > 0 )

I am not sure what happens but the while only executes once when using oh my posh

Theme

{
  "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
  "blocks": [
    {
      "alignment": "left",
      "segments": [
        {
          "background": "#26BDBB",
          "foreground": "#0C212F",
          "leading_diamond": "\ue0b6",
          "style": "diamond",
          "template": " \uf4ff {{ .UserName }} ",
          "trailing_diamond": "\ue0b0",
          "type": "session"
        },
        {
          "background": "#0C212F",
          "foreground": "#FFFFFF",
          "leading_diamond": "<transparent,#0C212F>\ue0b0</>",
          "style": "diamond",
          "template": " \udb80\uddc5 {{ .HostName }} ",
          "trailing_diamond": "\ue0b0",
          "type": "session"
        },
        {
          "background": "#DE2121",
          "foreground": "#FFFFFF",
          "leading_diamond": "<transparent,#DE2121>\ue0b0</>",
          "style": "diamond",
          "template": " \uf0e7 ",
          "trailing_diamond": "\ue0b0",
          "type": "root"
        },
        {
          "background": "#26BDBB",
          "foreground": "#0C212F",
          "leading_diamond": "<transparent,#26BDBB>\ue0b0</>",
          "properties": {
            "folder_icon": "...",
            "home_icon": "\ueb06",
            "style": "full"
          },
          "style": "diamond",
          "template": " \ue5ff {{ .Path }} ",
          "trailing_diamond": "\ue0b4",
          "type": "path"
        }
      ],
      "type": "prompt"
    },
    {
      "alignment": "right",
      "segments": [
        {
          "background": "#0C212F",
          "foreground": "#FFFFFF",
          "leading_diamond": "\ue0b6",
          "properties": {
            "time_format": "15:04"
          },
          "style": "diamond",
          "template": " \uf43a {{ .CurrentDate | date .Format }} ",
          "trailing_diamond": "\ue0b0",
          "type": "time"
        },
        {
          "background": "#26BDBB",
          "foreground": "#0C212F",
          "leading_diamond": "<transparent,background>\ue0b0</>",
          "style": "diamond",
          "template": " \udb81\ude1a RAM:</> {{ round .PhysicalPercentUsed .Precision }}% | {{ (div ((sub .PhysicalTotalMemory .PhysicalAvailableMemory)|float64) 1073741824.0) }}/{{ (div .PhysicalTotalMemory 1073741824.0) }}GB",
          "trailing_diamond": "\ue0b0",
          "type": "sysinfo"
        },
        {
          "background": "#910000",
          "foreground": "#ffffff",
          "leading_diamond": "<transparent,background>\ue0b0</>",
          "style": "diamond",
          "template": "<transparent> \uf12a</> {{ reason .Code }} ",
          "trailing_diamond": "\ue0b0",
          "type": "status"
        }
      ],
      "type": "prompt"
    },
    {
      "alignment": "left",
      "segments": [
        {
          "background": "#0C212F",
          "foreground": "#FFFFFF",
          "leading_diamond": "\ue0b6",
          "style": "diamond",
          "template": "\u276f",
          "trailing_diamond": "\ue0b4",
          "type": "text"
        }
      ],
      "type": "prompt"
    }
  ],
  "console_title_template": "{{if .Root}} \u26a1 {{end}}{{.Folder | replace \"~\" \"🏠\"}} @ {{.HostName}}",
  "final_space": true,
  "version": 2
}

What OS are you seeing the problem on?

Linux

Which shell are you using?

tcsh

Log output

Version: 19.18.1

Shell: tcsh

Prompt:

  andrer  󰇅 us01odcvde41628                                                                                                                                            10:16  󰘚 RAM: 25.62% | 4/15GB❯ 

Segments:

ConsoleTitle(true)                        -   1 ms
Session(true)                             -   0 ms
Session(true)                             -   0 ms
Root(false)                               -   0 ms
Path(true)                                -   0 ms
Time(true)                                -   0 ms
Sysinfo(true)                             -   1 ms
Status(false)                             -   0 ms
Text(true)                                -   0 ms

Run duration: 21.053675ms

Cache path: /u/andrer/.cache/oh-my-posh

Config path: /remote/us01home50/andrer/oh_my_posh/jblab_2021.omp.json

Logs:

[DEBUG] 10:16:07.232 shell.go:Getenv:325 → vscode
[TRACE] 10:16:07.232 shell.go:Getenv(TERM_PROGRAM) - 384.007µs
[DEBUG] 10:16:07.232 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.232 shell.go:Getenv(OMP_CACHE_DIR) - 25.832µs
[DEBUG] 10:16:07.232 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.232 shell.go:Getenv(XDG_CACHE_HOME) - 19.284µs
[TRACE] 10:16:07.232 shell_unix.go:CachePath() - 162.888µs
[DEBUG] 10:16:07.234 shell.go:Getenv:325 → /remote/us01home50/andrer/oh_my_posh/jblab_2021.omp.json
[TRACE] 10:16:07.234 shell.go:Getenv(POSH_THEME) - 58.774µs
[DEBUG] 10:16:07.234 shell_unix.go:Platform:87 → centos
[TRACE] 10:16:07.235 shell.go:resolveConfigPath() - 121.825µs
[TRACE] 10:16:07.235 shell.go:Init() - 3.009194ms
[TRACE] 10:16:07.235 shell.go:Flags() - 2.741µs
[TRACE] 10:16:07.238 config.go:loadConfig() - 3.351658ms
[TRACE] 10:16:07.238 shell.go:Flags() - 2.591µs
[DEBUG] 10:16:07.238 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.238 shell.go:Getenv(OMP_CACHE_DISABLED) - 24.449µs
[DEBUG] 10:16:07.238 shell.go:Shell:593 → no shell name provided in flags, trying to detect it
[DEBUG] 10:16:07.241 shell.go:Shell:601 → process name: tcsh
[TRACE] 10:16:07.241 shell.go:Shell() - 2.642981ms
[DEBUG] 10:16:07.241 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.241 shell.go:Getenv(POSH_SHELL_VERSION) - 16.326µs
[DEBUG] 10:16:07.241 debug.go:PrintDebug:22 → Segment: Title
[DEBUG] 10:16:07.241 text.go:Render:70 → Rendering template: {{if .Root}} ⚡ {{end}}{{.Folder | replace "~" "🏠"}} @ {{.HostName}}
[TRACE] 10:16:07.242 shell_unix.go:Root() - 3.138µs
[TRACE] 10:16:07.242 shell.go:Shell() - 2.574µs
[TRACE] 10:16:07.242 shell.go:StatusCodes() - 0s
[DEBUG] 10:16:07.242 shell_unix.go:IsWsl:35 → false
[TRACE] 10:16:07.242 shell_unix.go:IsWsl() - 22.426µs
[DEBUG] 10:16:07.242 shell.go:TemplateCache:774 → environment: [MODULE_VERSION_STACK=3.1.6 MANPATH=/global/lsf/lsf_top/10.1.14p3/man:/remote/cad-rep/msip/apps/pkg/tigervnc/latest/usr/share/man:/depot/rsync-3.0.8/share/man:/global/etc/modules/3.1.6/man:/usr/share/man:/usr/X11R6/man:/usr/local/man MSIP_SHELL_UDE_DEF=/remote/cad-rep/msip/tools/Shelltools/ude/ude/2023.11-1 MSIP_TOOLS_AUXLIB=/remote/cad-rep/msip/tools/auxLib/current projsnapshot=/slowfs/us01dwt2p335/projsnapshot XDG_SESSION_ID=94068 AI_SITE_PATH=/remote/cad-rep/msip/tools/cscopeLib/current HOSTNAME=us01odcvde41628 SHELL=/bin/tcsh HOST=us01odcvde41628 HERCULES_BITMODE=64 SSH_CLIENT=10.107.18.149 64508 22 PYLCC_BITMODE=64 PERL5LIB=/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/bbHspice:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/Verilog:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/Utils:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/Tk:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/Titan:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/Netlist:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/DWMODULE:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5/MSIP:/remote/cad-rep/msip/tools/SharedLib/2023.10/perl5 SYNOPSYS_FEATURE_SG_INTERNAL=1 UDE_SHELL_IS_BERRY=0 MSIP_UDE_DEF_VERSION=2023.11-1 QTDIR=/usr/lib64/qt-3.3 QTINC=/usr/lib64/qt-3.3/include PROTEUS_BITMODE=64 POWERLINE_COMMAND=oh-my-posh QT_GRAPHICSSYSTEM_CHECKED=1 USER=andrer GROUP=synopsys LD_LIBRARY_PATH=/remote/cad-rep/msip/ude_conf/clib:/usr/local/lib siteid=us01 qaude=/slowfs/us01dwt2p335/qaude HSPICE_64=1 COSMOS_BITMODE=64 HOSTTYPE=x86_64-linux SSH_AUTH_SOCK=0 SNPSLMD_LICENSE_FILE=26585@us01genlic:26585@us01snpslmd1 udecadrep=/remote/cad-rep MSIP_SHARED_LIB=/remote/cad-rep/msip/tools/SharedLib/2023.10 CIRANOVA_BITMODE=64 PATH=/depot/tar-1.28/bin/:/depot/tools/ccollab/bin:/remote/cad-rep/msip/tools/Shelltools/calex/2023.09/bin:/remote/cad-rep/msip/scripts:/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/etc:/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/bin:/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/bin/remote-cli:/depot/tar-1.28/bin/:/depot/tools/ccollab/bin:/depot/tar-1.28/bin/:/depot/tools/ccollab/bin:/remote/cad-rep/msip/tools/bin:/remote/cad-rep/msip/tools/Shelltools/ude/ude/2023.11-1/bin:/remote/cad-rep/msip/apps/pkg/tigervnc/latest/usr/bin:/depot/rsync-3.0.8/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/opt/Citrix/VDA/bin:. MAIL=/var/spool/mail/andrer MODULE_VERSION=3.1.6 PWD=/u/andrer _LMFILES_=/remote/cad-rep/etc/modulefiles/msip/msip_shared_lib/2023.10:/global/lsf/cfadm/etc/modules/lsf/us01_sgmsip:/remote/cad-rep/etc/modulefiles/msip/no_module_env/2022.10:/remote/cad-rep/etc/modulefiles/msip/msip_shell_calex/2023.09 TCLLIBPATH=/remote/cad-rep/msip/tools/SharedLib/2023.10/tcl/sha1 EDITOR=nedit LANG=en_US.UTF-8 POSH_SHELL_VERSION= MODULEPATH=/remote/cad-rep/etc/modulefiles/freeware:/global/cust_apps/modulefiles:/global/etc/modules/files/eda:/global/etc/modules/files/eda2:/global/cust_apps_sgip001/modulefiles:/global/snps_apps/modulefiles/eda:/global/export_control_apps/modulefiles/eda:/global/etc/modulefiles/freeware/opensource:/global/cust_apps_sgps001/lynx/admin/modulefiles/mc_servers:/global/script_depot/module:/global/etc/modules/files/flows:/global/lsf/cfadm/etc/modules:/global/etc/modules/files/usr_depot:/remote/vgeuclideproj1/modules:/remote/cad-rep/etc/modulefiles/msip:/remote/cad-rep/etc/modulefiles/msip_legacy_1:/remote/cad-rep/etc/modulefiles/msip_hipre KDEDIRS=/usr LOADEDMODULES=msip_shared_lib/2023.10:lsf/us01_sgmsip:no_module_env/2022.10:msip_shell_calex/2023.09 MSIP_ROOT=/remote/cad-rep/msip udecadrep3=/remote/us01dwt1p097 udecadtools=/remote/cad-rep udecadrep2=/slowfs/us01dwt2p485 udecadrep1=/remote/us01dwt1p067 SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass ICV_BITMODE=64 udecadrep7=/remote/us01sgnfs00897 HOME=/u/andrer SHLVL=5 udecadrep6=/remote/us01sgnfs00084 OSTYPE=linux NT_SITE_PATH=/remote/cad-rep/msip/tools/nanotimeLib/current udecadrep5=/remote/us01sgnfs00595 udecadrep4=/remote/us01sgnfs00395 VENDOR=unknown udescratch=/slowfs/us01dwt2p312 udeviewer=/slowfs/us01dwt2p335/udeviewer LOGNAME=andrer MACHTYPE=x86_64 CVS_RSH=ssh QTLIB=/usr/lib64/qt-3.3/lib SSH_CONNECTION=10.107.18.149 64508 10.192.99.225 22 SYNOPSYS_FEATURE_DEBUG=1 MODULESHOME=/global/etc/modules/3.1.6 LESSOPEN=||/usr/bin/lesspipe.sh %s ACE_SITE_PATH=/remote/cad-rep/msip/tools/waveviewLib/current DISPLAY=localhost:13.0 XDG_RUNTIME_DIR=/run/user/10056863 QT_PLUGIN_PATH=/usr/lib64/kde4/plugins:/usr/lib/kde4/plugins MODULES_RC=/global/etc/modules/modulesrc MODULES_PLATFORM=x86_64.Linux.3.10 POSH_THEME=/remote/us01home50/andrer/oh_my_posh/jblab_2021.omp.json udeproj=/remote/proj MSIP_CD_PRINTERS=mfd-c5000-c2248 mfd-c5000-c2488 MSIP_PROJ_ROOT=/remote/proj STAR_RCXT_BITMODE=64 _=/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/node BROWSER=/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/bin/helpers/browser.sh TERM_PROGRAM=vscode TERM_PROGRAM_VERSION=1.85.2 COLORTERM=truecolor GIT_ASKPASS=/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/extensions/git/dist/askpass.sh VSCODE_GIT_ASKPASS_NODE=/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/node VSCODE_GIT_ASKPASS_EXTRA_ARGS= VSCODE_GIT_ASKPASS_MAIN=/remote/us01home50/andrer/.vscode-server/bin/8b3775030ed1a69b13e4f4c628c612102e30a681/extensions/git/dist/askpass-main.js VSCODE_GIT_IPC_HANDLE=/run/user/10056863/vscode-git-af1d2d5bf9.sock VSCODE_IPC_HOOK_CLI=/run/user/10056863/vscode-ipc-ae6548f9-58a2-457f-a8ee-74b0c948ee5c.sock TERM=xterm-256color LS_COLORS=rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45: LSB_CONFDIR=/global/lsf/cells/us01_sgmsip/conf/lsbatch LSB_SHAREDIR=/global/lsf/work LSF_BINDIR=/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/bin LSF_CONFDIR=/global/lsf/cells/us01_sgmsip/conf LSF_ENVDIR=/global/lsf/cells/us01_sgmsip/conf LSF_LIBDIR=/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/lib LSF_LOGDIR=/opt/snps-lsf/log LSF_NIOS_PEND_TIMEOUT=43200 LSF_SERVERDIR=/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/etc LSF_SUBMIT_TO_CLUSTER=us01_sgmsip LSF_SYNOPSYS_CELL=us01_sgmsip LSF_TOP=/global/lsf/lsf_top LSF_VERSION=10.1.14p3 XLSF_UIDDIR=/global/lsf/lsf_top/10.1.14p3/linux3.10-glibc2.17-x86_64/lib/uid MSIP_SCRIPTS_ROOT=/remote/cad-rep/msip/scripts MSIP_SHELL_CALEX=/remote/cad-rep/msip/tools/Shelltools/calex/2023.09 MSIP_SHELL_CALEX_ADMIN=/remote/cad-rep/msip/admin/config/internal_tools/Shelltools/calex_lsf]
[TRACE] 10:16:07.242 shell.go:GOOS() - 0s
[DEBUG] 10:16:07.242 shell.go:Pwd:355 → /u/andrer
[TRACE] 10:16:07.242 shell.go:Pwd() - 121.806µs
[TRACE] 10:16:07.242 shell.go:GOOS() - 983ns
[TRACE] 10:16:07.242 shell.go:GOOS() - 1.115µs
[TRACE] 10:16:07.242 shell.go:GOOS() - 1.15µs
[TRACE] 10:16:07.242 shell.go:GOOS() - 911ns
[TRACE] 10:16:07.242 shell.go:GOOS() - 942ns
[TRACE] 10:16:07.242 shell.go:GOOS() - 995ns
[TRACE] 10:16:07.242 shell.go:GOOS() - 863ns
[TRACE] 10:16:07.243 shell.go:GOOS() - 1.119µs
[DEBUG] 10:16:07.243 shell.go:User:493 → andrer
[TRACE] 10:16:07.243 shell.go:User() - 8.584µs
[DEBUG] 10:16:07.243 shell.go:Host:505 → us01odcvde41628
[TRACE] 10:16:07.243 shell.go:Host() - 11.78µs
[TRACE] 10:16:07.243 shell.go:GOOS() - 901ns
[DEBUG] 10:16:07.243 shell_unix.go:Platform:87 → centos
[DEBUG] 10:16:07.243 shell.go:Getenv:325 → 5
[TRACE] 10:16:07.243 shell.go:Getenv(SHLVL) - 7.669µs
[TRACE] 10:16:07.243 shell.go:TemplateCache() - 760.527µs
[DEBUG] 10:16:07.243 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.243 shell.go:Getenv(POSH_CURSOR_LINE) - 9.913µs
[DEBUG] 10:16:07.243 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.243 shell.go:Getenv(POSH_CURSOR_COLUMN) - 7.551µs
[TRACE] 10:16:07.243 shell.go:Flags() - 1.06µs
[TRACE] 10:16:07.243 shell.go:Flags() - 995ns
[TRACE] 10:16:07.243 shell.go:Shell() - 1.061µs
[TRACE] 10:16:07.243 shell.go:Shell() - 975ns
[TRACE] 10:16:07.243 shell.go:Flags() - 0s
[TRACE] 10:16:07.243 shell.go:Flags() - 1.705µs
[TRACE] 10:16:07.243 shell.go:Pwd() - 0s
[TRACE] 10:16:07.243 shell.go:Pwd() - 1.946µs
[TRACE] 10:16:07.243 shell.go:GOOS() - 0s
[TRACE] 10:16:07.243 shell.go:GOOS() - 1.019µs
[DEBUG] 10:16:07.243 segment.go:SetEnabled:529 → Segment: Path
[DEBUG] 10:16:07.243 segment.go:SetEnabled:529 → Segment: Session
[TRACE] 10:16:07.243 shell.go:Pwd() - 1.004µs
[DEBUG] 10:16:07.243 shell.go:Getenv:325 → 10.107.18.149 64508 10.192.99.225 22
[TRACE] 10:16:07.243 shell.go:Getenv(SSH_CONNECTION) - 31µs
[TRACE] 10:16:07.243 shell.go:Shell() - 1.414µs
[TRACE] 10:16:07.243 shell.go:Shell() - 1.189µs
[TRACE] 10:16:07.243 shell.go:TemplateCache() - 2.669µs
[TRACE] 10:16:07.243 shell.go:Flags() - 0s
[TRACE] 10:16:07.243 shell.go:Pwd() - 0s
[TRACE] 10:16:07.243 shell.go:GOOS() - 0s
[DEBUG] 10:16:07.243 segment.go:SetEnabled:529 → Segment: Session
[DEBUG] 10:16:07.243 shell.go:Getenv:325 → 10.107.18.149 64508 10.192.99.225 22
[TRACE] 10:16:07.243 shell.go:Getenv(SSH_CONNECTION) - 9.11µs
[TRACE] 10:16:07.243 shell.go:TemplateCache() - 0s
[TRACE] 10:16:07.243 shell.go:Flags() - 3.766µs
[DEBUG] 10:16:07.243 properties.go:GetBool:22 → mapped_locations_enabled: true
[TRACE] 10:16:07.243 shell.go:Pwd() - 0s
[TRACE] 10:16:07.243 shell.go:GOOS() - 0s
[DEBUG] 10:16:07.243 properties.go:GetString:28 → 
[DEBUG] 10:16:07.243 segment.go:SetEnabled:529 → Segment: Root
[DEBUG] 10:16:07.243 properties.go:GetString:28 → 
[TRACE] 10:16:07.243 shell_unix.go:Root() - 2.435µs
[TRACE] 10:16:07.243 shell.go:GOOS() - 1.104µs
[DEBUG] 10:16:07.243 properties.go:GetString:28 → 
[DEBUG] 10:16:07.243 properties.go:GetKeyValueMap:46 → mapped_locations: map[]
[TRACE] 10:16:07.243 shell.go:PathSeparator() - 1.179µs
[TRACE] 10:16:07.243 shell.go:GOOS() - 1.174µs
[TRACE] 10:16:07.243 shell.go:GOOS() - 993ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 1.016µs
[TRACE] 10:16:07.244 shell.go:GOOS() - 929ns
[TRACE] 10:16:07.244 shell.go:PathSeparator() - 1.017µs
[TRACE] 10:16:07.244 shell.go:PathSeparator() - 919ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 961ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 1.056µs
[TRACE] 10:16:07.244 shell.go:PathSeparator() - 962ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 995ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 918ns
[TRACE] 10:16:07.244 shell.go:PathSeparator() - 964ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 996ns
[TRACE] 10:16:07.244 shell.go:GOOS() - 960ns
[TRACE] 10:16:07.244 shell.go:PathSeparator() - 965ns
[TRACE] 10:16:07.244 shell.go:Pwd() - 1.172µs
[DEBUG] 10:16:07.244 shell_unix.go:IsWsl:35 → false
[TRACE] 10:16:07.244 shell_unix.go:IsWsl() - 11.143µs
[TRACE] 10:16:07.244 shell.go:StackCount() - 1.241µs
[TRACE] 10:16:07.244 shell_unix.go:DirIsWritable(/u/andrer) - 25.418µs
[TRACE] 10:16:07.244 shell.go:TemplateCache() - 2.7µs
[DEBUG] 10:16:07.244 text.go:Render:70 → Rendering template:   {{ .Path }} 
[DEBUG] 10:16:07.244 text.go:Render:70 → Rendering template:  󰇅 {{ .HostName }} 
[DEBUG] 10:16:07.244 text.go:Render:70 → Rendering template:   {{ .UserName }} 
[TRACE] 10:16:07.246 shell.go:TemplateCache() - 0s
[TRACE] 10:16:07.246 shell.go:Shell() - 0s
[TRACE] 10:16:07.246 shell.go:TemplateCache() - 1.487µs
[TRACE] 10:16:07.246 shell.go:Shell() - 1.061µs
[TRACE] 10:16:07.247 shell.go:TemplateCache() - 1.523µs
[TRACE] 10:16:07.247 shell.go:Shell() - 1.16µs
[DEBUG] 10:16:07.247 text.go:Render:70 → Rendering template: diamond
[DEBUG] 10:16:07.248 text.go:Render:70 → Rendering template: diamond
[DEBUG] 10:16:07.248 text.go:Render:70 → Rendering template: diamond
[DEBUG] 10:16:07.248 text.go:Render:70 → Rendering template: diamond
[TRACE] 10:16:07.248 shell.go:Shell() - 1.66µs
[TRACE] 10:16:07.248 shell.go:Shell() - 974ns
[TRACE] 10:16:07.248 shell.go:Shell() - 1.293µs
[TRACE] 10:16:07.248 shell.go:Shell() - 1.234µs
[TRACE] 10:16:07.248 shell.go:Flags() - 1.354µs
[DEBUG] 10:16:07.248 properties.go:GetString:28 → {{ .Code }}
[TRACE] 10:16:07.248 shell.go:Flags() - 0s
[TRACE] 10:16:07.248 shell.go:Pwd() - 1.165µs
[TRACE] 10:16:07.248 shell.go:GOOS() - 1.345µs
[DEBUG] 10:16:07.248 segment.go:SetEnabled:529 → Segment: Status
[TRACE] 10:16:07.248 shell.go:Pwd() - 0s
[TRACE] 10:16:07.248 shell.go:StatusCodes() - 991ns
[DEBUG] 10:16:07.248 text.go:Render:70 → Rendering template: {{ .Code }}
[DEBUG] 10:16:07.248 segment.go:SetEnabled:529 → Segment: Time
[DEBUG] 10:16:07.248 properties.go:GetString:28 → 15:04
[TRACE] 10:16:07.248 shell.go:TemplateCache() - 1.563µs
[TRACE] 10:16:07.248 shell.go:Flags() - 853ns
[DEBUG] 10:16:07.248 properties.go:GetInt:40 → precision: 2
[TRACE] 10:16:07.249 shell.go:TemplateCache() - 1.708µs
[DEBUG] 10:16:07.249 properties.go:GetBool:22 → always_enabled: false
[TRACE] 10:16:07.249 shell.go:Pwd() - 1.331µs
[TRACE] 10:16:07.249 shell.go:GOOS() - 1.006µs
[DEBUG] 10:16:07.249 segment.go:SetEnabled:529 → Segment: Sysinfo
[TRACE] 10:16:07.249 shell.go:TemplateCache() - 1.337µs
[DEBUG] 10:16:07.249 text.go:Render:70 → Rendering template:   {{ .CurrentDate | date .Format }} 
[DEBUG] 10:16:07.249 text.go:Render:70 → Rendering template:  󰘚 RAM:</> {{ round .PhysicalPercentUsed .Precision }}% | {{ (div ((sub .PhysicalTotalMemory .PhysicalAvailableMemory)|float64) 1073741824.0) }}/{{ (div .PhysicalTotalMemory 1073741824.0) }}GB
[TRACE] 10:16:07.250 shell.go:TemplateCache() - 1.081µs
[TRACE] 10:16:07.250 shell.go:Shell() - 1.17µs
[TRACE] 10:16:07.250 shell.go:TemplateCache() - 1.394µs
[TRACE] 10:16:07.250 shell.go:Shell() - 1.437µs
[DEBUG] 10:16:07.250 text.go:Render:70 → Rendering template: diamond
[DEBUG] 10:16:07.250 text.go:Render:70 → Rendering template: diamond
[DEBUG] 10:16:07.250 text.go:Render:70 → Rendering template: diamond
[TRACE] 10:16:07.250 shell.go:Shell() - 1.36µs
[DEBUG] 10:16:07.252 shell_unix.go:TerminalWidth:80 → terminal width: 210
[TRACE] 10:16:07.252 shell_unix.go:TerminalWidth() - 1.858813ms
[TRACE] 10:16:07.252 shell.go:Shell() - 1.423µs
[TRACE] 10:16:07.252 shell.go:Shell() - 1.055µs
[TRACE] 10:16:07.252 shell.go:Shell() - 894ns
[TRACE] 10:16:07.252 shell.go:Shell() - 969ns
[TRACE] 10:16:07.252 shell.go:Flags() - 830ns
[TRACE] 10:16:07.252 shell.go:Pwd() - 1.027µs
[TRACE] 10:16:07.252 shell.go:GOOS() - 847ns
[DEBUG] 10:16:07.252 segment.go:SetEnabled:529 → Segment: Text
[TRACE] 10:16:07.252 shell.go:TemplateCache() - 1.037µs
[DEBUG] 10:16:07.252 text.go:Render:70 → Rendering template: ❯
[TRACE] 10:16:07.252 shell.go:Shell() - 0s
[DEBUG] 10:16:07.252 text.go:Render:70 → Rendering template: diamond
[TRACE] 10:16:07.253 shell.go:Shell() - 1.093µs
[TRACE] 10:16:07.253 shell.go:Shell() - 1.187µs
[TRACE] 10:16:07.253 shell.go:Flags() - 1.09µs
[TRACE] 10:16:07.253 shell.go:Shell() - 1.141µs
[TRACE] 10:16:07.253 shell.go:Shell() - 1.021µs
[DEBUG] 10:16:07.253 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.253 shell.go:Getenv(OMP_CACHE_DIR) - 13.435µs
[DEBUG] 10:16:07.253 shell.go:Getenv:325 → NO DATA
[TRACE] 10:16:07.253 shell.go:Getenv(XDG_CACHE_HOME) - 8.669µs
[TRACE] 10:16:07.253 shell_unix.go:CachePath() - 89.764µs
[TRACE] 10:16:07.253 shell.go:Flags() - 1.302µs
JanDeDobbeleer commented 6 months ago

@andrereis92323 similar to this one, can't reproduce.

ghost commented 6 months ago

That's the exact same issue! Do you have any idea how I could check what is happening? Or would you want me to create you an environment for you to reproduce the error?

ghost commented 6 months ago

I think I have found some evidence that the theme is afecting this issue

Using without theme image

Using with theme image

This is CentOS 7 reproduction was easy really. If you need some help to reproduce let me know

github-actions[bot] commented 2 months ago

This issue has been automatically locked since there has not been any recent activity (i.e. last half year) after it was closed. It helps our maintainers focus on the active issues. If you have found a problem that seems similar, please open a discussion first, complete the body with all the details necessary to reproduce, and mention this issue as reference.