返回列表 发布新帖

[玩法/技巧] 搞定属于自己的LCD,小白教你修改CONF文件(完工,真累)

 火...
57505 349
发表于 2014-5-18 12:19:49 | 查看全部 阅读模式

来吧兄弟,一起玩一起讨论!

您需要 登录 才可以下载或查看,没有账号?注册

×

更多精彩内容需要登录后查看

立即登录
汗。刚没看到。早知道我不发了。。 
发表于 2014-5-18 20:29

本帖被以下淘专辑推荐:

评论349

xjcsuper楼主Lv.10 发表于 2014-5-18 12:20:09 | 查看全部
本帖最后由 xjcsuper 于 2014-5-21 10:26 编辑

这里放一份我现在自用的最新CONF代码,效果请去这一帖看http://www.gebi1.com/thread-84333-1-1.html
  1. Display dpf {
  2.         Driver     'DPF'
  3.         Port       'usb0'
  4.         Font       '6x8'
  5.         Foreground 'ffffff'
  6.         Background 'ffffff00'
  7.         Basecolor  '000000'   #ffffff00
  8.         Orientation 0          # Orientation value from 0-3
  9.         Backlight  backlight   # Backlight variable control
  10. }

  11. Display Image {
  12.         Driver     'Image'
  13.         Format     'PNG'
  14.         Size       '128x128'
  15.         Font       '6x8'
  16.         Pixel      '4+1'
  17.         Gap        '-1x-1'
  18.         Border      10
  19.         Foreground 'ffffff'
  20.         Background 'ffffff00'
  21.         Halfground '#70c000'
  22. }



  23. Widget Month1 {
  24.         class 'Image'
  25.         file imgadir . 'date'. substr(strftime('%m', time()),0,1) . '.png'
  26.         reload 1
  27.         update tick
  28.         inverted 0
  29.         visible 1
  30. }

  31. Widget Month2 {
  32.         class 'Image'
  33.         file imgadir . 'date'. substr(strftime('%m', time()),1,1) . '.png'
  34.         reload 1
  35.         update tick
  36.         inverted 0
  37.         visible 1
  38. }

  39. Widget Month-Day {
  40.         class 'Image'
  41.         file imgadir . 'date-.png'
  42.         reload 1
  43.         update tick
  44.         inverted 0
  45.         visible 1
  46. }

  47. Widget Day1 {
  48.         class 'Image'
  49.         file imgadir . 'date'. substr(strftime('%d', time()),0,1) . '.png'
  50.         reload 1
  51.         update tick
  52.         inverted 0
  53.         visible 1
  54. }

  55. Widget Day2 {
  56.         class 'Image'
  57.         file imgadir . 'date'. substr(strftime('%d', time()),1,1) . '.png'
  58.         reload 1
  59.         update tick
  60.         inverted 0
  61.         visible 1
  62. }

  63. Widget Week1 {
  64.         class 'Image'
  65.         file imgadir . 'week'. strftime('%u', time()) . '.png'
  66.         reload 1
  67.         update tick
  68.         inverted 0
  69.         visible 1
  70. }

  71. Widget Hour1 {
  72.         class 'Image'
  73.         file imgadir . 'time'. substr(strftime('%H', time()),0,1) . '.png'
  74.         reload 1
  75.         update tick
  76.         inverted 0
  77.         visible 1
  78. }

  79. Widget Hour2 {
  80.         class 'Image'
  81.         file imgadir . 'time'. substr(strftime('%H', time()),1,1) . '.png'
  82.         reload 1
  83.         update tick
  84.         inverted 0
  85.         visible 1
  86. }

  87. Widget Hourdot1 {
  88.         class 'Image'
  89.         file imgadir . 'timedot.png'
  90.         reload 0
  91.         update tack
  92.         inverted 0
  93.         visible (time() % 2) & 1
  94. }

  95. Widget Hourdot2 {
  96.         class 'Image'
  97.         file imgadir . 'timedot.png'
  98.         reload 0
  99.         update tack
  100.         inverted 0
  101.         visible (time() % 2) & 1
  102. }


  103. Widget Minute1 {
  104.         class 'Image'
  105.         file imgadir . 'time'. substr(strftime('%M', time()),0,1) . '.png'
  106.         reload 1
  107.         update tick
  108.         inverted 0
  109.         visible 1
  110. }

  111. Widget Minute2 {
  112.         class 'Image'
  113.         file imgadir . 'time'. substr(strftime('%M', time()),1,1) . '.png'
  114.         reload 1
  115.         update tick
  116.         inverted 0
  117.         visible 1
  118. }

  119. Widget Second1 {
  120.         class 'Image'
  121.         file imgadir . 'ts'. substr(strftime('%S', time()),0,1) . '.png'
  122.         reload 1
  123.         update tick
  124.         inverted 0
  125.         visible 1
  126. }

  127. Widget Second2 {
  128.         class 'Image'
  129.         file imgadir . 'ts'. substr(strftime('%S', time()),1,1) . '.png'
  130.         reload 1
  131.         update tick
  132.         inverted 0
  133.         visible 1
  134. }



  135. Widget Kernel {
  136.         class  'Text'
  137.         expression uname('nodename')
  138.         width  8
  139.         align  'L'
  140.         update minute
  141.         Background 'FFFFFF00'
  142. }


  143. Widget CPUText {
  144.         class  'Text'
  145. #        expression uname('machine')
  146.         expression  proc_stat::cpu('busy',   500)
  147.         prefix 'CPU'
  148.         postfix '%'
  149.         precision  2
  150.         width  10
  151.         align  'R'
  152.         update tick
  153.         Background 'FFFFFF00'
  154. }

  155. Widget CPUBar {
  156.         class 'Bar'
  157.         expression  proc_stat::cpu('busy',   500)
  158.         length 10
  159.         max 100
  160.         direction 'E'  #E,W,N,S
  161.         style 'H'
  162.         update tack
  163.         Foreground '5f5f5f'
  164.         Background '00FF00FF'
  165.         BarColor0 'FF0000'
  166.         BarColor1 'EE3333'
  167. }

  168. Widget RAMText {
  169.         class  'Text'
  170.         expression showex?meminfo('MemTotal')/1024:meminfo('MemFree')/1024
  171.         prefix showex?'RAM':'Free'
  172.         postfix 'MB'
  173.         precision  0
  174.         width  10
  175.         align  'R'
  176.         update tick
  177.         Background 'FFFFFF00'
  178. }

  179. Widget RAMBar {
  180.         class 'Bar'
  181.         expression  meminfo('MemTotal') - meminfo('MemFree')
  182.         max meminfo('MemTotal')
  183.         length 10
  184.         direction 'E'
  185.         style 'H'
  186.         update tack
  187.         Foreground '5f5f5f'
  188.         Background '00FF00FF'
  189.         BarColor0 'FF0000'
  190.         BarColor1 'EE3333'
  191. }

  192. Widget LoadText {
  193.         class  'Text'
  194.         expression loadavg(1)-1
  195. #        expression i2c_sensors('temp2_input')
  196.         prefix 'Load:'
  197.         postfix loadavg(1)-1>1.0?'!':''
  198.         width  10
  199.         align  'R'
  200.         precision  1
  201.         update tack
  202.         Background 'FFFFFF00'
  203. }

  204. Widget TypeText1 {
  205.         class 'Text'
  206.         prefix showex?'Space':'Free'
  207.         width 6
  208.         align 'R'
  209.         update tick
  210.         Foreground 'ffffff'
  211.         Background 'FFFFFF00'
  212. }

  213. Widget TypeText2 {
  214.         class 'Text'
  215.         prefix 'DISK'
  216.         width 4
  217.         align 'R'
  218.         update tick
  219.         Foreground '00FF00'
  220.         Background 'FFFFFF00'
  221. }

  222. Widget TypeText3 {
  223.         class 'Text'
  224.         postfix 'Read Write'
  225.         width 10
  226.         align 'R'
  227.         update tick
  228.         Foreground 'ffffff'
  229.         Background 'FFFFFF00'
  230. }

  231. Widget DiskText1R {
  232.         class 'Text'
  233.         expression diskstats(Diskname1, 'read_sectors', 500)/2<1024?diskstats(Diskname1, 'read_sectors', 500)/2:diskstats(Diskname1, 'read_sectors', 500)/2/1024
  234.         postfix diskstats(Diskname1, 'read_sectors', 500)/2<1024?'K':'M'
  235.         precision  0
  236.         width 5
  237.         align 'R'
  238.         update tick
  239.         Foreground 'ffffff'
  240.         Background 'FFFFFF00'
  241. }

  242. Widget DiskText1W {
  243.         class 'Text'
  244.         expression diskstats(Diskname1, 'write_sectors', 500)/2<1024?diskstats(Diskname1, 'write_sectors', 500)/2:diskstats(Diskname1, 'write_sectors', 500)/2/1024
  245.         postfix diskstats(Diskname1, 'write_sectors', 500)/2<1024?'K':'M'
  246.         precision  0
  247.         width 5
  248.         align 'R'
  249.         update tick
  250.         Foreground 'ffffff'
  251.         Background 'FFFFFF00'
  252. }

  253. Widget DiskText2R {
  254.         class 'Text'
  255.         expression diskstats(Diskname2, 'read_sectors', 500)/2<1024?diskstats(Diskname2, 'read_sectors', 500)/2:diskstats(Diskname2, 'read_sectors', 500)/2/1024
  256.         postfix diskstats(Diskname2, 'read_sectors', 500)/2<1024?'K':'M'
  257.         precision  0
  258.         width 5
  259.         align 'R'
  260.         update tick
  261.         Foreground 'ffffff'
  262.         Background 'FFFFFF00'
  263. }

  264. Widget DiskText2W {
  265.         class 'Text'
  266.         expression diskstats(Diskname2, 'write_sectors', 500)/2<1024?diskstats(Diskname2, 'write_sectors', 500)/2:diskstats(Diskname2, 'write_sectors', 500)/2/1024
  267.         postfix diskstats(Diskname2, 'write_sectors', 500)/2<1024?'K':'M'
  268.         precision  0
  269.         width 5
  270.         align 'R'
  271.         update tick
  272.         Foreground 'ffffff'
  273.         Background 'FFFFFF00'
  274. }

  275. Widget DiskText3R {
  276.         class 'Text'
  277.         expression diskstats(Diskname3, 'read_sectors', 500)/2<1024?diskstats(Diskname3, 'read_sectors', 500)/2:diskstats(Diskname3, 'read_sectors', 500)/2/1024
  278.         postfix diskstats(Diskname3, 'read_sectors', 500)/2<1024?'K':'M'
  279.         precision  0
  280.         width 5
  281.         align 'R'
  282.         update tick
  283.         Foreground 'ffffff'
  284.         Background 'FFFFFF00'
  285. }

  286. Widget DiskText3W {
  287.         class 'Text'
  288.         expression diskstats(Diskname3, 'write_sectors', 500)/2<1024?diskstats(Diskname3, 'write_sectors', 500)/2:diskstats(Diskname3, 'write_sectors', 500)/2/1024
  289.         postfix diskstats(Diskname3, 'write_sectors', 500)/2<1024?'K':'M'
  290.         precision  0
  291.         width 5
  292.         align 'R'
  293.         update tick
  294.         Foreground 'ffffff'
  295.         Background 'FFFFFF00'
  296. }

  297. Widget DiskBar1 {
  298.         class 'Bar'
  299.         expression  diskstats(Diskname1, 'read_sectors',  500)
  300.         expression2 diskstats(Diskname1, 'write_sectors', 500)
  301.         length 2
  302.         direction 'E'
  303.         style 'H'
  304.         update tsck
  305.         Foreground '5f5f5f'
  306.         Background '3f3f3fFF'
  307.         BarColor0 '00FF00'
  308.         BarColor1 'FF0000'
  309. }

  310. Widget DiskBar2 {
  311.         class 'Bar'
  312.         expression  diskstats(Diskname2, 'read_sectors',  500)
  313.         expression2 diskstats(Diskname2, 'write_sectors', 500)
  314.         length 2
  315.         direction 'E'
  316.         style 'H'
  317.         update tsck
  318.         Foreground '5f5f5f'
  319.         Background '3f3f3fFF'
  320.         BarColor0 '00FF00'
  321.         BarColor1 'FF0000'
  322. }

  323. Widget DiskBar3 {
  324.         class 'Bar'
  325.         expression  diskstats(Diskname3, 'read_sectors',  500)
  326.         expression2 diskstats(Diskname3, 'write_sectors', 500)
  327.         length 2
  328.         direction 'E'
  329.         style 'H'
  330.         update tsck
  331.         Foreground '5f5f5f'
  332.         Background '3f3f3fFF'
  333.         BarColor0 '00FF00'
  334.         BarColor1 'FF0000'
  335. }

  336. Widget SpaceText1 {
  337.         class 'Text'
  338.         expression showex?statfs(SpaceDir1, 'blocks')*statfs(SpaceDir2, 'bsize')/1073741824:statfs(SpaceDir1, 'bavail')*statfs(SpaceDir2, 'bsize')/1073741824
  339.         postfix 'G'
  340.         precision  0
  341.         width 5
  342.         align 'R'
  343.         update tick
  344.         Foreground 'ffffff'
  345.         Background 'FFFFFF00'
  346. }

  347. Widget SpaceText2 {
  348.         class 'Text'
  349.         expression showex?statfs(SpaceDir2, 'blocks')*statfs(SpaceDir2, 'bsize')/1073741824:statfs(SpaceDir2, 'bavail')*statfs(SpaceDir2, 'bsize')/1073741824
  350.         postfix 'G'
  351.         precision  0
  352.         width 5
  353.         align 'R'
  354.         update tick
  355.         Foreground 'ffffff'
  356.         Background 'FFFFFF00'
  357. }

  358. Widget SpaceText3 {
  359.         class 'Text'
  360.         expression showex?statfs(SpaceDir3, 'blocks')*statfs(SpaceDir3, 'bsize')/1073741824:statfs(SpaceDir3, 'bavail')*statfs(SpaceDir3, 'bsize')/1073741824
  361.         postfix 'G'
  362.         precision  0
  363.         width 5
  364.         align 'R'
  365.         update tick
  366.         Foreground 'ffffff'
  367.         Background 'FFFFFF00'
  368. }


  369. Widget SpaceBar1 {
  370.         class 'Bar'
  371.         expression  statfs(SpaceDir1, 'blocks') - statfs(SpaceDir1, 'bavail')
  372.         length 3
  373.         direction 'E'
  374.         style 'H'
  375.         max statfs(SpaceDir1, 'blocks')
  376.         update tick
  377.         Foreground '5f5f5f'
  378.         Background '00FF00FF'
  379.         BarColor0 'FF0000'
  380.         BarColor1 'EE3333'
  381. }

  382. Widget SpaceBar2 {
  383.         class 'Bar'
  384.         expression  statfs(SpaceDir2, 'blocks') - statfs(SpaceDir2, 'bavail')
  385.         length 3
  386.         direction 'E'
  387.         style 'H'
  388.         max statfs(SpaceDir2, 'blocks')
  389.         update tick
  390.         Foreground '5f5f5f'
  391.         Background '00FF00FF'
  392.         BarColor0 'FF0000'
  393.         BarColor1 'EE3333'
  394. }

  395. Widget SpaceBar3 {
  396.         class 'Bar'
  397.         expression  statfs(SpaceDir3, 'blocks') - statfs(SpaceDir3, 'bavail')
  398.         length 3
  399.         direction 'E'
  400.         style 'H'
  401.         max statfs(SpaceDir3, 'blocks')
  402.         update tick
  403.         Foreground '5f5f5f'
  404.         Background '00FF00FF'
  405.         BarColor0 'FF0000'
  406.         BarColor1 'EE3333'
  407. }

  408. Widget NetText1 {
  409.         class 'Text'
  410.         expression netdev::fast(netdevice, 'Tx_bytes', 500)/1024<1024?netdev::fast(netdevice, 'Tx_bytes', 500)/1024:netdev::fast(netdevice, 'Tx_bytes', 500)/1024/1024
  411.         prefix 'U:'
  412.         postfix netdev::fast(netdevice, 'Tx_bytes', 500)/1024<1024?'K/s':'M/s'
  413.         width 9
  414.         precision  0
  415.         align 'R'
  416.         update tick
  417.         Foreground 'ffffff'
  418.         Background 'FFFFFF00'
  419. }

  420. Widget NetText2 {
  421.         class 'Text'
  422.         expression netdev::fast(netdevice, 'Rx_bytes', 500)/1024<1024?netdev::fast(netdevice, 'Rx_bytes', 500)/1024:netdev::fast(netdevice, 'Rx_bytes', 500)/1024/1024
  423.         prefix 'D:'
  424.         postfix netdev::fast(netdevice, 'Rx_bytes', 500)/1024<1024?'K/s':'M/s'
  425.         precision  0
  426.         width 9
  427.         align 'R'
  428.         update tick
  429.         Foreground 'ffffff'
  430.         Background 'FFFFFF00'
  431. }

  432. Widget NetBar {
  433.         class 'Bar'
  434.         expression netdev(netdev, 'Tx_bytes', 500)
  435.         expression2  netdev(netdev, 'Rx_bytes', 500)
  436.         length 2
  437.         direction 'N'
  438. #        style 'H'
  439.         update tack
  440.         Foreground '5f5f5f'
  441.         Background '3F3F3FFF'
  442.         BarColor0 '00FF00'
  443.         BarColor1 'FF0000'
  444. }

  445. Widget CpuTText {
  446.         class 'Text'
  447.         expression i2c_sensors('temp2_input')
  448.         postfix '.C'
  449.         precision  0
  450.         width 4
  451.         align 'R'
  452.         update tick
  453.         Foreground 'ffffff'
  454.         Background 'FFFFFF00'
  455. }

  456. Widget CpuTBar {
  457.         class 'Bar'
  458.         expression i2c_sensors('temp2_input')
  459.         length 2
  460.         max 100
  461.         direction 'N'
  462.         style 'H'
  463.         update tack
  464.         Foreground '5f5f5f'
  465.         Background '00FF00FF'
  466.         BarColor0 'FF0000'
  467.         BarColor1 'EE3333'
  468. }

  469. Widget MbTText {
  470.         class 'Text'
  471.         expression i2c_sensors('temp1_input')
  472.         postfix '.C'
  473.         precision  0
  474.         width 4
  475.         align 'R'
  476.         update tick
  477.         Foreground 'ffffff'
  478.         Background 'FFFFFF00'
  479. }

  480. Widget MbTBar {
  481.         class 'Bar'
  482.         expression i2c_sensors('temp1_input')
  483.         length 2
  484.         max 100
  485.         direction 'N'
  486.         style 'H'
  487.         update tack
  488.         Foreground '5f5f5f'
  489.         Background '00FF00FF'
  490.         BarColor0 'FF0000'
  491.         BarColor1 'EE3333'
  492. }

  493. Widget IPText {
  494.         class 'Text'
  495.         expression showex?(uptime('%dDays %H:%M:%S')):(netinfo::ipaddr(netdevice))
  496.         prefix showex?'Up:':'IP:'
  497.         width 21
  498.         align 'R'
  499.         update tick
  500.         Foreground 'fff000'
  501.         Background '5f5f5f'
  502. }

  503. Widget LcdLight{
  504.         class 'Timer'
  505.         expression LCD::backlight(file::readline(imgadir . 'lcds', strftime('%H', time()) + 1))
  506.         active 1
  507.         update minute
  508. }

  509. Widget ShowExinfo {
  510.         class 'Timer'
  511.         expression showex=(time() % 10 < 5)?1:0
  512.         active 1
  513.         update tick
  514. }

  515. Display 'DPF'

  516. #Display 'Image'

  517. Layout mylayout {
  518.         Row07.Col1 'Kernel'
  519.         Row08.Col1 'CPUText'
  520.         Row09.Col1 'CPUBar'
  521.         Row07.Col12 'LoadText'
  522.         Row08.Col12 'RAMText'
  523.         Row09.Col12 'RAMBar'
  524.         Row11.Col1 'SpaceText1'
  525.         Row12.Col1 'SpaceText2'
  526.         Row13.Col1 'SpaceText3'
  527.         Row11.Col6 'SpaceBar1'
  528.         Row12.Col6 'SpaceBar2'
  529.         Row13.Col6 'SpaceBar3'
  530.         Row10.Col1 'TypeText1'
  531.         Row10.Col7 'TypeText2'
  532.         Row10.Col12 'TypeText3'
  533.         Row11.Col11 'DiskText1R'
  534.         Row11.Col17 'DiskText1W'
  535.         Row12.Col11 'DiskText2R'
  536.         Row12.Col17 'DiskText2W'
  537.         Row13.Col11 'DiskText3R'
  538.         Row13.Col17 'DiskText3W'
  539.         Row11.Col9 'DiskBar1'
  540.         Row12.Col9 'DiskBar2'
  541.         Row13.Col9 'DiskBar3'
  542.         Row15.Col2 'CpuTText'
  543.         Row14.Col1 'CpuTBar'
  544.         Row15.Col7 'MbTText'
  545.         Row14.Col6 'MbTBar'
  546.         Row14.Col13 'NetText1'
  547.         Row15.Col13 'NetText2'
  548.         Row14.Col12 'NetBar'
  549.         Row16.Col1 'IPText'


  550.         Layer 0 {
  551.                 X1.Y1 'Month1'
  552.                 X1.Y14 'Month2'
  553.                 X1.Y27 'Month-Day'
  554.                 X1.Y37 'Day1'
  555.                 X1.Y51 'Day2'
  556.                 X1.Y82 'Week1'
  557.                 X17.Y3 'Hour1'
  558.                 X17.Y26 'Hour2'
  559.                 X22.Y51 'Hourdot1'
  560.                 X34.Y51 'Hourdot2'
  561.                 X17.Y60 'Minute1'
  562.                 X17.Y83 'Minute2'
  563.                 X40.Y110 'Second1'
  564.                 X40.Y118 'Second2'

  565.         }

  566.         Timer1 'LcdLight'
  567.         Timer2 'ShowExinfo'
  568. }

  569. Layout 'mylayout'

  570. Variables {
  571.         backlight 2
  572.         tick 500
  573.         tack 200
  574.         tsck 100
  575.         second 1000
  576.         minute 60000
  577.         netdevice 'eth0' #网络
  578.         imgadir   '/usr/share/lcd4linux/mytheme/img/'
  579.         datadir   '/usr/share/lcd4linux/mytheme/data/'
  580.         SpaceDir1  '/volume1'
  581.         SpaceDir2  '/volumeSATA1/satashare1-1'
  582.         SpaceDir3  '/volumeSATA3/satashare3-1'
  583.         Diskname1  'sda'
  584.         Diskname2  'sdc1'
  585.         Diskname3  'sdf1'
  586. }
