Windows 中如何使用Terminal 美化腳本,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比青山湖網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式青山湖網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋青山湖地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。
// This file was initially generated by Windows Terminal 1.6.10571.0 // It should still be usable in newer versions, but newer versions might have additional // settings, help text, or changes that you will not see unless you clear this file // and let us generate a new one for you. // To view the default settings, hold "alt" while clicking on the "Settings" button. // For documentation on these settings, see: https://aka.ms/terminal-documentation { "$schema": "https://aka.ms/terminal-profiles-schema", "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", // You can add more global application settings here. // To learn more about global settings, visit https://aka.ms/terminal-global-settings // If enabled, selections are automatically copied to your clipboard. "copyOnSelect": false, // If enabled, formatted data is also copied to your clipboard "copyFormatting": false, // A profile specifies a command to execute paired with information about how it should look and feel. // Each one of them will appear in the 'New Tab' dropdown, // and can be invoked from the commandline with `wt.exe -p xxx` // To learn more about profiles, visit https://aka.ms/terminal-profile-settings "profiles": { "defaults": { //啟動(dòng)毛玻璃 "useAcrylic":true, //毛玻璃透明度 "acrylicOpacity":0.75, //關(guān)閉窗口的時(shí)候退出所有掛載的程序 "closeOnExit" : true, //輸入的時(shí)候自動(dòng)滾動(dòng)到輸入位置 "snapOnInput" : true , //字體 等距跟紗 "fontFace":"Source Code Pro", //字體大小 "fontSize":12, //如果設(shè)置為 true,則關(guān)閉多個(gè)選項(xiàng)卡處于打開狀態(tài)的窗口時(shí),需要確認(rèn)。 如果設(shè)置為 false,則關(guān)閉多個(gè)選項(xiàng)卡處于打開狀態(tài)的窗口時(shí),不需要確認(rèn)。 "confirmCloseAllTabs":true, //此方法控制呈現(xiàn)器中文本的消除鋸齒方式。 請(qǐng)注意,更改此設(shè)置將需要啟動(dòng)新的終端實(shí)例。 "antialiasingMode":"cleartype", //光標(biāo)顏色 "cursorColor":"#06ed50", //啟動(dòng)時(shí)的窗口位置,以x,y坐標(biāo)形式 "initialPosition":"0,0" }, "list": [ { // Make changes here to the powershell.exe profile. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "name": "Windows PowerShell", "commandline": "powershell.exe", "hidden": false }, { // Make changes here to the cmd.exe profile. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "Command Prompt", "commandline": "cmd.exe", "hidden": false }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "hidden": false, "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure" } ] }, // Add custom color schemes to this array. // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes "schemes": [ { "name" : "Dracula MOD", "background" : "#2c2d36", "black" : "#000000", "blue" : "#001d7e", "brightBlack" : "#abb7da", "brightBlue" : "#D6ACFF", "brightCyan" : "#A4FFFF", "brightGreen" : "#69FF94", "brightPurple" : "#FF92DF", "brightRed" : "#fa9090", "brightWhite" : "#FFFFFF", "brightYellow" : "#FFFFA5", "cyan" : "#8BE9FD", "foreground" : "#F8F8F2", "green" : "#32df5a", "purple" : "#FF79C6", "red" : "#fa9c4f", "white" : "#F8F8F2", "yellow" : "#F1FA8C" }, { "name":"Atom", "foreground": "#c5c8c6", "background": "#161719", "black": "#000000", "blue": "#85befd", "cyan": "#85befd", "green": "#87c38a", "magenta": "#b9b6fc", "red": "#fd5ff1", "white": "#e0e0e0", "yellow": "#ffd7b1", "brightBlack": "#000000", "brightBlue": "#96cbfe", "brightCyan": "#85befd", "brightGreen": "#94fa36", "brightMagenta": "#b9b6fc", "brightRed": "#fd5ff1", "brightWhite": "#e0e0e0", "brightYellow": "#f5ffa8" } ], // Add custom actions and keybindings to this array. // To unbind a key combination from your defaults.json, set the command to "unbound". // To learn more about actions and keybindings, visit https://aka.ms/terminal-keybindings "actions": [ // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. // These two lines additionally bind them to Ctrl+C and Ctrl+V. // To learn more about selection, visit https://aka.ms/terminal-selection { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, { "command": "paste", "keys": "ctrl+v" }, // Press Ctrl+Shift+F to open the search box { "command": "find", "keys": "ctrl+shift+f" }, // Press Alt+Shift+D to open a new pane. // - "split": "auto" makes this pane open in the direction that provides the most surface area. // - "splitMode": "duplicate" makes the new pane use the focused pane's profile. // To learn more about panes, visit https://aka.ms/terminal-panes { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } ] }
看完上述內(nèi)容,你們掌握Windows 中如何使用Terminal 美化腳本的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
網(wǎng)頁(yè)題目:Windows中如何使用Terminal美化腳本
網(wǎng)頁(yè)路徑:http://aaarwkj.com/article20/igicco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、營(yíng)銷型網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、面包屑導(dǎo)航、電子商務(wù)、網(wǎng)站營(yíng)銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)