summaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-02-13 16:26:28 -0600
committerSean E. Russell <ser@ser1.net>2020-02-13 16:26:28 -0600
commit38d7736ca07da3d7c075ff63641d9dd97baa3900 (patch)
tree6b2e648edcd5f984b59aa9a68ef0ce124f6417af /widgets
parent47413695cec2be72f12b29339ff2cc0767d10929 (diff)
Switching maintainership.
Diffstat (limited to 'widgets')
-rw-r--r--widgets/battery.go2
-rw-r--r--widgets/cpu.go2
-rw-r--r--widgets/disk.go4
-rw-r--r--widgets/mem.go4
-rw-r--r--widgets/mem_freebsd.go2
-rw-r--r--widgets/net.go4
-rw-r--r--widgets/proc.go4
-rw-r--r--widgets/proc_freebsd.go2
-rw-r--r--widgets/proc_other.go2
-rw-r--r--widgets/temp.go2
-rw-r--r--widgets/temp_darwin.go2
-rw-r--r--widgets/temp_freebsd.go2
-rw-r--r--widgets/temp_linux.go2
-rw-r--r--widgets/temp_openbsd.go2
-rw-r--r--widgets/temp_windows.go2
15 files changed, 19 insertions, 19 deletions
diff --git a/widgets/battery.go b/widgets/battery.go
index b6cab39..89620bb 100644
--- a/widgets/battery.go
+++ b/widgets/battery.go
@@ -9,7 +9,7 @@ import (
"github.com/distatus/battery"
- ui "github.com/cjbassi/gotop/termui"
+ ui "github.com/xxxserxxx/gotop/termui"
)
type BatteryWidget struct {
diff --git a/widgets/cpu.go b/widgets/cpu.go
index 66da81c..8e8819c 100644
--- a/widgets/cpu.go
+++ b/widgets/cpu.go
@@ -8,7 +8,7 @@ import (
psCpu "github.com/shirou/gopsutil/cpu"
- ui "github.com/cjbassi/gotop/termui"
+ ui "github.com/xxxserxxx/gotop/termui"
)
type CpuWidget struct {
diff --git a/widgets/disk.go b/widgets/disk.go
index f8b305b..d20b078 100644
--- a/widgets/disk.go
+++ b/widgets/disk.go
@@ -9,8 +9,8 @@ import (
psDisk "github.com/shirou/gopsutil/disk"
- ui "github.com/cjbassi/gotop/termui"
- "github.com/cjbassi/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/termui"
+ "github.com/xxxserxxx/gotop/utils"
)
type Partition struct {
diff --git a/widgets/mem.go b/widgets/mem.go
index 5b4a82c..d5bd67d 100644
--- a/widgets/mem.go
+++ b/widgets/mem.go
@@ -7,8 +7,8 @@ import (
psMem "github.com/shirou/gopsutil/mem"
- ui "github.com/cjbassi/gotop/termui"
- "github.com/cjbassi/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/termui"
+ "github.com/xxxserxxx/gotop/utils"
)
type MemWidget struct {
diff --git a/widgets/mem_freebsd.go b/widgets/mem_freebsd.go
index f3dd983..0d5b0b6 100644
--- a/widgets/mem_freebsd.go
+++ b/widgets/mem_freebsd.go
@@ -7,7 +7,7 @@ import (
"strconv"
"strings"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
func convert(s []string) (MemoryInfo, error) {
diff --git a/widgets/net.go b/widgets/net.go
index d90669f..dd051e8 100644
--- a/widgets/net.go
+++ b/widgets/net.go
@@ -7,8 +7,8 @@ import (
psNet "github.com/shirou/gopsutil/net"
- ui "github.com/cjbassi/gotop/termui"
- "github.com/cjbassi/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/termui"
+ "github.com/xxxserxxx/gotop/utils"
)
const (
diff --git a/widgets/proc.go b/widgets/proc.go
index 03f1de9..58ad6dd 100644
--- a/widgets/proc.go
+++ b/widgets/proc.go
@@ -10,8 +10,8 @@ import (
psCPU "github.com/shirou/gopsutil/cpu"
- ui "github.com/cjbassi/gotop/termui"
- "github.com/cjbassi/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/termui"
+ "github.com/xxxserxxx/gotop/utils"
)
const (
diff --git a/widgets/proc_freebsd.go b/widgets/proc_freebsd.go
index a8b213d..ac3e73f 100644
--- a/widgets/proc_freebsd.go
+++ b/widgets/proc_freebsd.go
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
type processList struct {
diff --git a/widgets/proc_other.go b/widgets/proc_other.go
index c0d13e7..09aac28 100644
--- a/widgets/proc_other.go
+++ b/widgets/proc_other.go
@@ -9,7 +9,7 @@ import (
"strconv"
"strings"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
const (
diff --git a/widgets/temp.go b/widgets/temp.go
index 6d49365..86e6e76 100644
--- a/widgets/temp.go
+++ b/widgets/temp.go
@@ -8,7 +8,7 @@ import (
ui "github.com/gizak/termui/v3"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
type TempScale int
diff --git a/widgets/temp_darwin.go b/widgets/temp_darwin.go
index d7d892c..2f5cde3 100644
--- a/widgets/temp_darwin.go
+++ b/widgets/temp_darwin.go
@@ -6,7 +6,7 @@ import "C"
import (
"log"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
type TemperatureStat struct {
diff --git a/widgets/temp_freebsd.go b/widgets/temp_freebsd.go
index 035226f..fcc6cda 100644
--- a/widgets/temp_freebsd.go
+++ b/widgets/temp_freebsd.go
@@ -7,7 +7,7 @@ import (
"strconv"
"strings"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
var sensorOIDS = map[string]string{
diff --git a/widgets/temp_linux.go b/widgets/temp_linux.go
index 47b27c9..674599e 100644
--- a/widgets/temp_linux.go
+++ b/widgets/temp_linux.go
@@ -6,7 +6,7 @@ import (
psHost "github.com/shirou/gopsutil/host"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
func (self *TempWidget) update() {
diff --git a/widgets/temp_openbsd.go b/widgets/temp_openbsd.go
index 4606c2c..8d0dc63 100644
--- a/widgets/temp_openbsd.go
+++ b/widgets/temp_openbsd.go
@@ -12,7 +12,7 @@ import (
"syscall"
"unsafe"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
func (self *TempWidget) getTemp(mib []C.int, mlen int, snsrdev *C.struct_sensordev, index int) {
diff --git a/widgets/temp_windows.go b/widgets/temp_windows.go
index 71fb6f1..8160900 100644
--- a/widgets/temp_windows.go
+++ b/widgets/temp_windows.go
@@ -5,7 +5,7 @@ import (
psHost "github.com/shirou/gopsutil/host"
- "github.com/cjbassi/gotop/utils"
+ "github.com/xxxserxxx/gotop/utils"
)
func (self *TempWidget) update() {