复制代码





回复 点赞

使用道具 举报

xjcsuper楼主Lv.10 发表于 2014-5-18 12:20:31 | 查看全部
本帖最后由 xjcsuper 于 2014-5-18 22:19 编辑

忙完网吧后坐了几个小时终于写完这篇贴子
感谢出CONF配置文件的教程 看Conf比较累 有中文帮助是极好的 
发表于 2014-5-27 01:31
回复 点赞

使用道具 举报

wangfq332Lv.10 发表于 2014-5-18 12:25:33 | 查看全部
支持分享了
回复 点赞

使用道具 举报

nba 发表于 2014-5-18 13:02:44 | 查看全部
板凳学习
回复 点赞

使用道具 举报

aka 发表于 2014-5-18 13:17:55 | 查看全部
占楼备用,占楼备用
回复 点赞

使用道具 举报

jmdjjLv.10 发表于 2014-5-18 13:50:12 | 查看全部
楼都站满了!
码字很累的啊  详情 回复
发表于 2014-5-18 16:34
回复 点赞

使用道具 举报

xjcsuper楼主Lv.10 发表于 2014-5-18 16:34:07 | 查看全部

码字很累的啊
支持一个。  详情 回复
发表于 2014-5-18 17:28
回复 点赞

使用道具 举报

