docs: update
This commit is contained in:
parent
cfc0e8e4d0
commit
a6b4b085fb
2 changed files with 30 additions and 10 deletions
20
pfetch
20
pfetch
|
@ -668,6 +668,16 @@ get_memory() {
|
|||
log memory "${mem_used:-?}M / ${mem_full:-?}M" >&6
|
||||
}
|
||||
|
||||
get_de() {
|
||||
# This only supports Xorg related desktop environments though
|
||||
# this is fine as knowing the desktop envrionment on Windows,
|
||||
# macOS etc is useless (they'll always report the same value).
|
||||
#
|
||||
# Display the value of '$XDG_CURRENT_DESKTOP', if it's empty,
|
||||
# display the value of '$DESKTOP_SESSION'.
|
||||
log de "${XDG_CURRENT_DESKTOP:-$DESKTOP_SESSION}" >&6
|
||||
}
|
||||
|
||||
get_shell() {
|
||||
# Display the basename of the '$SHELL' environment variable.
|
||||
log shell "${SHELL##*/}" >&6
|
||||
|
@ -679,16 +689,6 @@ get_editor() {
|
|||
log editor "${VISUAL:-$EDITOR}" >&6
|
||||
}
|
||||
|
||||
get_de() {
|
||||
# This only supports Xorg related desktop environments though
|
||||
# this is fine as knowing the desktop envrionment on Windows,
|
||||
# macOS etc is useless (they'll always report the same value).
|
||||
#
|
||||
# Display the value of '$XDG_CURRENT_DESKTOP', if it's empty,
|
||||
# display the value of '$DESKTOP_SESSION'.
|
||||
log de "${XDG_CURRENT_DESKTOP:-$DESKTOP_SESSION}" >&6
|
||||
}
|
||||
|
||||
get_palette() {
|
||||
# Print the first 8 terminal colors. This uses the existing
|
||||
# sequences to change text color with a sequence prepended
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue