Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/modules/idesk/idesk-sysinfo.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2149 by niro, Fri Jan 10 13:36:38 2014 UTC revision 2832 by niro, Wed Aug 30 13:54:01 2017 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2    
3    MCORE_LIBDIR="@@MCORE_LIBDIR@@"
4    source @@SYSCONFDIR@@/mcore/mcore.conf
5    source ${MCORE_LIBDIR}/include/common.global.class
6    
7    if [[ $(whoami) = ${MCORE_UNPRIV_USER} ]]
8    then
9     x11runas=""
10     sudo="sudo"
11    else
12     x11runas="x11runas"
13     sudo=""
14    fi
15    
16  # die if no display was found  # die if no display was found
17  xinfo &> /dev/null || exit 1  ${x11runas} xinfo &> /dev/null || exit 1
18    
19  # eval xorg_width and xorg_height  # eval xorg_width and xorg_height
20  eval $(xinfo)  xinfo=$(${x11runas} xinfo)
21    if [[ $? = 0 ]]
22    then
23     eval ${xinfo}
24    fi
25    
26  # fallback  # fallback
27  [[ -z ${xorg_width} ]] && xorg_width="1024"  [[ -z ${xorg_width} ]] && xorg_width="1024"
# Line 27  else Line 44  else
44   serial="UNKNOWN"   serial="UNKNOWN"
45  fi  fi
46    
47  sysinfo="Hostname: $(hostname) Serial: #${serial} OS: ${osversion} Kernel: $(uname -r)"  iface="$(iface_for_remote_addr $(dns_to_ip alx-control.dom-aka-nt.intern))"
48    ipaddr="$(get_iface_ip ${iface})"
49    if [[ -z ${ipaddr} ]]
50    then
51     ipaddr="No network"
52    fi
53    
54    sysinfo="Hostname: $(hostname) Serial: #${serial} IP: ${ipaddr} OS: ${osversion} Arch: $(arch) Kernel: $(uname -r)"
55  #len_sysinfo="${#sysinfo}"  #len_sysinfo="${#sysinfo}"
56    
57  # calculate icon xpos  # calculate icon xpos
# Line 40  xpos="$(( ${xorg_width} / 2 ))" Line 64  xpos="$(( ${xorg_width} / 2 ))"
64  # xorg_height - text_height; text_height=22 pixel  # xorg_height - text_height; text_height=22 pixel
65  ypos="$(( ${xorg_height} - 22))"  ypos="$(( ${xorg_height} - 22))"
66    
67  [ -d ~/.idesktop ] || install -d ~/.idesktop  # generate icon info
68    ${sudo} ${MCORE_LIBDIR}/idesk-generate-icon-info \
69  cat > ~/.idesktop/sysinfo.lnk << EOF   --add \
70  table Icon   --name "${sysinfo}" \
71    Caption: ${sysinfo}   --filename "sysinfo" \
72    Command: exit 0   --command "exit 0" \
73    Icon: @@PIXMAPSDIR@@/sysinfo.png   --icon "sysinfo.png" \
74    X: ${xpos}   --xpos "${xpos}" \
75    Y: ${ypos}   --ypos "${ypos}" \
76    Width: 1   || die "adding icon-info"
   Height: 1  
 end  
 EOF  

Legend:
Removed from v.2149  
changed lines
  Added in v.2832