updates
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
"break",
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "\u001b[90m┌──────────────────────Hardware──────────────────────┐"
|
||||
"format": "┌──────────────────────Hardware──────────────────────┐"
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
@@ -42,9 +42,13 @@
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
||||
"format": "└────────────────────────────────────────────────────┘"
|
||||
},
|
||||
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "┌──────────────────────Software──────────────────────┐"
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": " OS",
|
||||
@@ -55,11 +59,6 @@
|
||||
"key": "│ ├",
|
||||
"keyColor": "yellow"
|
||||
},
|
||||
{
|
||||
"type": "bios",
|
||||
"key": "│ ├",
|
||||
"keyColor": "yellow"
|
||||
},
|
||||
{
|
||||
"type": "packages",
|
||||
"key": "│ ├",
|
||||
@@ -87,23 +86,27 @@
|
||||
"keyColor": "blue"
|
||||
},
|
||||
{
|
||||
"type": "wmtheme",
|
||||
"type": "theme",
|
||||
"key": "│ ├",
|
||||
"keyColor": "blue"
|
||||
},
|
||||
{
|
||||
"type": "icons",
|
||||
"key": "│ ├",
|
||||
"keyColor": "blue"
|
||||
}, {
|
||||
"type": "terminal",
|
||||
"key": "└ └",
|
||||
"keyColor": "blue"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
||||
"format": "└────────────────────────────────────────────────────┘"
|
||||
},
|
||||
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "\u001b[90m┌────────────────────Uptime / Age / DT────────────────────┐"
|
||||
"format": "┌────────────────────Uptime/Age/DT───────────────────┐"
|
||||
},
|
||||
{
|
||||
"type": "command",
|
||||
@@ -123,7 +126,7 @@
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "\u001b[90m└─────────────────────────────────────────────────────────┘"
|
||||
"format": "└────────────────────────────────────────────────────┘"
|
||||
},
|
||||
|
||||
// {
|
||||
|
||||
@@ -1,32 +1,42 @@
|
||||
# See this wiki page for more info:
|
||||
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
||||
print_info() {
|
||||
info title
|
||||
info underline
|
||||
#info title
|
||||
#info underline
|
||||
|
||||
prin "┌──────────────────────Hardware──────────────────────┐"
|
||||
info "PC" model
|
||||
info "CPU" cpu
|
||||
info "GPU" gpu
|
||||
#info "GPU Driver" gpu_driver # Linux/macOS only
|
||||
#info "Resolution" resolution
|
||||
info "Memory" memory
|
||||
info "Disk" disk
|
||||
prin "└────────────────────────────────────────────────────┘"
|
||||
|
||||
prin "┌──────────────────────Software──────────────────────┐"
|
||||
info "OS" distro
|
||||
info "Host" model
|
||||
info "Kernel" kernel
|
||||
info "Uptime" uptime
|
||||
info "Packages" packages
|
||||
info "Shell" shell
|
||||
info "Resolution" resolution
|
||||
info "DE" de
|
||||
info "WM" wm
|
||||
info "WM Theme" wm_theme
|
||||
#info "WM Theme" wm_theme
|
||||
info "Theme" theme
|
||||
info "Icons" icons
|
||||
info "Terminal" term
|
||||
#info "Font" font
|
||||
info "Terminal Font" term_font
|
||||
info "CPU" cpu
|
||||
info "GPU" gpu
|
||||
info "Memory" memory
|
||||
prin "└────────────────────────────────────────────────────┘"
|
||||
|
||||
info "GPU Driver" gpu_driver # Linux/macOS only
|
||||
info "CPU Usage" cpu_usage
|
||||
info "Disk" disk
|
||||
prin "┌────────────────────Uptime/Age/DT───────────────────┐"
|
||||
info "Uptime" uptime
|
||||
prin "└────────────────────────────────────────────────────┘"
|
||||
|
||||
|
||||
|
||||
#info "CPU Usage" cpu_usage
|
||||
# info "Battery" battery
|
||||
info "Font" font
|
||||
# info "Song" song
|
||||
# [[ "$player" ]] && prin "Music Player" "$player"
|
||||
# info "Local IP" local_ip
|
||||
@@ -195,7 +205,7 @@ speed_type="bios_limit"
|
||||
# Example:
|
||||
# on: 'i7-6500U (4) @ 3.1GHz'
|
||||
# off: 'i7-6500U (4) @ 3.100GHz'
|
||||
speed_shorthand="off"
|
||||
speed_shorthand="on"
|
||||
|
||||
# Enable/Disable CPU brand in output.
|
||||
#
|
||||
@@ -387,7 +397,7 @@ de_version="on"
|
||||
# disk_show=('/'):
|
||||
# 'Disk (/): 74G / 118G (66%)'
|
||||
#
|
||||
disk_show=('/')
|
||||
disk_show=('/' '/DATA_LINUX/')
|
||||
|
||||
# Disk subtitle.
|
||||
# What to append to the Disk subtitle.
|
||||
@@ -563,7 +573,7 @@ underline_char="-"
|
||||
# Example:
|
||||
# separator="->": 'Shell-> bash'
|
||||
# separator=" =": 'WM = dwm'
|
||||
separator=":"
|
||||
separator=" |"
|
||||
|
||||
|
||||
# Color Blocks
|
||||
@@ -590,14 +600,14 @@ block_range=(0 15)
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --color_blocks
|
||||
color_blocks="off"
|
||||
color_blocks="on"
|
||||
|
||||
# Color block width in spaces
|
||||
#
|
||||
# Default: '3'
|
||||
# Values: 'num'
|
||||
# Flag: --block_width
|
||||
block_width=3
|
||||
block_width=2
|
||||
|
||||
# Color block height in lines
|
||||
#
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
[xin_0]
|
||||
file=/usr/share/backgrounds/arcolinux/arco-wallpaper.jpg
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
|
||||
[xin_1]
|
||||
file=/usr/share/backgrounds/arcolinux/arco-wallpaper.jpg
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
|
||||
[xin_2]
|
||||
file=/usr/share/backgrounds/arcolinux/arco-wallpaper.jpg
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
|
||||
[xin_3]
|
||||
file=/usr/share/backgrounds/arcolinux/arco-wallpaper.jpg
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
@@ -1,12 +0,0 @@
|
||||
[geometry]
|
||||
posx=421
|
||||
posy=104
|
||||
sizex=1137
|
||||
sizey=836
|
||||
|
||||
[nitrogen]
|
||||
view=icon
|
||||
recurse=true
|
||||
sort=alpha
|
||||
icon_caps=true
|
||||
dirs=/usr/share/backgrounds;
|
||||
Reference in New Issue
Block a user