-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindows-notes.txt
42 lines (30 loc) · 1.14 KB
/
windows-notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
CaskaydiaCoveNerdFont for neovim in terminal:
https://www.nerdfonts.com/
tgpt for chatgpt without api key:
scoop install https://raw.githubusercontent.com/aandrew-me/tgpt/main/tgpt.json
Add cl to PATH
Use fd to find cl.exe after installing visual studio
Modify Windows Powershell Settings > Actions
Delete Paste Text (Ctrl-V)
Delete toggle full screen (Alt-Enter)
Find python scripts path with python --version
Example:
C:\Users\Bryce\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\Scripts
Add to environment PATH
-----
Can I automate setting of the font?
- name: Set PowerShell 7 font
hosts: windows_hosts
gather_facts: false
tasks:
- name: Set PowerShell 7 font
win_shell: |
$registryPath = "HKCU:\Console"
$fontName = "Your Font Name"
$fontSize = 14
Set-ItemProperty -Path $registryPath -Name "FaceName" -Value $fontName
Set-ItemProperty -Path $registryPath -Name "FontSize" -Value $fontSize
become: yes
become_method: runas
vars:
ansible_become_password: your_password