summaryrefslogtreecommitdiffstats
path: root/snap/snapcraft.yaml
blob: 0a0f9db350ab5caa73279c71e878ec338547f9d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: glances
version: '4.0.8'

summary: Glances an Eye on your system. A top/htop alternative.
description: |
  Glances is a cross-platform monitoring tool which aims to present
  a maximum of information in a minimum of space through a curses or
  Web based interface. It can adapt dynamically the displayed information
  depending on the user interface size.

base: core22
grade: stable  # devel
confinement: strict

apps:
  glances:
    command: bin/glances
    plugs:  # https://snapcraft.io/docs/supported-interfaces
      - network
      - system-observe
      - mount-observe
      - hardware-observe
      - log-observe
      - network-observe
      - physical-memory-observe
      - upower-observe
      - home
      - network-bind
      - uio
      - raw-volume
      - removable-media
      - power-control
      - process-control
    environment:
      LANG: C.UTF-8
      LC_ALL: C.UTF-8

plugs:
  home-glances-config:
    interface: personal-files
    read:
      - $HOME/.config/glances/glances.conf
  etc-glances-config:
    interface: system-files
    read:
      - /etc/glances/glances.conf

parts:
  glances:
    plugin: python
    source: https://github.com/nicolargo/glances.git
    source-branch: master  # develop
    python-requirements:
      - requirements.txt
      - webui-requirements.txt