剑剑Lv.10 发表于 2014-5-18 17:28:40 | 查看全部

支持一个。
U盘有价,数据无价。。。。。。
回复 点赞

使用道具 举报

xjcsuper楼主Lv.10 发表于 2014-5-18 21:13:03 | 查看全部
写累了,顶一下吧
回复 点赞

使用道具 举报

cool-fireVIPLv.10 发表于 2014-5-18 21:25:07 | 查看全部
不错,学习了,感谢分享!!
回复 点赞

使用道具 举报

fh_xz 发表于 2014-5-18 21:26:36 | 查看全部

支持分享
回复 点赞

使用道具 举报

fatlsj 发表于 2014-5-18 21:41:18 | 查看全部
教学贴,好东西
回复 点赞

使用道具 举报

shisi80 发表于 2014-5-18 21:48:51 | 查看全部
感谢提供
回复 点赞

使用道具 举报

dsqaLv.10 发表于 2014-5-18 21:52:16 | 查看全部
好吧,回复可见。。
码这么多字不容易,不回复可见沉得快啊  详情 回复
发表于 2014-5-18 21:53
回复 点赞

使用道具 举报

xjcsuper楼主Lv.10 发表于 2014-5-18 21:53:41 | 查看全部
dsqa 发表于 2014-5-18 21:52
好吧,回复可见。。

