237dmitry

Results 330 comments of 237dmitry
trafficstars

I think a less complicated way is to dump the settings for each theme with `dconf` and restore the one you need. A more complicated option is a script that...

How it could be represented? As in bash? ![ArcoLinux_2024-07-10_18-26-58](https://github.com/PowerShell/PowerShell/assets/78153320/ab9f7bf9-d0c0-498f-a197-5ebcdd0420f4)

> should actually accept verbatim the characters Yes, I think so. Maybe with ``` `t ``` or `\t` replacement.

> The concept of a character-encoding such as UTF-8 doesn't apply to in-memory strings getting pasted When using `Get-Clipboard`, tab characters are not replaced with spaces.: ``` $ [int[]][char[]] "a...

> The process stays the same, it is the executable program loaded into the process that changes. ( identical pid, identical parent pid etc ) /usr/bin/exec does the same: ![exec](https://github.com/user-attachments/assets/c5b305af-03f1-469d-a734-ef7511675523)

Just out of curiosity. What problems? In my experience, curl sometimes doesn't work, but IWR does. And vice versa. However, I can't give any specific examples. It probably sounds implausible.

How did you find `curl` value for `UserAgent` parameter? It is not in known PowerShell user agents: ```powershell #!/usr/bin/env -S pwsh -nop $uas = ([Microsoft.PowerShell.Commands.PSUserAgent] | Get-Member -Static -MemberType Property).Name...