first commit
49
.Xdefaults
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# CPI Xdefaults
|
||||||
|
# wing defaults change the behavior of clients using the
|
||||||
|
# X libraries
|
||||||
|
|
||||||
|
Xft.rgba: none
|
||||||
|
|
||||||
|
*background: gray70
|
||||||
|
*foreground: black
|
||||||
|
|
||||||
|
# Xcursor*theme: whiteglass
|
||||||
|
|
||||||
|
# The rest of the defaults are client specific
|
||||||
|
|
||||||
|
# xterm*Foreground: #bbccdd
|
||||||
|
|
||||||
|
URxvt.inputMethod: ibus
|
||||||
|
|
||||||
|
# xterm*VT100*Translations: #override\n\
|
||||||
|
# Shift <KeyRelease>:insert-seven-bit()
|
||||||
|
# <Key>F3: string("xterm")
|
||||||
|
|
||||||
|
xterm*Foreground: #bfb89a
|
||||||
|
xterm*Background: #111111
|
||||||
|
xterm*Border: dark blue
|
||||||
|
xterm*ScrollBar: off
|
||||||
|
xterm*TitleBar: on
|
||||||
|
xterm*TextUnderIcon: on
|
||||||
|
xterm*AllowIconInput: on
|
||||||
|
xterm*AutoRaise: on
|
||||||
|
xterm*termtype: vt100
|
||||||
|
xterm*ttyModes: intr ^c erase ^h susp ^@ dsusp ^@ kill ^u eof ^d susp ^z
|
||||||
|
xterm*saveLines: 2048
|
||||||
|
xterm*pointerColor: #aaaaaa
|
||||||
|
|
||||||
|
xload*Foreground: #555555
|
||||||
|
xload*Background: #000000
|
||||||
|
xload*update: 3
|
||||||
|
xload*geometry: 200
|
||||||
|
|
||||||
|
xclock*Foreground: #555555
|
||||||
|
xclock*Background: #000000
|
||||||
|
|
||||||
|
xlock*mode: blank
|
||||||
|
xlock*timeout: 3
|
||||||
|
|
||||||
|
xclipboard*Foreground: #7b8c5a
|
||||||
|
xclipboard*Background: #333333
|
||||||
|
|
||||||
|
xpdf*Background: #777777
|
||||||
1
.Xresources
Normal file
@ -0,0 +1 @@
|
|||||||
|
Xft.rgba: none
|
||||||
125
.bashrc
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||||
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||||
|
# for examples
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
case $- in
|
||||||
|
*i*) ;;
|
||||||
|
*) return;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
|
# See bash(1) for more options
|
||||||
|
HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
|
# append to the history file, don't overwrite it
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||||
|
HISTSIZE=1000
|
||||||
|
HISTFILESIZE=2000
|
||||||
|
|
||||||
|
# check the window size after each command and, if necessary,
|
||||||
|
# update the values of LINES and COLUMNS.
|
||||||
|
shopt -s checkwinsize
|
||||||
|
|
||||||
|
# If set, the pattern "**" used in a pathname expansion context will
|
||||||
|
# match all files and zero or more directories and subdirectories.
|
||||||
|
#shopt -s globstar
|
||||||
|
|
||||||
|
# make less more friendly for non-text input files, see lesspipe(1)
|
||||||
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||||
|
|
||||||
|
# set variable identifying the chroot you work in (used in the prompt below)
|
||||||
|
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
||||||
|
debian_chroot=$(cat /etc/debian_chroot)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||||
|
case "$TERM" in
|
||||||
|
xterm-color|*-256color) color_prompt=non-color;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# uncomment for a colored prompt, if the terminal has the capability; turned
|
||||||
|
# off by default to not distract the user: the focus in a terminal window
|
||||||
|
# should be on the output of commands, not on the prompt
|
||||||
|
# force_color_prompt=yes
|
||||||
|
|
||||||
|
if [ -n "$force_color_prompt" ]; then
|
||||||
|
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
||||||
|
# We have color support; assume it's compliant with Ecma-48
|
||||||
|
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||||
|
# a case would tend to support setf rather than setaf.)
|
||||||
|
color_prompt=yes
|
||||||
|
else
|
||||||
|
color_prompt=
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$color_prompt" = yes ]; then
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||||||
|
else
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||||
|
fi
|
||||||
|
unset color_prompt force_color_prompt
|
||||||
|
|
||||||
|
# If this is an xterm set the title to user@host:dir
|
||||||
|
case "$TERM" in
|
||||||
|
xterm*|rxvt*)
|
||||||
|
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# enable color support of ls and also add handy aliases
|
||||||
|
if [ -x /usr/bin/dircolors ]; then
|
||||||
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
#alias dir='dir --color=auto'
|
||||||
|
#alias vdir='vdir --color=auto'
|
||||||
|
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias fgrep='fgrep --color=auto'
|
||||||
|
alias egrep='egrep --color=auto'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# colored GCC warnings and errors
|
||||||
|
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||||
|
|
||||||
|
# some more ls aliases
|
||||||
|
alias ll='ls -alF'
|
||||||
|
alias la='ls -A'
|
||||||
|
alias l='ls -CF'
|
||||||
|
alias ls='ls -CF'
|
||||||
|
|
||||||
|
# Add an "alert" alias for long running commands. Use like so:
|
||||||
|
# sleep 10; alert
|
||||||
|
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||||
|
|
||||||
|
# Alias definitions.
|
||||||
|
# You may want to put all your additions into a separate file like
|
||||||
|
# ~/.bash_aliases, instead of adding them here directly.
|
||||||
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||||
|
|
||||||
|
if [ -f ~/.bash_aliases ]; then
|
||||||
|
. ~/.bash_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
# enable programmable completion features (you don't need to enable
|
||||||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||||
|
# sources /etc/bash.bashrc).
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
setterm -cursor on
|
||||||
|
|
||||||
|
export XMODIFIERS=@im=xim
|
||||||
|
export GTK_IM_MODULE=ibus
|
||||||
|
export QT_IM_MODULE=xim
|
||||||
|
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
6 14 11 347 119
|
||||||
|
[daily]
|
||||||
|
"2019-12-14" 0 70 0
|
||||||
|
"2019-11-23" 0 0 0
|
||||||
|
"2019-11-22" 598782 391360 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-12-14" 0 70 0
|
||||||
|
"2019-11-23" 598782 391360 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"December" 0 70 0
|
||||||
|
"November" 598782 391360 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1c4i2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
5 3 0 2 120
|
||||||
|
[daily]
|
||||||
|
"2020-01-03" 6993602 346972213 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2020-01-04" 6993602 346972213 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"January" 6993602 346972213 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1i1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
6 23 10 326 119
|
||||||
|
[daily]
|
||||||
|
"2019-11-23" 628044 371777 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-11-23" 628044 371777 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"November" 628044 371777 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1u2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
3 8 0 7 120
|
||||||
|
[daily]
|
||||||
|
"2020-01-08" 57895 56264 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2020-01-11" 57895 56264 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"January" 57895 56264 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1u2i1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
3 8 0 7 120
|
||||||
|
[daily]
|
||||||
|
"2020-01-07" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2020-01-11" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"January" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1u4u1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
4 28 1 58 119
|
||||||
|
[daily]
|
||||||
|
"2019-02-28" 18758653 1904523939 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-03-02" 18758653 1904523939 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"February" 18758653 1904523939 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u1u4u2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
5 25 0 24 119
|
||||||
|
[daily]
|
||||||
|
"2019-01-25" 34496545 4440221209 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-01-26" 34496545 4440221209 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"January" 34496545 4440221209 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
5 22 10 325 119
|
||||||
|
[daily]
|
||||||
|
"2019-11-22" 5128035 20274948 0
|
||||||
|
"2019-11-21" 1616927 740563 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-11-23" 6744962 21015511 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"November" 6744962 21015511 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u2c4i2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 0 0
|
||||||
|
"2020-08-10" 0 0 0
|
||||||
|
"2020-08-03" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 0 0
|
||||||
|
"2020-08-08" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u2i1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
5 22 10 325 119
|
||||||
|
[daily]
|
||||||
|
"2019-11-21" 120143 108911 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-11-23" 120143 108911 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"November" 120143 108911 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u4
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-23" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u4c4i2
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
4 11 6 191 119
|
||||||
|
[daily]
|
||||||
|
"2019-07-11" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-07-13" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"July" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s20f0u4i1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/enp0s31f6
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-28" 0 0 0
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-24" 0 0 0
|
||||||
|
"2022-06-23" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-21" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 0 0
|
||||||
|
"2020-08-10" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/eth0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 0 0
|
||||||
|
"2020-08-10" 0 0 0
|
||||||
|
"2020-08-03" 0 0 0
|
||||||
|
"2020-08-02" 0 0 0
|
||||||
|
"2020-08-01" 0 0 0
|
||||||
|
"2020-07-31" 0 0 0
|
||||||
|
"2020-07-26" 0 0 0
|
||||||
|
"2020-07-23" 0 0 0
|
||||||
|
"2020-07-22" 0 0 0
|
||||||
|
"2020-07-21" 0 0 0
|
||||||
|
"2020-07-20" 0 0 0
|
||||||
|
"2020-07-19" 0 0 0
|
||||||
|
"2020-07-17" 0 0 0
|
||||||
|
"2020-05-18" 0 0 0
|
||||||
|
"2020-05-15" 0 0 0
|
||||||
|
"2020-05-12" 0 0 0
|
||||||
|
"2020-05-06" 0 0 0
|
||||||
|
"2020-04-26" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 0 0
|
||||||
|
"2020-08-08" 0 0 0
|
||||||
|
"2020-08-01" 0 0 0
|
||||||
|
"2020-07-25" 0 0 0
|
||||||
|
"2020-07-18" 0 0 0
|
||||||
|
"2020-05-23" 0 0 0
|
||||||
|
"2020-05-16" 0 0 0
|
||||||
|
"2020-05-09" 0 0 0
|
||||||
|
"2020-05-02" 0 0 0
|
||||||
|
"2020-04-25" 0 0 0
|
||||||
|
"2020-04-11" 0 0 0
|
||||||
|
"2020-01-18" 0 0 0
|
||||||
|
"2020-01-11" 0 0 0
|
||||||
|
"2020-01-04" 0 0 0
|
||||||
|
"2019-12-21" 0 0 0
|
||||||
|
"2019-12-14" 0 0 0
|
||||||
|
"2019-12-07" 0 0 0
|
||||||
|
"2019-11-30" 0 0 0
|
||||||
|
"2019-11-23" 0 0 0
|
||||||
|
"2019-11-09" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 0 0 0
|
||||||
|
"July" 0 0 0
|
||||||
|
"May" 0 0 0
|
||||||
|
"April" 0 0 0
|
||||||
|
"January" 0 0 0
|
||||||
|
"December" 0 0 0
|
||||||
|
"November" 0 0 0
|
||||||
|
"October" 0 0 0
|
||||||
|
"September" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/ppp0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/sit0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-22" 0 0 0
|
||||||
|
"2022-06-20" 0 0 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2021-04-07" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2021-04-10" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"April" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/tap0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
6 4 0 3 120
|
||||||
|
[daily]
|
||||||
|
"2020-01-04" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2020-01-04" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"January" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/usb0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
5 22 10 325 119
|
||||||
|
[daily]
|
||||||
|
"2019-11-22" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2019-11-23" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"November" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/vmnet1
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-28" 0 0 0
|
||||||
|
"2022-06-27" 0 235 0
|
||||||
|
"2022-06-26" 0 678 0
|
||||||
|
"2022-06-25" 0 252 0
|
||||||
|
"2022-06-24" 0 420 0
|
||||||
|
"2022-06-23" 0 708 0
|
||||||
|
"2022-06-22" 0 550 0
|
||||||
|
"2022-06-20" 76 390 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 238 0
|
||||||
|
"2020-08-03" 0 118 0
|
||||||
|
"2020-08-02" 0 247 0
|
||||||
|
"2020-08-01" 0 60 0
|
||||||
|
"2020-07-31" 0 42 0
|
||||||
|
"2020-07-26" 0 865 0
|
||||||
|
"2020-07-23" 0 30 0
|
||||||
|
"2020-07-22" 0 240 0
|
||||||
|
"2020-07-21" 0 543 0
|
||||||
|
"2020-07-20" 0 81 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 913 0
|
||||||
|
"2022-06-25" 76 2320 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 238 0
|
||||||
|
"2020-08-08" 0 365 0
|
||||||
|
"2020-08-01" 0 967 0
|
||||||
|
"2020-07-25" 0 894 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 76 3233 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 0 663 0
|
||||||
|
"July" 0 1801 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/vmnet8
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-28" 0 0 0
|
||||||
|
"2022-06-27" 31 236 0
|
||||||
|
"2022-06-26" 0 678 0
|
||||||
|
"2022-06-25" 565 253 0
|
||||||
|
"2022-06-24" 2362 420 0
|
||||||
|
"2022-06-23" 405 708 0
|
||||||
|
"2022-06-22" 215 551 0
|
||||||
|
"2022-06-20" 1830 381 0
|
||||||
|
"2022-06-19" 0 0 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 0 238 0
|
||||||
|
"2020-08-03" 135 123 0
|
||||||
|
"2020-08-02" 1556 314 0
|
||||||
|
"2020-08-01" 0 60 0
|
||||||
|
"2020-07-31" 0 41 0
|
||||||
|
"2020-07-26" 0 865 0
|
||||||
|
"2020-07-23" 0 30 0
|
||||||
|
"2020-07-22" 409 270 0
|
||||||
|
"2020-07-21" 0 543 0
|
||||||
|
"2020-07-20" 0 81 0
|
||||||
|
"2020-07-19" 0 287 0
|
||||||
|
"2020-07-17" 0 54 0
|
||||||
|
"2020-05-18" 0 100 0
|
||||||
|
"2020-05-15" 0 65 0
|
||||||
|
"2020-05-12" 0 225 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 31 914 0
|
||||||
|
"2022-06-25" 5377 2313 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 0 238 0
|
||||||
|
"2020-08-08" 1691 437 0
|
||||||
|
"2020-08-01" 0 966 0
|
||||||
|
"2020-07-25" 409 1211 0
|
||||||
|
"2020-07-18" 0 54 0
|
||||||
|
"2020-05-23" 0 100 0
|
||||||
|
"2020-05-16" 0 290 0
|
||||||
|
"2020-05-09" 0 25 0
|
||||||
|
"2020-05-02" 0 21 0
|
||||||
|
"2020-04-25" 0 18 0
|
||||||
|
"2020-04-11" 2882 308 0
|
||||||
|
"2020-01-18" 0 21 0
|
||||||
|
"2020-01-11" 0 2014 0
|
||||||
|
"2020-01-04" 0 2280 0
|
||||||
|
"2019-12-21" 255 381 0
|
||||||
|
"2019-12-14" 0 1590 0
|
||||||
|
"2019-12-07" 0 1889 0
|
||||||
|
"2019-11-30" 0 1340 0
|
||||||
|
"2019-11-23" 793 3480 0
|
||||||
|
"2019-11-09" 0 226 0
|
||||||
|
[monthly]
|
||||||
|
"June" 5408 3227 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 1691 735 0
|
||||||
|
"July" 409 2171 0
|
||||||
|
"May" 0 415 0
|
||||||
|
"April" 2882 347 0
|
||||||
|
"January" 0 3979 0
|
||||||
|
"December" 255 4196 0
|
||||||
|
"November" 793 5046 0
|
||||||
|
"October" 1348 485 0
|
||||||
|
"September" 0 687 0
|
||||||
|
"August" 0 3113 0
|
||||||
75
.gkrellm2/data/net/wlan0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-27" 0 0 0
|
||||||
|
"2022-06-26" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"2022-06-23" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 0 0 0
|
||||||
|
"2022-06-25" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
[monthly]
|
||||||
|
"June" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
75
.gkrellm2/data/net/wlp4s0
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
2
|
||||||
|
wday mday month yday year
|
||||||
|
2 28 5 178 122
|
||||||
|
[daily]
|
||||||
|
"2022-06-28" 0 0 0
|
||||||
|
"2022-06-27" 1116474196 26734296 0
|
||||||
|
"2022-06-26" 5992252529 252599176 0
|
||||||
|
"2022-06-25" 265978991 21228015 0
|
||||||
|
"2022-06-24" 6694958910 111073648 0
|
||||||
|
"2022-06-23" 806244508 63454697 0
|
||||||
|
"2022-06-22" 939241387 71507373 0
|
||||||
|
"2022-06-21" 3052072427 104934938 0
|
||||||
|
"2022-06-20" 41511554 5374529 0
|
||||||
|
"2022-06-19" 882253362 25151156 0
|
||||||
|
"2022-03-27" 0 0 0
|
||||||
|
"2022-03-26" 0 0 0
|
||||||
|
"2022-03-24" 0 0 0
|
||||||
|
"2022-03-23" 0 0 0
|
||||||
|
"2022-03-22" 0 0 0
|
||||||
|
"2022-03-14" 0 0 0
|
||||||
|
"2022-03-07" 0 0 0
|
||||||
|
"2020-08-11" 182425748 10171988 0
|
||||||
|
"2020-08-03" 34791835 4374748 0
|
||||||
|
"2020-08-02" 741728142 27882505 0
|
||||||
|
"2020-08-01" 4006296 657228 0
|
||||||
|
"2020-07-31" 41085740 3189000 0
|
||||||
|
"2020-07-26" 386099980 17401544 0
|
||||||
|
"2020-07-23" 18864770 160287 0
|
||||||
|
"2020-07-22" 335660008 9431182 0
|
||||||
|
"2020-07-21" 351125577 12676473 0
|
||||||
|
"2020-07-20" 231297194 5508968 0
|
||||||
|
"2020-07-19" 637195346 33561341 0
|
||||||
|
"2020-07-17" 20859288 1557775 0
|
||||||
|
"2020-05-18" 2886261 459265 0
|
||||||
|
"2020-05-15" 325917233 6305672 0
|
||||||
|
[weekly]
|
||||||
|
"2022-07-02" 7108726725 279333472 0
|
||||||
|
"2022-06-25" 12682261139 402724356 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-04-02" 0 0 0
|
||||||
|
"2022-03-19" 0 0 0
|
||||||
|
"2022-03-12" 0 0 0
|
||||||
|
"2020-08-15" 182425748 10171988 0
|
||||||
|
"2020-08-08" 776519977 32257253 0
|
||||||
|
"2020-08-01" 431192016 21247772 0
|
||||||
|
"2020-07-25" 1574142895 61338251 0
|
||||||
|
"2020-07-18" 20859288 1557775 0
|
||||||
|
"2020-05-23" 2886261 459265 0
|
||||||
|
"2020-05-16" 384919417 11307525 0
|
||||||
|
"2020-05-09" 3321240 453138 0
|
||||||
|
"2020-05-02" 39701942 2613172 0
|
||||||
|
"2020-04-25" 6749 8643 0
|
||||||
|
"2020-04-11" 1127192160 80339932 0
|
||||||
|
"2020-01-18" 668563 320564 0
|
||||||
|
"2020-01-11" 382472162 416528730 0
|
||||||
|
"2020-01-04" 3907911929 958290175 0
|
||||||
|
"2019-12-21" 1625199874 19426015 0
|
||||||
|
"2019-12-14" 1828417449 78204555 0
|
||||||
|
"2019-12-07" 3570926824 104227132 0
|
||||||
|
"2019-11-30" 401448560 79454237 0
|
||||||
|
"2019-11-23" 5232382347 575850373 0
|
||||||
|
"2019-11-09" 78839110 5208767 0
|
||||||
|
[monthly]
|
||||||
|
"June" 19790987864 682057828 0
|
||||||
|
"March" 0 0 0
|
||||||
|
"August" 962952021 43086469 0
|
||||||
|
"July" 2022187903 83486570 0
|
||||||
|
"May" 391126918 12219928 0
|
||||||
|
"April" 1166900851 82961747 0
|
||||||
|
"January" 3460324928 1361246801 0
|
||||||
|
"December" 7855271873 215750370 0
|
||||||
|
"November" 5712670017 660513377 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
|
"---" 0 0 0
|
||||||
1
.gkrellm2/data/startup_position
Normal file
@ -0,0 +1 @@
|
|||||||
|
0 164
|
||||||
37
.gkrellm2/sensor-config
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
sensor sensor_config_version 1
|
||||||
|
sensor sensor_sysdep_private 2
|
||||||
|
sensor sensor_float_factor 10000
|
||||||
|
sensor gkrellm_float_factor 1000
|
||||||
|
sensor "temp" "thermal_zone0" 10000 0 0 0
|
||||||
|
sensor "BAT1" "IBM ACPI Battery 1" 10000 0 0 0
|
||||||
|
sensor "BAT2" "IBM ACPI Battery 2" 10000 0 0 0
|
||||||
|
sensor "CPU" "IBM ACPI CPU" 10000 0 1 0
|
||||||
|
sensor "GPU" "IBM ACPI GPU" 10000 0 0 0
|
||||||
|
sensor "HDD" "IBM ACPI HDD" 10000 0 0 0
|
||||||
|
sensor "PCI" "IBM ACPI Mini PCI Module" 10000 0 0 0
|
||||||
|
sensor "temp1" "acpitz@0/temp1" 0 0 0 0
|
||||||
|
sensor "Package id 0" "coretemp@0/temp1" 0 0 0 0
|
||||||
|
sensor "Core 0" "coretemp@0/temp2" 0 0 0 0
|
||||||
|
sensor "Core 1" "coretemp@0/temp3" 0 0 0 0
|
||||||
|
sensor "temp1" "iwlwifi_1@0/temp1" 0 0 0 0
|
||||||
|
sensor "temp1" "pch_skylake@0/temp1" 0 0 0 0
|
||||||
|
sensor "temp" "thermal_zone1" 10000 0 0 0
|
||||||
|
sensor "temp" "thermal_zone2" 10000 0 0 0
|
||||||
|
sensor "temp" "thermal_zone3" 10000 0 0 0
|
||||||
|
sensor "temp1" "thinkpad@0/temp1" 0 0 0 0
|
||||||
|
sensor "temp2" "thinkpad@0/temp2" 0 0 0 0
|
||||||
|
sensor "temp3" "thinkpad@0/temp3" 0 0 0 0
|
||||||
|
sensor "temp4" "thinkpad@0/temp4" 0 0 0 0
|
||||||
|
sensor "temp5" "thinkpad@0/temp5" 0 0 0 0
|
||||||
|
sensor "temp6" "thinkpad@0/temp6" 0 0 0 0
|
||||||
|
sensor "temp7" "thinkpad@0/temp7" 0 0 0 0
|
||||||
|
sensor "temp8" "thinkpad@0/temp8" 0 0 0 0
|
||||||
|
sensor "GPU" "nVidia GPU Core" 10000 0 1 0
|
||||||
|
sensor "Fan" "IBM ACPI Fan Sensor" 10000 0 1 0
|
||||||
|
sensor "fan1" "thinkpad@0/fan1" 0 0 0 0
|
||||||
|
sensor "in0" "BAT0@0/in0" 0 0 0 0
|
||||||
|
sensor "in0" "BAT1@0/in0" 0 0 0 0
|
||||||
|
sensor "in0" "ucsi_source_psy_USBC000:001@0/in0" 0 0 0 0
|
||||||
|
sensor units_fahrenheit 0
|
||||||
|
sensor show_units 1
|
||||||
|
sensor volt_display_mode 0
|
||||||
6
.gkrellm2/theme_config
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/home/dphys/.gkrellm2/themes/black
|
||||||
|
0
|
||||||
|
Serif 11
|
||||||
|
Serif 9
|
||||||
|
Serif 8
|
||||||
|
100
|
||||||
BIN
.gkrellm2/themes/black/bg_chart.png
Normal file
|
After Width: | Height: | Size: 181 B |
BIN
.gkrellm2/themes/black/bg_grid.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
.gkrellm2/themes/black/bg_meter.png
Normal file
|
After Width: | Height: | Size: 157 B |
BIN
.gkrellm2/themes/black/bg_panel.png
Normal file
|
After Width: | Height: | Size: 160 B |
BIN
.gkrellm2/themes/black/decal_alarm.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
.gkrellm2/themes/black/decal_misc.png
Normal file
|
After Width: | Height: | Size: 257 B |
BIN
.gkrellm2/themes/black/decal_misc_test.png
Normal file
|
After Width: | Height: | Size: 266 B |
BIN
.gkrellm2/themes/black/decal_warn.png
Normal file
|
After Width: | Height: | Size: 143 B |
BIN
.gkrellm2/themes/black/frame_bottom.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
.gkrellm2/themes/black/frame_left.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
.gkrellm2/themes/black/frame_right.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
.gkrellm2/themes/black/frame_top.png
Normal file
|
After Width: | Height: | Size: 129 B |
41
.gkrellm2/themes/black/gkrellmrc
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
author = hadron <hadron@antisocial.com>
|
||||||
|
|
||||||
|
chart_in_color = #c27200
|
||||||
|
chart_in_color_grid = gray20
|
||||||
|
chart_out_color = #c27200
|
||||||
|
chart_out_color_grid = gray20
|
||||||
|
|
||||||
|
bg_grid_mode = 1
|
||||||
|
|
||||||
|
rx_led_x = 2
|
||||||
|
rx_led_y = 1
|
||||||
|
tx_led_x = -2
|
||||||
|
tx_led_y = 1
|
||||||
|
|
||||||
|
timer_time_x = 2
|
||||||
|
timer_button_x = -2
|
||||||
|
|
||||||
|
krell_slider_depth = 1
|
||||||
|
krell_slider_x_hot = 1
|
||||||
|
|
||||||
|
StyleChart *.border = 2,2,2,2
|
||||||
|
StyleChart *.textcolor = #c27200 black none
|
||||||
|
|
||||||
|
StylePanel *.border = 2,2,2,2
|
||||||
|
StylePanel *.textcolor = #c27200 black none
|
||||||
|
StylePanel *.label_position = 50
|
||||||
|
StylePanel *.krell_depth = 1
|
||||||
|
|
||||||
|
StyleMeter *.border = 2,2,2,2
|
||||||
|
StyleMeter *.textcolor = #c27200 black none
|
||||||
|
StyleMeter *.label_position = 50
|
||||||
|
StyleMeter fs.label_position = 0
|
||||||
|
StyleMeter cal.font = large_font
|
||||||
|
StyleMeter clock.font - large_font
|
||||||
|
|
||||||
|
decal_alarm_frames = 10
|
||||||
|
decal_warn_frames = 10
|
||||||
|
|
||||||
|
large_font = "-adobe-helvetica-medium-r-normal-*-*-100-*-*-p-*-iso8859-1"
|
||||||
|
normal_font = "-adobe-helvetica-medium-r-normal-*-*-100-*-*-p-*-iso8859-1"
|
||||||
|
small_font = "-adobe-helvetica-medium-r-normal-*-*-80-*-*-p-*-iso8859-1"
|
||||||
BIN
.gkrellm2/themes/black/krell_meter.png
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
.gkrellm2/themes/black/krell_panel.png
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
.gkrellm2/themes/black/krell_slider.png
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
.gkrellm2/themes/black/net/decal_net_leds.png
Normal file
|
After Width: | Height: | Size: 173 B |
BIN
.gkrellm2/themes/black/timer/decal_timer_button.png
Normal file
|
After Width: | Height: | Size: 202 B |
152
.gkrellm2/user-config
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
### GKrellM user config. Auto written, do not edit (usually) ###
|
||||||
|
### Version 2.3.11 ###
|
||||||
|
enable_hostname 1
|
||||||
|
hostname_short 0
|
||||||
|
enable_sysname 0
|
||||||
|
mbmon_port 0
|
||||||
|
sticky_state 0
|
||||||
|
dock_type 0
|
||||||
|
decorated 0
|
||||||
|
skip_taskbar 0
|
||||||
|
skip_pager 0
|
||||||
|
above 1
|
||||||
|
below 0
|
||||||
|
track_gtk_theme_name 0
|
||||||
|
default_track_theme "Default"
|
||||||
|
save_position 1
|
||||||
|
chart_width 100
|
||||||
|
update_HZ 4
|
||||||
|
allow_multiple_instances 0
|
||||||
|
float_factor 1000
|
||||||
|
hostname sysname_mode 1
|
||||||
|
clock_cal clock_launch
|
||||||
|
clock_cal clock_tooltip
|
||||||
|
clock_cal cal_launch
|
||||||
|
clock_cal cal_tooltip
|
||||||
|
clock_cal hour_chime_command
|
||||||
|
clock_cal quarter_chime_command
|
||||||
|
clock_cal loop_chime_enable 0
|
||||||
|
clock_cal clock_options 1
|
||||||
|
clock_cal cal_options 1
|
||||||
|
clock_cal cal_format <small>%a %e %b</small>
|
||||||
|
clock_cal clock_format %l:%M <span foreground="$A"></span>
|
||||||
|
cpu enable 0
|
||||||
|
cpu smp_mode 0
|
||||||
|
cpu enabled cpu 0
|
||||||
|
cpu extra_info cpu 1
|
||||||
|
cpu chart_config cpu 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
cpu enabled cpu0 1
|
||||||
|
cpu extra_info cpu0 1
|
||||||
|
cpu chart_config cpu0 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
cpu enabled cpu1 1
|
||||||
|
cpu extra_info cpu1 1
|
||||||
|
cpu chart_config cpu1 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
cpu enabled cpu2 1
|
||||||
|
cpu extra_info cpu2 1
|
||||||
|
cpu chart_config cpu2 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
cpu enabled cpu3 1
|
||||||
|
cpu extra_info cpu3 1
|
||||||
|
cpu chart_config cpu3 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
cpu show_panel_labels 1
|
||||||
|
cpu omit_nice_mode 0
|
||||||
|
cpu config_tracking 0
|
||||||
|
cpu sensor_mode 0
|
||||||
|
cpu text_format $T
|
||||||
|
proc enable 1 1
|
||||||
|
proc launch
|
||||||
|
proc tooltip_comment
|
||||||
|
proc sensor_mode 0
|
||||||
|
proc text_format \w88\a$p\f procs\n\e$u\f users
|
||||||
|
proc chart_config 40 100 0 0 0 0 : 1 0 0 0 500 : 0 0 0 0 500
|
||||||
|
disk assign_method 2
|
||||||
|
disk device Disk 0 0 0 1 1 0 0 Disk
|
||||||
|
disk chart_config Disk 40 30000000 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
disk device sda 0 0 45 0 1 -1 0 sda
|
||||||
|
disk device sda1 0 0 45 0 1 1 0 sda1
|
||||||
|
disk device sda2 0 0 45 0 1 2 0 sda2
|
||||||
|
disk device sda3 0 0 45 0 1 3 0 sda3
|
||||||
|
disk text_format $T
|
||||||
|
inet text_format all \t$a\f $l\N$A\f $L
|
||||||
|
inet update_interval all 1
|
||||||
|
net enables enp0s20f0u4 1 1 0
|
||||||
|
net enables enp0s20f0u4i1 1 1 0
|
||||||
|
net chart_config enp0s20f0u4i1 40 100 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables enp0s20f0u2c4i2 1 1 0
|
||||||
|
net enables enp0s31f6 1 1 0
|
||||||
|
net chart_config enp0s31f6 40 2000000 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables eth0 1 1 0
|
||||||
|
net enables lo 0 1 0
|
||||||
|
net enables ppp0 1 1 0
|
||||||
|
net chart_config ppp0 40 2000 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables sit0 1 1 0
|
||||||
|
net enables vmnet1 1 1 0
|
||||||
|
net chart_config vmnet1 40 5 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables vmnet8 1 1 0
|
||||||
|
net chart_config vmnet8 40 7 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables wlan0 1 1 0
|
||||||
|
net chart_config wlan0 40 300 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net enables wlp4s0 1 1 0
|
||||||
|
net chart_config wlp4s0 40 300000 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
net timer_enabled 0
|
||||||
|
net timer_seconds 1
|
||||||
|
net timer_iface none
|
||||||
|
net timer_on
|
||||||
|
net timer_off
|
||||||
|
net text_format $T\b\c\f$L
|
||||||
|
net reset_mday 1
|
||||||
|
net net_enabled_as_default 1
|
||||||
|
net net_stats_window_height 200
|
||||||
|
meminfo mem_meter 1 0 0
|
||||||
|
meminfo swap_meter 1 0
|
||||||
|
meminfo swap_chart 0 1
|
||||||
|
meminfo chart_config 20 1000 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
|
||||||
|
meminfo mem_launch
|
||||||
|
meminfo mem_tooltip
|
||||||
|
meminfo mem_data_format $t - $f free
|
||||||
|
meminfo swap_launch
|
||||||
|
meminfo swap_tooltip
|
||||||
|
meminfo swap_data_format $t - $f free
|
||||||
|
meminfo text_format $T
|
||||||
|
fs fs_check_timeout 2
|
||||||
|
fs nfs_check_timeout 16
|
||||||
|
fs auto_eject 0
|
||||||
|
fs binary_units 0
|
||||||
|
fs data_format $t - $f free
|
||||||
|
mail mailbox-local mbox /var/mail/dphys
|
||||||
|
mail mua
|
||||||
|
mail notify
|
||||||
|
mail fetch_command
|
||||||
|
mail remote_check_timeout 5
|
||||||
|
mail local_check_timeout 4
|
||||||
|
mail fetch_check_is_local 0
|
||||||
|
mail msg_count_mode 0
|
||||||
|
mail animation_select_mode 3
|
||||||
|
mail fetch_check_only_mode 0
|
||||||
|
mail reset_remote_mode 0
|
||||||
|
mail unseen_is_new 0
|
||||||
|
mail enable 0 0 0 0
|
||||||
|
mail animation_continuous 0
|
||||||
|
mail show_tooltip 1
|
||||||
|
mail mh_seq_ignore 0
|
||||||
|
battery enable 1
|
||||||
|
battery enable_composite 1
|
||||||
|
battery estimate_time 0
|
||||||
|
battery estimate_time_discharge 1500
|
||||||
|
battery estimate_time_charge 3000
|
||||||
|
battery estimate_time_charge_model 0
|
||||||
|
battery full_cap_fallback 5000
|
||||||
|
battery poll_interval 5
|
||||||
|
battery launch1
|
||||||
|
battery tooltip_comment
|
||||||
|
battery alert_units_percent 1
|
||||||
|
battery display_mode 0 0
|
||||||
|
battery display_mode 0 1
|
||||||
|
battery alert_config alarm_command xmessage LOW BATTERY
|
||||||
|
battery alert_config warn_command xmessage LOW BATTERY 5%
|
||||||
|
battery alert_config values 1 0 1 0
|
||||||
|
battery alert_config repeat 0 0
|
||||||
|
battery alert_config limits 0 0 15000 5000
|
||||||
|
battery alert_config id_string battery
|
||||||
|
uptime enable 1
|
||||||
|
uptime launch
|
||||||
|
uptime tooltip
|
||||||
2886
.retroarch.cfg
Normal file
5
.twm/close
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#define close_width 11
|
||||||
|
#define close_height 11
|
||||||
|
static unsigned char close_bits[] = {
|
||||||
|
0x00, 0x00, 0x06, 0x03, 0x8e, 0x03, 0xdc, 0x01, 0xf8, 0x00, 0x70, 0x00,
|
||||||
|
0xf8, 0x00, 0xdc, 0x01, 0x8e, 0x03, 0x06, 0x03, 0x00, 0x00};
|
||||||
5
.twm/fullsize
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#define fullsize_width 11
|
||||||
|
#define fullsize_height 11
|
||||||
|
static unsigned char fullsize_bits[] = {
|
||||||
|
0x00, 0x00, 0xfc, 0x01, 0xfe, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
|
||||||
|
0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0xfc, 0x01, 0x00, 0x00};
|
||||||
5
.twm/iconify
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#define icon_width 11
|
||||||
|
#define icon_height 11
|
||||||
|
static unsigned char icon_bits[] = {
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x02, 0x02, 0x02, 0x02,
|
||||||
|
0xfe, 0x03, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||||
5
.twm/resize
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#define resize_width 11
|
||||||
|
#define resize_height 11
|
||||||
|
static unsigned char resize_bits[] = {
|
||||||
|
0x00, 0x00, 0xfc, 0x00, 0x02, 0x01, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03,
|
||||||
|
0x02, 0x03, 0x02, 0x03, 0xfc, 0x03, 0xf8, 0x01, 0x00, 0x00};
|
||||||
14
.twm/xlogo32
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#define xlogo32_width 32
|
||||||
|
#define xlogo32_height 32
|
||||||
|
static unsigned char xlogo32_bits[] = {
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0xfc, 0x03, 0x00, 0x20, 0xf8, 0x07, 0x00, 0x30, 0xf8, 0x07, 0x00, 0x18,
|
||||||
|
0xf0, 0x0f, 0x00, 0x0c, 0xe0, 0x1f, 0x00, 0x06, 0xc0, 0x3f, 0x00, 0x06,
|
||||||
|
0xc0, 0x3f, 0x00, 0x03, 0x80, 0x7f, 0x80, 0x01, 0x00, 0xff, 0xc0, 0x00,
|
||||||
|
0x00, 0xfe, 0x61, 0x00, 0x00, 0xfe, 0x31, 0x00, 0x00, 0xfc, 0x33, 0x00,
|
||||||
|
0x00, 0xf8, 0x1b, 0x00, 0x00, 0xf0, 0x0d, 0x00, 0x00, 0xf0, 0x0e, 0x00,
|
||||||
|
0x00, 0x60, 0x1f, 0x00, 0x00, 0xb0, 0x3f, 0x00, 0x00, 0x98, 0x7f, 0x00,
|
||||||
|
0x00, 0x98, 0x7f, 0x00, 0x00, 0x0c, 0xff, 0x00, 0x00, 0x06, 0xfe, 0x01,
|
||||||
|
0x00, 0x03, 0xfc, 0x03, 0x80, 0x01, 0xfc, 0x03, 0xc0, 0x00, 0xf8, 0x07,
|
||||||
|
0xc0, 0x00, 0xf0, 0x0f, 0x60, 0x00, 0xe0, 0x1f, 0x30, 0x00, 0xe0, 0x1f,
|
||||||
|
0x18, 0x00, 0xc0, 0x3f, 0x00, 0x00, 0x00, 0x00};
|
||||||
189
.twmrc
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
#---------------------------------
|
||||||
|
# CPI # PROJ. : DT.R01.twmrc
|
||||||
|
# # FILE : .twmrc
|
||||||
|
# + # VER. : 20220228.0718UTC
|
||||||
|
# + # EMAIL : hal@clockworkpi.com
|
||||||
|
# +++ # HOST : clockworkpi.com
|
||||||
|
#---------------------------------
|
||||||
|
|
||||||
|
NoGrabServer
|
||||||
|
RestartPreviousState
|
||||||
|
DecorateTransients
|
||||||
|
RandomPlacement
|
||||||
|
BorderWidth 2
|
||||||
|
NoHighlight
|
||||||
|
OpaqueMove
|
||||||
|
MenuBorderWidth 1
|
||||||
|
NoMenuShadows
|
||||||
|
|
||||||
|
NoDefaults
|
||||||
|
LeftTitleButton "~/.twm/close" = f.delete
|
||||||
|
RightTitleButton "~/.twm/iconify" = f.iconify
|
||||||
|
RightTitleButton "~/.twm/resize" = f.resize
|
||||||
|
RightTitleButton "~/.twm/fullsize" = f.fullzoom
|
||||||
|
|
||||||
|
TitleFont "-adobe-helvetica-bold-r-normal--*-100-*-*-*-*-*-*"
|
||||||
|
ResizeFont "-adobe-helvetica-bold-r-normal--*-100-*-*-*-*-*-*"
|
||||||
|
MenuFont "-misc-fixed-medium-r-normal--15-*-*-*-*-*-*-*"
|
||||||
|
IconFont "-adobe-helvetica-bold-r-normal--*-100-*-*-*-*-*-*"
|
||||||
|
IconManagerFont "-adobe-helvetica-bold-r-normal--*-100-*-*-*"
|
||||||
|
|
||||||
|
Color
|
||||||
|
{
|
||||||
|
BorderColor "grey30"
|
||||||
|
DefaultBackground "rgb:5/5/5"
|
||||||
|
DefaultForeground "gray80"
|
||||||
|
TitleBackground "rgb:5/5/5"
|
||||||
|
TitleForeground "gray80"
|
||||||
|
MenuBackground "rgb:5/5/5"
|
||||||
|
MenuForeground "gray80"
|
||||||
|
MenuTitleBackground "gray80"
|
||||||
|
MenuTitleForeground "rgb:5/5/5"
|
||||||
|
MenuBorderColor "gray60"
|
||||||
|
IconBackground "rgb:4/4/4"
|
||||||
|
IconForeground "gray80"
|
||||||
|
IconBorderColor "gray70"
|
||||||
|
IconManagerBackground "rgb:5/5/5"
|
||||||
|
IconManagerForeground "gray80"
|
||||||
|
}
|
||||||
|
|
||||||
|
Cursors
|
||||||
|
{
|
||||||
|
Menu "hand2"
|
||||||
|
}
|
||||||
|
|
||||||
|
ForceIcons
|
||||||
|
Icons
|
||||||
|
{
|
||||||
|
"xterm" "~/.twm/xlogo32"
|
||||||
|
"vmplayer" "~/.twm/xlogo32"
|
||||||
|
"thunderbird" "~/.twm/xlogo32"
|
||||||
|
"org.remmina.Remmina" "~/.twm/xlogo32"
|
||||||
|
}
|
||||||
|
|
||||||
|
MoveDelta 3
|
||||||
|
Function "move-or-lower" { f.move f.deltastop f.lower }
|
||||||
|
Function "move-or-raise" { f.move f.deltastop f.raise }
|
||||||
|
Function "move-or-iconify" { f.move f.deltastop f.iconify }
|
||||||
|
|
||||||
|
Button1 = : root : f.menu "main"
|
||||||
|
Button3 = : root : f.menu "exec"
|
||||||
|
Button1 = m : window|icon : f.function "move-or-raise"
|
||||||
|
Button2 = m : window|icon : f.iconify
|
||||||
|
Button3 = m : window|icon : f.resize
|
||||||
|
Button1 = : title : f.function "move-or-raise"
|
||||||
|
Button2 = : title : f.raiselower
|
||||||
|
Button1 = : icon : f.function "move-or-iconify"
|
||||||
|
Button2 = : icon : f.iconify
|
||||||
|
Button1 = : iconmgr : f.iconify
|
||||||
|
Button2 = : iconmgr : f.iconify
|
||||||
|
|
||||||
|
NoTitle
|
||||||
|
{
|
||||||
|
"gkrellm"
|
||||||
|
}
|
||||||
|
|
||||||
|
menu "main"
|
||||||
|
{
|
||||||
|
":: Dphys ::" f.title
|
||||||
|
"Raise..." f.raise
|
||||||
|
"Lower..." f.lower
|
||||||
|
"Focus..." f.focus
|
||||||
|
"Unfocus..." f.unfocus
|
||||||
|
"Show Iconmgr" ("gray80":"#445255") f.showiconmgr
|
||||||
|
"Hide Iconmgr" ("gray80":"#445255") f.hideiconmgr
|
||||||
|
"Kill..." f.destroy
|
||||||
|
"Restart TWM" f.restart
|
||||||
|
"Exit" ("gray80":"#773333") f.menu "exit"
|
||||||
|
}
|
||||||
|
|
||||||
|
menu "exit"
|
||||||
|
{
|
||||||
|
"Are you sure ?" ("gray80":"#773333") f.title
|
||||||
|
"Shutdown" f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -bc -T 'Warning! System Shutdown' -fs 12 -geometry 80x12 -bg '#332211' -fg '#dc8700' -e sudo /usr/sbin/halt -p &"
|
||||||
|
"No" f.nop
|
||||||
|
"Yes" f.quit
|
||||||
|
}
|
||||||
|
|
||||||
|
menu "exec"
|
||||||
|
{
|
||||||
|
":: Applications ::" f.title
|
||||||
|
" Xterm (Ctrl-Alt-t)" ("gray80":"#20404b") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 &"
|
||||||
|
" Xterm in Orange" ("gray80":"#864b2d") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 -fg '#dc8700' &"
|
||||||
|
" CRT terminal" ("gray80":"#664400") f.exec "exec /usr/bin/cool-retro-term&"
|
||||||
|
" CMUS (Ctrl-Alt-m)" ("gray80":"#445255") f.exec "exec xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 -e cmus &"
|
||||||
|
" ALSA Mixer" ("gray80":"#445255") f.exec "alsamixergui &"
|
||||||
|
" Network... (Ctrl-Alt-n)" ("gray80":"#2a3639") f.exec "exec /usr/bin/xterm +sb -T 'Network Manager' -fa 'fixed' -fs 12 -geometry 80x24 -e sudo /usr/bin/nmtui &"
|
||||||
|
" Bluetooth (Ctrl-Alt-b)" ("gray80":"#2a3639") f.exec "exec /usr/bin/xterm +sb -T 'Bluetoothctl' -fa 'fixed' -fs 12 -geometry 80x24 -e /usr/bin/bluetoothctl &"
|
||||||
|
" Chromium (Ctrl-Alt-c)" ("gray80":"#3a4649") f.exec "exec /usr/bin/chromium --incognito &"
|
||||||
|
" Chrome (Ctrl-Alt-g)" ("gray80":"#3a4649") f.exec "exec /usr/bin/google-chrome --incognito &"
|
||||||
|
" ELinks (Ctrl-Alt-e)" ("gray80":"#3a4649") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 100x24 -e /usr/bin/elinks &"
|
||||||
|
" Remmina (Ctrl-Alt-r)" ("gray80":"#3a4649") f.exec "exec /usr/bin/remmina &"
|
||||||
|
" VIM" ("gray80":"#445255") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 100x24 -e /usr/bin/vim &"
|
||||||
|
" Emacs" ("gray80":"#445255") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 100x24 -e /usr/bin/emacs -nw &"
|
||||||
|
" Tilde" ("gray80":"#445255") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 100x24 -e /usr/bin/tilde &"
|
||||||
|
" Sublime (Ctrl-Alt-s)" ("gray80":"#445255") f.exec "exec /home/dphys/bin/sublime &"
|
||||||
|
" Obsidian (Ctrl-Alt-o)" ("gray80":"#445255") f.exec "exec /usr/bin/obsidian &"
|
||||||
|
" VSCode (Ctrl-Alt-v)" ("gray80":"#445255") f.exec "exec /home/dphys/bin/code &"
|
||||||
|
" Basic Calc" ("gray80":"#314852") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 -e /usr/bin/bc -l &"
|
||||||
|
" Gnuplot" ("gray80":"#314852") f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 -e /usr/bin/gnuplot &"
|
||||||
|
" DosBox" ("gray80":"#20404b") f.exec "exec /usr/bin/dosbox &"
|
||||||
|
" Chocolate-Doom" ("gray80":"#20404b") f.exec "SDL_RENDER_DRIVER=software /usr/games/chocolate-doom &"
|
||||||
|
" Blender" ("gray80":"#445255") f.exec "exec ~/bin/blender &"
|
||||||
|
" GIMP" ("gray80":"#445255") f.exec "exec /usr/bin/gimp &"
|
||||||
|
" Inkscape" ("gray80":"#445255") f.exec "exec /usr/bin/inkscape &"
|
||||||
|
" Xfig" ("gray80":"#445255") f.exec "exec /usr/bin/xfig &"
|
||||||
|
" Utilities" ("gray80":"#335533") f.menu "Utilities"
|
||||||
|
}
|
||||||
|
|
||||||
|
menu "Utilities"
|
||||||
|
{
|
||||||
|
":: Utilities ::" f.title
|
||||||
|
" Nedit" f.exec "exec /usr/bin/nedit &"
|
||||||
|
" Xpdf" f.exec "exec /usr/bin/xpdf &"
|
||||||
|
" Xcalc" ("gray80":"#314852") f.exec "exec /usr/bin/xcalc &"
|
||||||
|
" Xaos" ("gray80":"#314852") f.exec "exec /usr/bin/xaos &"
|
||||||
|
" XClock" f.exec "exec /usr/bin/xclock &"
|
||||||
|
" OClock" f.exec "exec /usr/bin/oclock &"
|
||||||
|
" Xeyes" f.exec "exec /usr/bin/xeyes &"
|
||||||
|
" Xmag" f.exec "exec /usr/bin/xmag &"
|
||||||
|
" aRandr" f.exec "exec /usr/bin/arandr &"
|
||||||
|
" Gkrellm" f.exec "/usr/bin/gkrellm &"
|
||||||
|
}
|
||||||
|
|
||||||
|
WindowRing
|
||||||
|
{
|
||||||
|
"xterm"
|
||||||
|
"xpdf"
|
||||||
|
}
|
||||||
|
|
||||||
|
"t" = m | c: all : f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 &"
|
||||||
|
"m" = m | c: all : f.exec "exec xterm +sb -fa 'fixed' -fs 12 -geometry 80x24 -e cmus &"
|
||||||
|
"n" = m | c: all : f.exec "exec /usr/bin/xterm +sb -T 'Network Manager' -fa 'fixed' -fs 12 -geometry 80x24 -e sudo /usr/bin/nmtui &"
|
||||||
|
"b" = m | c: all : f.exec "exec /usr/bin/xterm +sb -T 'Bluetoothctl' -fa 'fixed' -fs 12 -geometry 80x24 -e /usr/bin/bluetoothctl &"
|
||||||
|
"c" = m | c: all : f.exec "exec /usr/bin/chromium --incognito &"
|
||||||
|
"g" = m | c: all : f.exec "exec /usr/bin/google-chrome --incognito &"
|
||||||
|
"e" = m | c: all : f.exec "exec /usr/bin/xterm +sb -fa 'fixed' -fs 12 -geometry 100x24 -e /usr/bin/elinks &"
|
||||||
|
"s" = m | c: all : f.exec "exec /home/dphys/bin/sublime &"
|
||||||
|
"o" = m | c: all : f.exec "exec /usr/bin/obsidian &"
|
||||||
|
"v" = m | c: all : f.exec "exec /home/dphys/bin/code &"
|
||||||
|
"r" = m | c: all : f.exec "exec /usr/bin/remmina &"
|
||||||
|
|
||||||
|
"i" = m | s: all : f.iconify
|
||||||
|
"x" = m | s: all : f.delete
|
||||||
|
"F12" = : all : f.fullzoom
|
||||||
|
"F9" = : all : f.focus
|
||||||
|
"Tab" = m : all : f.warpring "next"
|
||||||
|
"f" = m | s: all: f.focus
|
||||||
|
"u" = m | s: all: f.unfocus
|
||||||
|
"n" = m : all : f.warpring "next"
|
||||||
|
"n" = m|s : all : f.warpring "prev"
|
||||||
|
|
||||||
|
"XF86MonBrightnessUp" = : all : f.exec "exec /usr/local/bin/cpi-backlight up"
|
||||||
|
"XF86MonBrightnessDown" = : all : f.exec "exec /usr/local/bin/cpi-backlight down"
|
||||||
|
|
||||||
|
"XF86AudioLowerVolume" = : all : f.exec "exec pactl set-sink-volume @DEFAULT_SINK@ -10%"
|
||||||
|
"XF86AudioRaiseVolume" = : all : f.exec "exec pactl set-sink-volume @DEFAULT_SINK@ +10%"
|
||||||
|
|
||||||
|
"Print" = : all : f.exec "exec import -window root screenshot.`date +\"%Y.%m.%d.%H%M%S\"`.png"
|
||||||
|
|
||||||