码这么多字不容易,不回复可见沉得快啊
不会沉滴,我再你顶上去。  详情 回复
发表于 2014-5-18 21:56
回复 点赞

使用道具 举报

剑剑Lv.10 发表于 2014-5-18 21:56:18 | 查看全部
xjcsuper 发表于 2014-5-18 21:53
码这么多字不容易,不回复可见沉得快啊

不会沉滴,我再你顶上去。
U盘有价,数据无价。。。。。。
回复 点赞

使用道具 举报

yuko4632Lv.3 发表于 2014-5-18 22:01:15 | 查看全部
呵呵。。。支持。。。
回复 点赞

使用道具 举报

fenggenet 发表于 2014-5-18 22:13:36 | 查看全部
很好,支持下。
回复 点赞

使用道具 举报

changqmLv.2 发表于 2014-5-18 22:19:38 | 查看全部
不错,支持LZ
回复 点赞

使用道具 举报

回复

您需要登录后才可以回帖 登录 | 注册

本版积分规则

投诉/建议联系

support@gebi1.cn

未经授权禁止转载,复制和建立镜像,
如有违反,追究法律责任
  • 关注公众号
  • 添加微信客服
Copyright © 2001-2025 隔壁网 版权所有 All Rights Reserved. 粤ICP备14056481号-1
关灯 在本版发帖
扫一扫添加微信客服
返回顶部
快速回复 返回顶部 返回列表