Ubuntu Pastebin

Paste from athoneycutt at Wed, 10 Aug 2016 21:25:41 +0000

Download as text
 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
56
57
import QtQuick 1.1
import Qt.labs.folderlistmodel 1.0

Rectangle {
    id: root
    width: 1200; height: 700
    color: "#eff0f1"
    
        FolderListModel {
        id: folderModel
        folder: "data"
        sortField: "Time"
        nameFilters: ["*.jpg", "*.png", "*.jpeg", "*.gif", "*.url"]
    }
    
    Column {
        x: 1005; y: 425
    
    Image {
        id: konqiIcon
        width: 150; height: 250
        source: "icons/konqi.png"
    }
  }
  
   Column {
       x: 30; y: 30
    Text {
      text: "Welcome to Kubuntu"
      font.pointSize: 48;
    }
  }
   Column {
       x: 45; y: 125
       spacing: 4
    Text {
        text: "* Thank you for choosing Kubuntu 16.04. We hope you enjoy the experience."
        font.pointSize: 16
    }
    Text {
        text: "* We believe every computer user should be free to work in the environment they choose, and be free to \n    download, change, study and share their software with anyone, for any purpose."
        font.pointSize: 16
    }
    Text {
        text: "* We want Kubuntu to work for you. So while your software is installing, this slideshow will introduce \n    you to Kubuntu 16.10."
        font.pointSize: 16
    }
  }
   
   Column {
       x: 70; y: 275
    Text {
        text: "Kubuntu is designed to be easy. Feel free to explore!"
        font.pointSize: 18
    }
  }
}
Download as text