Repo Meta

Notes

bgzo@LAPTOP-CELTBLVE:~$ cat /proc/version
Linux version 5.15.146.1-microsoft-standard-WSL2 (root@65c757a075e2) (gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #1 SMP Thu Jan 11 04:09:03 UTC 2024
bgzo@LAPTOP-CELTBLVE:~$ uname -a
Linux LAPTOP-CELTBLVE 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

Why

How

  • todo WSL GUI
  • todo 重回 Windows
    • 过去一年将 Ubuntu 作为自己的主力机, 期间滚更+修BUGS, 并收集并撰写了 维修日志. 在一次无法正常启动 Oracle 的经历后我正是卸载双系统的 Ubuntu, 开始用上了 Windows Subsystem WSL2, 一切仿佛回到了折腾的起点, 我不知道要说什么, 内心又不断地翻涌, 但工具就是工具, 不应该多说什么.
    • 工作的重心逐渐转移回 Windows, 除了命令行让人难以忍受的难用之外并没有什么不合心意的地方, 所以我又踏上了美化 Windows 命令行的道路. 一切都是源于被 *nix 惯坏的习惯.
      # Maybe u should install scoop first from https://github.com/lukesampson/scoop
      # Dowmload powershell 7.x instead of default 5.x form
      # https://github.com/PowerShell/PowerShell/releases, then run the powershell 7.x
      Install-Module posh-git -Scope CurrentUser
      Install-Module oh-my-posh -Scope CurrentUser
      # If u are in China, please look up the proxy using the powershell or get help
      # from my gist: https://gist.github.com/82a76ecbebf81b556a1d20a91a6bd21a
      # Edit the Environment config
      $PROFILE
      if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
      notepad $PROFILE # code $PROFILE
      # U could input the path to freash the powershell
      # Add the config like this:
      Import-Module posh-git
      Import-Module oh-my-posh
      Set-PoshPrompt Paradox # could see more prompts from https://ohmyposh.dev/docs/themes
      # Notice its not "Set-Theme" from
      # https://github.com/microsoft/terminal/issues/9237#issuecomment-798913706
      # More color-schemes:
      # https://docs.microsoft.com/zh-cn/windows/terminal/customize-settings/color-schemes
      # Everything maybe all right but the frosted glass (blur background)
      # Edit your terminal profiles and add following json stmt. If its doesn't make sence,
      # Turn on your system -> presonalization settings -> color : Transparency effects. from
      # https://docs.microsoft.com/zh-cn/windows/terminal/custom-terminal-gallery/frosted-glass-theme
      "useAcrylic": true,
      "acrylicOpacity": 0.7,

What

      cd \\wsl$\Ubuntu

Reference