├── .gitignore
├── LICENSE
├── README.md
├── airootfs
├── etc
│ ├── X11
│ │ └── xorg.conf.d
│ │ │ └── 30-touchpad.conf
│ ├── default
│ │ └── grub
│ ├── group
│ ├── gshadow
│ ├── hostname
│ ├── locale.conf
│ ├── localtime
│ ├── mkinitcpio.conf
│ ├── mkinitcpio.d
│ │ ├── alg
│ │ ├── linux.preset
│ │ └── linux.preset.bak
│ ├── motd
│ ├── pacman.conf
│ ├── pacman.d
│ │ ├── chaotic-mirrorlist.bak
│ │ └── mirrorlist
│ ├── passwd
│ ├── sddm.conf.d
│ │ └── autologin.conf
│ ├── shadow
│ ├── ssh
│ │ └── sshd_config
│ ├── sudoers.d
│ │ └── g_wheel
│ ├── systemd
│ │ ├── journald.conf
│ │ ├── journald.conf.d
│ │ │ └── volatile-storage.conf
│ │ ├── logind.conf
│ │ ├── logind.conf.d
│ │ │ └── do-not-suspend.conf
│ │ ├── network
│ │ │ ├── 20-ethernet.network
│ │ │ └── 20-wireless.network
│ │ └── system
│ │ │ ├── choose-mirror.service
│ │ │ ├── cloud-init.target.wants
│ │ │ ├── cloud-config.service
│ │ │ ├── cloud-final.service
│ │ │ ├── cloud-init-local.service
│ │ │ └── cloud-init.service
│ │ │ ├── dbus-org.freedesktop.network1.service
│ │ │ ├── dbus-org.freedesktop.nm-dispatcher.service
│ │ │ ├── dbus-org.freedesktop.resolve1.service
│ │ │ ├── default.target
│ │ │ ├── display-manager.service
│ │ │ ├── etc-pacman.d-gnupg.mount
│ │ │ ├── getty@tty1.service.d
│ │ │ └── autologin.conf
│ │ │ ├── livecd-alsa-unmuter.service
│ │ │ ├── livecd-talk.service
│ │ │ ├── multi-user.target.wants
│ │ │ ├── NetworkManager.service
│ │ │ ├── choose-mirror.service
│ │ │ ├── iwd.service
│ │ │ ├── livecd-talk.service
│ │ │ ├── pacman-init.service
│ │ │ ├── reflector.service
│ │ │ ├── sshd.service
│ │ │ ├── systemd-networkd.service
│ │ │ ├── systemd-resolved.service
│ │ │ └── vboxservice.service
│ │ │ ├── network-online.target.wants
│ │ │ ├── NetworkManager-wait-online.service
│ │ │ └── systemd-networkd-wait-online.service
│ │ │ ├── pacman-init.service
│ │ │ ├── reflector.service.d
│ │ │ └── archiso.conf
│ │ │ ├── sockets.target.wants
│ │ │ └── systemd-networkd.socket
│ │ │ ├── sound.target.wants
│ │ │ └── livecd-alsa-unmuter.service
│ │ │ └── systemd-networkd-wait-online.service.d
│ │ │ └── wait-for-only-one-interface.conf
│ └── xdg
│ │ └── reflector
│ │ └── reflector.conf
├── root
│ ├── .automated_script.sh
│ └── .zlogin
└── usr
│ ├── local
│ ├── bin
│ │ ├── Installation_guide
│ │ ├── alg-finalisation
│ │ ├── alg-pacman-populate
│ │ ├── alg-preset
│ │ ├── alg-remove-nvidia
│ │ ├── choose-mirror
│ │ └── livecd-sound
│ └── share
│ │ └── livecd-sound
│ │ └── asound.conf.in
│ └── share
│ ├── sddm
│ └── themes
│ │ └── Qogir
│ │ ├── Background.qml
│ │ ├── BreezeMenuStyle.qml
│ │ ├── KeyboardButton.qml
│ │ ├── Login.qml
│ │ ├── Main.qml
│ │ ├── SessionButton.qml
│ │ ├── assets
│ │ ├── logout_primary.svgz
│ │ ├── restart_primary.svgz
│ │ ├── shutdown_primary.svgz
│ │ ├── suspend_primary.svgz
│ │ └── switch_primary.svgz
│ │ ├── background.jpg
│ │ ├── components
│ │ ├── ActionButton.qml
│ │ ├── Battery.qml
│ │ ├── Clock.qml
│ │ ├── KeyboardLayoutButton.qml
│ │ ├── SessionManagementScreen.qml
│ │ ├── UserDelegate.qml
│ │ ├── UserList.qml
│ │ ├── VirtualKeyboard.qml
│ │ └── WallpaperFader.qml
│ │ ├── faces
│ │ └── .face.icon
│ │ ├── metadata.desktop
│ │ ├── preview.png
│ │ ├── real-wood.jpg
│ │ ├── theme.conf
│ │ └── theme.conf.user
│ └── wallpapers
│ ├── real-wood
│ └── real-wood.jpg
│ └── wall
│ └── wall.png
├── bootableusb.sh
├── cleanup.sh
├── efiboot
└── loader
│ ├── entries
│ ├── 01-archiso-x86_64-linux.conf
│ └── 02-archiso-x86_64-linux-nvidia.conf
│ └── loader.conf
├── git_commit.sh
├── packages.x86_64
├── pacman.conf
├── profiledef.sh
└── syslinux
├── archiso_head.cfg
├── archiso_pxe-linux.cfg
├── archiso_pxe.cfg
├── archiso_sys-linux.cfg
├── archiso_sys.cfg
├── archiso_tail.cfg
├── splash.png
└── syslinux.cfg
/.gitignore:
--------------------------------------------------------------------------------
1 | work
2 | out
3 | setup-git.sh
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ALG Experimental Edition
2 |
3 | Welcome to Arch Linux GUI's Experimental Edition Section. Here, you will find editions of Arch Linux that come which components which vary with Vanilla Arch Linux.
4 |
5 | ###### RELEASE CYCLE: _Whenever ready, and not on the first of every month. Also, not with the mainline ISOs._
6 | ---
7 | ### Arch Linux GUI Zen Edition
8 | ###### Checksum: `83b9ebf37d288dab373338168e4393a59727d2a28eb29de2c87e5cbefed33434`
9 | `NOTE: Internet Connection is required to install this edition`
10 |
11 | The ALG Zen edition differs from the Vanilla editions due to the inclusion of the following core components:
12 | - The Linux Zen Kernel (Increased Responsiveness)
13 | - Zsh as default shell
14 | - btrFS as default File System (Automatic Partition Subvolumes: `/, /home, /var/cache, /var/log`)
15 | - Z standard compression for ISO image (Lightning fast installation)
16 | - Chaotic AUR Repository (Install AUR packages from terminal)
17 |
18 | 
19 |
20 | 
21 |
22 | ## Features
23 | - KDE Plasma 5 on LiveCD (25th Anniversary Edition)
24 | - Install Stock Desktop of Choice (with option for i3WM as well)
25 | - Install Applications of Choice (Browser, Multimedia, Developement, etc)
26 | - Network info copied over to future system (auth after reboot)
27 | - Network Managed for Xfce, MATE, LxQt (applet)
28 | - NVIDIA Driver Support
29 | - Multilib Enabled
30 | - PAMAC Software Center
31 | - SDDM default with Arch Linux Wallpaper
32 | - Tap-to-click on Laptop touchpads
33 |
34 | 
35 |
36 | 
37 |
38 | ## Installation
39 | Press Window's key to launch application menu and search for **installer** or **Arch Linux**, and while `Install Arch Linux` is selected, press enter to launch the installer.
40 |
41 | 
42 | The installer will launch and you should get something like this:
43 | 
44 |
45 | For partitioning with above mentioned subvolume scheme, select **Erase Disk**
46 | 
47 |
48 | `IMPORTANT`: You should select **Erase Disk** only if you are installing to one HDD/SSD, and wish to install Arch Linux on the entire disk. In all other cases, including implementation of your own subvolume scheme, **Manual Partioning** should be used.
49 |
--------------------------------------------------------------------------------
/airootfs/etc/X11/xorg.conf.d/30-touchpad.conf:
--------------------------------------------------------------------------------
1 | Section "InputClass"
2 | Identifier "MyTouchpad"
3 | MatchIsTouchpad "on"
4 | Driver "libinput"
5 | Option "Tapping" "on"
6 | EndSection
7 |
--------------------------------------------------------------------------------
/airootfs/etc/default/grub:
--------------------------------------------------------------------------------
1 | # GRUB boot loader configuration
2 |
3 | GRUB_DEFAULT=0
4 | GRUB_TIMEOUT=5
5 | GRUB_DISTRIBUTOR="Arch"
6 | GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet audit=0"
7 | GRUB_CMDLINE_LINUX=""
8 |
9 | # Preload both GPT and MBR modules so that they are not missed
10 | GRUB_PRELOAD_MODULES="part_gpt part_msdos"
11 |
12 | # Uncomment to enable booting from LUKS encrypted devices
13 | #GRUB_ENABLE_CRYPTODISK=y
14 |
15 | # Set to 'countdown' or 'hidden' to change timeout behavior,
16 | # press ESC key to display menu.
17 | GRUB_TIMEOUT_STYLE=menu
18 |
19 | # Uncomment to use basic console
20 | GRUB_TERMINAL_INPUT=console
21 |
22 | # Uncomment to disable graphical terminal
23 | #GRUB_TERMINAL_OUTPUT=console
24 |
25 | # The resolution used on graphical terminal
26 | # note that you can use only modes which your graphic card supports via VBE
27 | # you can see them in real GRUB with the command `vbeinfo'
28 | GRUB_GFXMODE=auto
29 |
30 | # Uncomment to allow the kernel use the same resolution used by grub
31 | GRUB_GFXPAYLOAD_LINUX=keep
32 |
33 | # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
34 | # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
35 | #GRUB_DISABLE_LINUX_UUID=true
36 |
37 | # Uncomment to disable generation of recovery mode menu entries
38 | GRUB_DISABLE_RECOVERY=true
39 |
40 | # Uncomment and set to the desired menu colors. Used by normal and wallpaper
41 | # modes only. Entries specified as foreground/background.
42 | GRUB_COLOR_NORMAL="white/black"
43 | GRUB_COLOR_HIGHLIGHT="light-cyan/black"
44 |
45 | # Uncomment one of them for the gfx desired, a image background or a gfxtheme
46 | GRUB_BACKGROUND="/usr/share/wallpapers/real-wood/real-wood.jpg"
47 | #GRUB_THEME=
48 |
49 | # Uncomment to get a beep at GRUB start
50 | #GRUB_INIT_TUNE="480 440 1"
51 |
52 | # Uncomment to make GRUB remember the last selection. This requires
53 | # setting 'GRUB_DEFAULT=saved' above. Change 0 into saved.
54 | # Do not forget to 'update-grub' in a terminal to apply the new settings
55 | #GRUB_SAVEDEFAULT="true"
56 |
57 | # Uncomment to make grub stop using submenus
58 | #GRUB_DISABLE_SUBMENU=y
59 |
60 | #New GRUB update disable OS prober by default. We don't want that.
61 | GRUB_DISABLE_OS_PROBER=false
62 |
--------------------------------------------------------------------------------
/airootfs/etc/group:
--------------------------------------------------------------------------------
1 | root:x:0:root
2 | sys:x:3:bin,liveuser
3 | network:x:90:liveuser
4 | power:x:98:liveuser
5 | adm:x:999:liveuser
6 | wheel:x:998:liveuser
7 | uucp:x:987:liveuser
8 | optical:x:990:liveuser
9 | rfkill:x:983:liveuser
10 | video:x:986:liveuser
11 | storage:x:988:liveuser
12 | audio:x:995:liveuser
13 | users:x:985:liveuser
14 | nopasswdlogin:x:966:liveuser
15 | autologin:x:967:liveuser
16 | liveuser:x:1000:
--------------------------------------------------------------------------------
/airootfs/etc/gshadow:
--------------------------------------------------------------------------------
1 | root:::root
2 | sys:!!::liveuser
3 | network:!!::liveuser
4 | power:!!::liveuser
5 | adm:!!::liveuser
6 | wheel:!!::liveuser
7 | uucp:!!::liveuser
8 | optical:!!::liveuser
9 | rfkill:!!::liveuser
10 | video:!!::liveuser
11 | storage:!!::liveuser
12 | audio:!!::liveuser
13 | users:!!::liveuser
14 | nopasswdlogin:!::liveuser
15 | autologin:!::liveuser
16 | liveuser:!::
17 |
--------------------------------------------------------------------------------
/airootfs/etc/hostname:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 | archlinuxgui
4 |
--------------------------------------------------------------------------------
/airootfs/etc/locale.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | LANG=en_US.UTF-8
5 |
--------------------------------------------------------------------------------
/airootfs/etc/localtime:
--------------------------------------------------------------------------------
1 | /usr/share/zoneinfo/UTC
--------------------------------------------------------------------------------
/airootfs/etc/mkinitcpio.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | # vim:set ft=sh
5 | # MODULES
6 | # The following modules are loaded before any boot hooks are
7 | # run. Advanced users may wish to specify all system modules
8 | # in this array. For instance:
9 | # MODULES=(piix ide_disk reiserfs)
10 | MODULES=()
11 |
12 | # BINARIES
13 | # This setting includes any additional binaries a given user may
14 | # wish into the CPIO image. This is run last, so it may be used to
15 | # override the actual binaries included by a given hook
16 | # BINARIES are dependency parsed, so you may safely ignore libraries
17 | BINARIES=()
18 |
19 | # FILES
20 | # This setting is similar to BINARIES above, however, files are added
21 | # as-is and are not parsed in any way. This is useful for config files.
22 | FILES=()
23 |
24 | # HOOKS
25 | # This is the most important setting in this file. The HOOKS control the
26 | # modules and scripts added to the image, and what happens at boot time.
27 | # Order is important, and it is recommended that you do not change the
28 | # order in which HOOKS are added. Run 'mkinitcpio -H ' for
29 | # help on a given hook.
30 | # 'base' is _required_ unless you know precisely what you are doing.
31 | # 'udev' is _required_ in order to automatically load modules
32 | # 'filesystems' is _required_ unless you specify your fs modules in MODULES
33 | # Examples:
34 | ## This setup specifies all modules in the MODULES setting above.
35 | ## No raid, lvm2, or encrypted root is needed.
36 | # HOOKS=(base)
37 | #
38 | ## This setup will autodetect all modules for your system and should
39 | ## work as a sane default
40 | # HOOKS=(base udev autodetect block filesystems)
41 | #
42 | ## This setup will generate a 'full' image which supports most systems.
43 | ## No autodetection is done.
44 | # HOOKS=(base udev block filesystems)
45 | #
46 | ## This setup assembles a pata mdadm array with an encrypted root FS.
47 | ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
48 | # HOOKS=(base udev block mdadm encrypt filesystems)
49 | #
50 | ## This setup loads an lvm2 volume group on a usb device.
51 | # HOOKS=(base udev block lvm2 filesystems)
52 | #
53 | ## NOTE: If you have /usr on a separate partition, you MUST include the
54 | # usr, fsck and shutdown hooks.
55 | HOOKS=(base udev modconf memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
56 |
57 | # COMPRESSION
58 | # Use this to compress the initramfs image. By default, gzip compression
59 | # is used. Use 'cat' to create an uncompressed image.
60 | #COMPRESSION="gzip"
61 | #COMPRESSION="bzip2"
62 | #COMPRESSION="lzma"
63 | #COMPRESSION="xz"
64 | #COMPRESSION="lzop"
65 | #COMPRESSION="lz4"
66 | COMPRESSION="zstd"
67 |
68 | # COMPRESSION_OPTIONS
69 | # Additional options for the compressor
70 | #COMPRESSION_OPTIONS=()
71 |
--------------------------------------------------------------------------------
/airootfs/etc/mkinitcpio.d/alg:
--------------------------------------------------------------------------------
1 | # mkinitcpio preset file for the 'linux' package on archiso
2 |
3 | PRESETS=('default' 'fallback')
4 |
5 | ALL_kver='/boot/vmlinuz-linux-zen'
6 | ALL_config='/etc/mkinitcpio.conf'
7 |
8 | #default_config="/etc/mkinitcpio.conf"
9 | default_image="/boot/initramfs-linux-zen.img"
10 | #default_options=""
11 |
12 | #fallback_config="/etc/mkinitcpio.conf"
13 | fallback_image="/boot/initramfs-linux-zen-fallback.img"
14 | fallback_options="-S autodetect"
15 |
--------------------------------------------------------------------------------
/airootfs/etc/mkinitcpio.d/linux.preset:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | # mkinitcpio preset file for the 'linux-zen' package on archiso
5 |
6 | PRESETS=('archiso')
7 |
8 | ALL_kver='/boot/vmlinuz-linux-zen'
9 | ALL_config='/etc/mkinitcpio.conf'
10 |
11 | archiso_image="/boot/initramfs-linux-zen.img"
12 |
--------------------------------------------------------------------------------
/airootfs/etc/mkinitcpio.d/linux.preset.bak:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | # mkinitcpio preset file for the 'linux' package on archiso
5 |
6 | PRESETS=('archiso')
7 |
8 | ALL_kver='/boot/vmlinuz-linux'
9 | ALL_config='/etc/mkinitcpio.conf'
10 |
11 | archiso_image="/boot/initramfs-linux.img"
12 |
--------------------------------------------------------------------------------
/airootfs/etc/motd:
--------------------------------------------------------------------------------
1 | Welcome to Arch Linux.
2 |
--------------------------------------------------------------------------------
/airootfs/etc/pacman.conf:
--------------------------------------------------------------------------------
1 | #
2 | # /etc/pacman.conf
3 | #
4 | # See the pacman.conf(5) manpage for option and repository directives
5 | #
6 | # SPDX-License-Identifier: GPL-3.0-or-later
7 |
8 | #
9 | # GENERAL OPTIONS
10 | #
11 | [options]
12 | # The following paths are commented out with their default values listed.
13 | # If you wish to use different paths, uncomment and update the paths.
14 | #RootDir = /
15 | #DBPath = /var/lib/pacman/
16 | #CacheDir = /var/cache/pacman/pkg/
17 | #LogFile = /var/log/pacman.log
18 | #GPGDir = /etc/pacman.d/gnupg/
19 | #HookDir = /etc/pacman.d/hooks/
20 | HoldPkg = pacman glibc
21 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
22 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
23 | #CleanMethod = KeepInstalled
24 | Architecture = auto
25 |
26 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
27 | #IgnorePkg =
28 | #IgnoreGroup =
29 |
30 | #NoUpgrade =
31 | #NoExtract =
32 |
33 | # Misc options
34 | #UseSyslog
35 | Color
36 | ParallelDownloads = 5
37 | ILoveCandy
38 | # We cannot check disk space from within a chroot environment
39 | #CheckSpace
40 | #VerbosePkgLists
41 |
42 | # By default, pacman accepts packages signed by keys that its local keyring
43 | # trusts (see pacman-key and its man page), as well as unsigned packages.
44 | SigLevel = Required DatabaseOptional
45 | LocalFileSigLevel = Optional
46 | #RemoteFileSigLevel = Required
47 |
48 | # NOTE: You must run `pacman-key --init` before first using pacman; the local
49 | # keyring can then be populated with the keys of all official Arch Linux
50 | # packagers with `pacman-key --populate archlinux`.
51 |
52 | #
53 | # REPOSITORIES
54 | # - can be defined here or included from another file
55 | # - pacman will search repositories in the order defined here
56 | # - local/custom mirrors can be added here or in separate files
57 | # - repositories listed first will take precedence when packages
58 | # have identical names, regardless of version number
59 | # - URLs will have $repo replaced by the name of the current repo
60 | # - URLs will have $arch replaced by the name of the architecture
61 | #
62 | # Repository entries are of the format:
63 | # [repo-name]
64 | # Server = ServerName
65 | # Include = IncludePath
66 | #
67 | # The header [repo-name] is crucial - it must be present and
68 | # uncommented to enable the repo.
69 | #
70 |
71 | # The testing repositories are disabled by default. To enable, uncomment the
72 | # repo name header and Include lines. You can add preferred servers immediately
73 | # after the header, and they will be used before the default mirrors.
74 |
75 | #[testing]
76 | #Include = /etc/pacman.d/mirrorlist
77 |
78 | [core]
79 | Include = /etc/pacman.d/mirrorlist
80 |
81 | [extra]
82 | Include = /etc/pacman.d/mirrorlist
83 |
84 | #[community-testing]
85 | #Include = /etc/pacman.d/mirrorlist
86 |
87 | [community]
88 | Include = /etc/pacman.d/mirrorlist
89 |
90 | # If you want to run 32 bit applications on your x86_64 system,
91 | # enable the multilib repositories as required here.
92 |
93 | #[multilib-testing]
94 | #Include = /etc/pacman.d/mirrorlist
95 |
96 | [multilib]
97 | Include = /etc/pacman.d/mirrorlist
98 |
99 | # An example of a custom package repository. See the pacman manpage for
100 | # tips on creating your own repositories.
101 | #[custom]
102 | #SigLevel = Optional TrustAll
103 | #Server = file:///home/custompkgs
104 |
105 | [chaotic-aur]
106 | Include = /etc/pacman.d/chaotic-mirrorlist
107 |
--------------------------------------------------------------------------------
/airootfs/etc/pacman.d/chaotic-mirrorlist.bak:
--------------------------------------------------------------------------------
1 | # Randomly pick one of the mirrors below (except CDN)
2 | # - This is GOOD with with Pacman 6+ parallel downloads;
3 | # - This is BAD with powerpill;
4 | # - This helps us not overusing one specific mirror;
5 | # - But feel free to comment it and use the list below instead.
6 | Server = https://random-mirror.chaotic.cx/$repo/$arch
7 |
8 | # CDN
9 | # By: Fosshost (Takes 4 hours to sync updates - DB comes from a always fresh mirror)
10 | Server = https://cdn-mirror.chaotic.cx/$repo/$arch
11 |
12 | # Brazil
13 | # * By: UFSCar (dead right now)
14 | #Server = https://br-sp-mirror.chaotic.cx/$repo/$arch
15 |
16 | # USA
17 | # * Washington, By: LordKitsuna
18 | Server = https://us-wa-mirror.chaotic.cx/$repo/$arch
19 | # * Utah, By: ash (@the_ashh on telegram)
20 | Server = https://us-ut-mirror.chaotic.cx/$repo/$arch
21 | # * Los Angeles - CA, By: IRC-Nerds
22 | Server = https://us-ca-mirror.chaotic.cx/$repo/$arch
23 |
24 | # Netherlands
25 | # * By: Easy Lee
26 | Server = https://nl-mirror.chaotic.cx/$repo/$arch
27 |
28 | # Burgos, Spain
29 | # * By: JKANetwork
30 | Server = https://es-mirror.chaotic.cx/$repo/$arch
31 |
32 | # Germany
33 | # * By: Nico
34 | Server = https://de-1-mirror.chaotic.cx/$repo/$arch
35 | # * By: ParanoidBangL (without HTTPS)
36 | Server = http://de-2-mirror.chaotic.cx/$repo/$arch
37 | # * By: ptr1337
38 | Server = https://de-3-mirror.chaotic.cx/$repo/$arch
39 | # * By: redgloboli
40 | Server = https://de-4-mirror.chaotic.cx/$repo/$arch
41 |
42 | # Brussels, Belgium
43 | # * By: Belnet, the Belgian Education and Research Network
44 | Server = https://be-bru-mirror.chaotic.cx/$repo/$arch
45 |
46 | # Seoul, Korea
47 | # * By: Ryoichi
48 | Server = https://kr-mirror.chaotic.cx/$repo/$arch
49 |
50 | # Bulgaria
51 | # * By: Sudo Man
52 | Server = https://bg-mirror.chaotic.cx/$repo/$arch
53 |
54 | # Toronto, Canada
55 | # By freebird54
56 | Server = https://ca-mirror.chaotic.cx/$repo/$arch
57 |
--------------------------------------------------------------------------------
/airootfs/etc/pacman.d/mirrorlist:
--------------------------------------------------------------------------------
1 | ##
2 | ## Arch Linux repository mirrorlist
3 | ## Generated on 2021-04-05
4 | ##
5 |
6 | # Worldwide
7 | Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
8 | Server = http://mirrors.evowise.com/archlinux/$repo/os/$arch
9 | Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
10 | Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch
11 | # Australia
12 | Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
13 | Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
14 | Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
15 | Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
16 | Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
17 | Server = http://mirror.launtel.net.au/repo/arch/$repo/os/$arch
18 | Server = https://mirror.launtel.net.au/repo/arch/$repo/os/$arch
19 | Server = http://arch.lucassymons.net/$repo/os/$arch
20 | Server = https://arch.lucassymons.net/$repo/os/$arch
21 | Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
22 | Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
23 | Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
24 | # Austria
25 | Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
26 | Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
27 | Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
28 | Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
29 | # Bangladesh
30 | Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch
31 | # Belarus
32 | Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
33 | Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
34 | # Belgium
35 | Server = http://archlinux.cu.be/$repo/os/$arch
36 | Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
37 | Server = http://mirror.tiguinet.net/arch/$repo/os/$arch
38 | # Bosnia and Herzegovina
39 | Server = http://archlinux.mirror.ba/$repo/os/$arch
40 | # Brazil
41 | Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
42 | Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
43 | Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
44 | Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
45 | Server = http://linorg.usp.br/archlinux/$repo/os/$arch
46 | Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
47 | Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
48 | Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch
49 | # Bulgaria
50 | Server = https://mirror.darklinux.uk/archlinux/$repo/os/$arch
51 | Server = http://mirror.host.ag/archlinux/$repo/os/$arch
52 | Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
53 | Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
54 | Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch
55 | Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
56 | Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
57 | # Canada
58 | Server = https://mirror.0xem.ma/arch/$repo/os/$arch
59 | Server = http://mirror.cedille.club/archlinux/$repo/os/$arch
60 | Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch
61 | Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
62 | Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
63 | Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch
64 | Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch
65 | Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
66 | Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
67 | Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
68 | Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
69 | Server = http://mirror.scd31.com/arch/$repo/os/$arch
70 | Server = https://mirror.scd31.com/arch/$repo/os/$arch
71 | Server = http://mirror.sergal.org/archlinux/$repo/os/$arch
72 | Server = https://mirror.sergal.org/archlinux/$repo/os/$arch
73 | # Chile
74 | Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch
75 | Server = http://mirror.archlinux.cl/$repo/os/$arch
76 | Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
77 | Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
78 | Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch
79 | Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch
80 | # China
81 | Server = http://mirrors.163.com/archlinux/$repo/os/$arch
82 | Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
83 | Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
84 | Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
85 | Server = https://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
86 | Server = http://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch
87 | Server = https://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch
88 | Server = http://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
89 | Server = https://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
90 | Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
91 | Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
92 | Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
93 | Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
94 | Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
95 | Server = http://mirror.redrock.team/archlinux/$repo/os/$arch
96 | Server = https://mirror.redrock.team/archlinux/$repo/os/$arch
97 | Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch
98 | Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
99 | Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
100 | Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
101 | Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
102 | Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
103 | Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch
104 | # Colombia
105 | Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch
106 | # Croatia
107 | Server = http://archlinux.iskon.hr/$repo/os/$arch
108 | # Czechia
109 | Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch
110 | Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch
111 | Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch
112 | Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
113 | Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
114 | Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch
115 | Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch
116 | Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch
117 | Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch
118 | Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch
119 | Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch
120 | # Denmark
121 | Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
122 | Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch
123 | Server = http://mirror.one.com/archlinux/$repo/os/$arch
124 | Server = https://mirror.one.com/archlinux/$repo/os/$arch
125 | # Ecuador
126 | Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch
127 | Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch
128 | Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch
129 | # Estonia
130 | Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch
131 | Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch
132 | # Finland
133 | Server = https://arch.mcstrugs.org/$repo/os/$arch
134 | Server = http://arch.mirror.far.fi/$repo/os/$arch
135 | Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch
136 | Server = https://mirror.srv.fail/archlinux/$repo/os/$arch
137 | Server = http://mirror.wuki.li/archlinux/$repo/os/$arch
138 | Server = https://mirror.wuki.li/archlinux/$repo/os/$arch
139 | # France
140 | Server = http://archlinux.de-labrusse.fr/$repo/os/$arch
141 | Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
142 | Server = https://archlinux.vi-di.fr/$repo/os/$arch
143 | Server = http://mirror.arctic.lol/ArchMirror/$repo/os/$arch
144 | Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch
145 | Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch
146 | Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch
147 | Server = http://archlinux.datagr.am/$repo/os/$arch
148 | Server = https://mirrors.eric.ovh/arch/$repo/os/$arch
149 | Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
150 | Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
151 | Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch
152 | Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
153 | Server = https://archlinux.mailtunnel.eu/$repo/os/$arch
154 | Server = http://mir.archlinux.fr/$repo/os/$arch
155 | Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
156 | Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
157 | Server = http://arch.nimukaito.net/$repo/os/$arch
158 | Server = https://arch.nimukaito.net/$repo/os/$arch
159 | Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch
160 | Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch
161 | Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
162 | Server = http://archlinux.polymorf.fr/$repo/os/$arch
163 | Server = http://archlinux.rezopole.net/$repo/os/$arch
164 | Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch
165 | Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
166 | Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch
167 | Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
168 | Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
169 | Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch
170 | Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch
171 | Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch
172 | Server = http://arch.yourlabs.org/$repo/os/$arch
173 | Server = https://arch.yourlabs.org/$repo/os/$arch
174 | # Georgia
175 | Server = http://archlinux.grena.ge/$repo/os/$arch
176 | Server = https://archlinux.grena.ge/$repo/os/$arch
177 | # Germany
178 | Server = http://mirror.23media.com/archlinux/$repo/os/$arch
179 | Server = https://mirror.23media.com/archlinux/$repo/os/$arch
180 | Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
181 | Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
182 | Server = https://appuals.com/archlinux/$repo/os/$arch
183 | Server = http://artfiles.org/archlinux.org/$repo/os/$arch
184 | Server = https://mirror.bethselamin.de/$repo/os/$arch
185 | Server = http://mirror.chaoticum.net/arch/$repo/os/$arch
186 | Server = https://mirror.chaoticum.net/arch/$repo/os/$arch
187 | Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch
188 | Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch
189 | Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch
190 | Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch
191 | Server = https://mirror.dogado.de/archlinux/$repo/os/$arch
192 | Server = http://mirror.f4st.host/archlinux/$repo/os/$arch
193 | Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
194 | Server = http://ftp.fau.de/archlinux/$repo/os/$arch
195 | Server = https://ftp.fau.de/archlinux/$repo/os/$arch
196 | Server = https://pkg.fef.moe/archlinux/$repo/os/$arch
197 | Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch
198 | Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch
199 | Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch
200 | Server = https://mirror.gnomus.de/$repo/os/$arch
201 | Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch
202 | Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
203 | Server = http://archlinux.honkgong.info/$repo/os/$arch
204 | Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
205 | Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
206 | Server = http://archlinux.mirror.iphh.net/$repo/os/$arch
207 | Server = http://arch.jensgutermuth.de/$repo/os/$arch
208 | Server = https://arch.jensgutermuth.de/$repo/os/$arch
209 | Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch
210 | Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch
211 | Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
212 | Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
213 | Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
214 | Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
215 | Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
216 | Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
217 | Server = https://mirror.pkgbuild.com/$repo/os/$arch
218 | Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch
219 | Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch
220 | Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch
221 | Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch
222 | Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch
223 | Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch
224 | Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch
225 | Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch
226 | Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch
227 | Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch
228 | Server = http://phinau.de/arch/$repo/os/$arch
229 | Server = https://phinau.de/arch/$repo/os/$arch
230 | Server = https://mirror.pseudoform.org/$repo/os/$arch
231 | Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch
232 | Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
233 | Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
234 | Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch
235 | Server = http://mirror.satis-faction.de/archlinux/$repo/os/$arch
236 | Server = https://mirror.satis-faction.de/archlinux/$repo/os/$arch
237 | Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
238 | Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch
239 | Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
240 | Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
241 | Server = http://archlinux.thaller.ws/$repo/os/$arch
242 | Server = https://archlinux.thaller.ws/$repo/os/$arch
243 | Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
244 | Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch
245 | Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch
246 | Server = http://mirror.undisclose.de/archlinux/$repo/os/$arch
247 | Server = https://mirror.undisclose.de/archlinux/$repo/os/$arch
248 | Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
249 | Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch
250 | Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
251 | Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch
252 | Server = https://arch.unixpeople.org/$repo/os/$arch
253 | Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch
254 | Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch
255 | Server = http://mirror.wtnet.de/arch/$repo/os/$arch
256 | Server = https://mirror.wtnet.de/arch/$repo/os/$arch
257 | Server = http://arch.mirror.zachlge.org/$repo/os/$arch
258 | Server = https://arch.mirror.zachlge.org/$repo/os/$arch
259 | # Greece
260 | Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch
261 | Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch
262 | Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch
263 | Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch
264 | Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch
265 | # Hong Kong
266 | Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch
267 | Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch
268 | Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch
269 | Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
270 | Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
271 | Server = https://arch-mirror.wtako.net/$repo/os/$arch
272 | Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
273 | Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch
274 | # Hungary
275 | Server = http://ftp.energia.mta.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
276 | Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch
277 | Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
278 | Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
279 | Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
280 | Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
281 | Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
282 | Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
283 | # Iceland
284 | Server = http://mirror.system.is/arch/$repo/os/$arch
285 | Server = https://mirror.system.is/arch/$repo/os/$arch
286 | # India
287 | Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
288 | Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
289 | Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
290 | # Indonesia
291 | Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch
292 | Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch
293 | Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch
294 | Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch
295 | Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
296 | Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
297 | Server = http://mirror.labkom.id/archlinux/$repo/os/$arch
298 | Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch
299 | Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch
300 | Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch
301 | Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
302 | Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
303 | Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
304 | # Iran
305 | Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch
306 | Server = http://mirror.nak-mci.ir/arch/$repo/os/$arch
307 | Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch
308 | Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch
309 | # Ireland
310 | Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
311 | Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
312 | # Israel
313 | Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
314 | Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
315 | Server = https://archlinux.mivzakim.net/$repo/os/$arch
316 | # Italy
317 | Server = https://archmirror.it/repos/$repo/os/$arch
318 | Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch
319 | Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
320 | Server = http://archlinux.mirror.server24.net/$repo/os/$arch
321 | Server = https://archlinux.mirror.server24.net/$repo/os/$arch
322 | # Japan
323 | Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
324 | Server = https://mirrors.cat.net/archlinux/$repo/os/$arch
325 | Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch
326 | Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
327 | Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
328 | # Kazakhstan
329 | Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch
330 | Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch
331 | Server = http://mirror.ps.kz/archlinux/$repo/os/$arch
332 | Server = https://mirror.ps.kz/archlinux/$repo/os/$arch
333 | # Kenya
334 | Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
335 | Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
336 | # Latvia
337 | Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch
338 | Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch
339 | # Lithuania
340 | Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
341 | Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch
342 | Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
343 | Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
344 | # Luxembourg
345 | Server = http://archlinux.mirror.root.lu/$repo/os/$arch
346 | # Mexico
347 | Server = https://arch.mirror.jsc.mx/$repo/os/$arch
348 | # Moldova
349 | Server = http://mirror.ihost.md/archlinux/$repo/os/$arch
350 | Server = https://mirror.ihost.md/archlinux/$repo/os/$arch
351 | # Monaco
352 | Server = http://archlinux.qontinuum.space/$repo/os/$arch
353 | Server = https://archlinux.qontinuum.space:4443/$repo/os/$arch
354 | # Netherlands
355 | Server = https://archlinux.beccacervello.it/archlinux/$repo/os/$arch
356 | Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch
357 | Server = http://mirror.easylee.nl/archlinux/$repo/os/$arch
358 | Server = https://mirror.easylee.nl/archlinux/$repo/os/$arch
359 | Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
360 | Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
361 | Server = https://arch.jeweet.net/$repo/os/$arch
362 | Server = http://mirror.koddos.net/archlinux/$repo/os/$arch
363 | Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
364 | Server = http://arch.mirrors.lavatech.top/$repo/os/$arch
365 | Server = https://arch.mirrors.lavatech.top/$repo/os/$arch
366 | Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
367 | Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
368 | Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch
369 | Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch
370 | Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch
371 | Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch
372 | Server = http://mirror.mijn.host/archlinux/$repo/os/$arch
373 | Server = https://mirror.mijn.host/archlinux/$repo/os/$arch
374 | Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch
375 | Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch
376 | Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
377 | Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch
378 | Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch
379 | Server = http://mirror.serverion.com/archlinux/$repo/os/$arch
380 | Server = https://mirror.serverion.com/archlinux/$repo/os/$arch
381 | Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
382 | Server = http://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
383 | Server = https://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
384 | Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch
385 | Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
386 | Server = http://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
387 | Server = https://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
388 | Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch
389 | Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch
390 | # New Caledonia
391 | Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
392 | Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch
393 | Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch
394 | # New Zealand
395 | Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
396 | Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
397 | Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
398 | Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch
399 | # North Macedonia
400 | Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
401 | Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch
402 | Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
403 | Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch
404 | # Norway
405 | Server = http://mirror.archlinux.no/$repo/os/$arch
406 | Server = https://mirror.archlinux.no/$repo/os/$arch
407 | Server = http://archlinux.uib.no/$repo/os/$arch
408 | Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
409 | Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
410 | Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch
411 | # Pakistan
412 | Server = http://repo.inara.pk/archlinux/$repo/os/$arch
413 | Server = https://repo.inara.pk/archlinux/$repo/os/$arch
414 | # Paraguay
415 | Server = http://archlinux.mirror.py/archlinux/$repo/os/$arch
416 | # Philippines
417 | Server = http://mirror.rise.ph/archlinux/$repo/os/$arch
418 | # Poland
419 | Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
420 | Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
421 | Server = http://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
422 | Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
423 | Server = http://arch.midov.pl/arch/$repo/os/$arch
424 | Server = https://arch.midov.pl/arch/$repo/os/$arch
425 | Server = http://arch.nixlab.pl/$repo/os/$arch
426 | Server = https://arch.nixlab.pl/$repo/os/$arch
427 | Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
428 | Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
429 | Server = http://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch
430 | Server = https://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch
431 | Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch
432 | Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch
433 | Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch
434 | # Portugal
435 | Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch
436 | Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch
437 | Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
438 | Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
439 | # Romania
440 | Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch
441 | Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch
442 | Server = http://mirror.efect.ro/archlinux/$repo/os/$arch
443 | Server = https://mirror.efect.ro/archlinux/$repo/os/$arch
444 | Server = http://mirrors.go.ro/archlinux/$repo/os/$arch
445 | Server = https://mirrors.go.ro/archlinux/$repo/os/$arch
446 | Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch
447 | Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch
448 | Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch
449 | Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch
450 | Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch
451 | Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch
452 | Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch
453 | Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch
454 | Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch
455 | # Russia
456 | Server = http://mirror.surf/archlinux/$repo/os/$arch
457 | Server = https://mirror.surf/archlinux/$repo/os/$arch
458 | Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch
459 | Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch
460 | Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch
461 | Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
462 | Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
463 | Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
464 | Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch
465 | Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
466 | Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
467 | Server = http://archlinux.zepto.cloud/$repo/os/$arch
468 | # Serbia
469 | Server = http://arch.petarmaric.com/$repo/os/$arch
470 | Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
471 | # Singapore
472 | Server = http://mirror.0x.sg/archlinux/$repo/os/$arch
473 | Server = https://mirror.0x.sg/archlinux/$repo/os/$arch
474 | Server = http://mirror.aktkn.sg/archlinux/$repo/os/$arch
475 | Server = https://mirror.aktkn.sg/archlinux/$repo/os/$arch
476 | Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch
477 | Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch
478 | Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch
479 | Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch
480 | # Slovakia
481 | Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
482 | Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
483 | Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
484 | # Slovenia
485 | Server = http://archimonde.ts.si/archlinux/$repo/os/$arch
486 | Server = https://archimonde.ts.si/archlinux/$repo/os/$arch
487 | # South Africa
488 | Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
489 | Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
490 | Server = http://za.mirror.archlinux-br.org/$repo/os/$arch
491 | Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
492 | Server = http://arch.opnmirror.co.za/$repo/os/$arch
493 | Server = https://arch.opnmirror.co.za/$repo/os/$arch
494 | Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
495 | Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
496 | # South Korea
497 | Server = http://mirror.anigil.com/archlinux/$repo/os/$arch
498 | Server = https://mirror.anigil.com/archlinux/$repo/os/$arch
499 | Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch
500 | Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch
501 | Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
502 | Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
503 | Server = http://mirror.premi.st/archlinux/$repo/os/$arch
504 | Server = https://mirror.premi.st/archlinux/$repo/os/$arch
505 | # Spain
506 | Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch
507 | Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch
508 | Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch
509 | Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch
510 | Server = http://sharing.thelinuxsect.com/archlinux/$repo/os/$arch
511 | # Sweden
512 | Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
513 | Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
514 | Server = http://archlinux.dynamict.se/$repo/os/$arch
515 | Server = https://archlinux.dynamict.se/$repo/os/$arch
516 | Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch
517 | Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
518 | Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
519 | Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
520 | Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
521 | Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
522 | Server = http://tedwall.se/archlinux/$repo/os/$arch
523 | Server = https://tedwall.se/archlinux/$repo/os/$arch
524 | # Switzerland
525 | Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch
526 | Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch
527 | Server = http://mirror.init7.net/archlinux/$repo/os/$arch
528 | Server = https://mirror.init7.net/archlinux/$repo/os/$arch
529 | Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch
530 | Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch
531 | Server = https://theswissbay.ch/archlinux/$repo/os/$arch
532 | Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch
533 | # Taiwan
534 | Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch
535 | Server = http://free.nchc.org.tw/arch/$repo/os/$arch
536 | Server = https://free.nchc.org.tw/arch/$repo/os/$arch
537 | Server = http://archlinux.cs.nctu.edu.tw/$repo/os/$arch
538 | Server = http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch
539 | Server = https://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch
540 | Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
541 | Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
542 | Server = https://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
543 | # Thailand
544 | Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch
545 | Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch
546 | Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch
547 | # Turkey
548 | Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
549 | Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
550 | # Ukraine
551 | Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch
552 | Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch
553 | Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch
554 | Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch
555 | Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
556 | Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
557 | # United Kingdom
558 | Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
559 | Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
560 | Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
561 | Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
562 | Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch
563 | Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch
564 | Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch
565 | Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
566 | Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
567 | Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
568 | Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
569 | Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch
570 | Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch
571 | Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
572 | Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
573 | Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch
574 | Server = http://archlinux.mirrors.uk2.net/$repo/os/$arch
575 | Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
576 | Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
577 | # United States
578 | Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch
579 | Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
580 | Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch
581 | Server = https://america.mirror.pkgbuild.com/$repo/os/$arch
582 | Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch
583 | Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch
584 | Server = http://archlinux.surlyjake.com/archlinux/$repo/os/$arch
585 | Server = https://archlinux.surlyjake.com/archlinux/$repo/os/$arch
586 | Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch
587 | Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch
588 | Server = http://arlm.tyzoid.com/$repo/os/$arch
589 | Server = https://arlm.tyzoid.com/$repo/os/$arch
590 | Server = https://mirror.ava.dev/archlinux/$repo/os/$arch
591 | Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
592 | Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch
593 | Server = http://arch.mirror.constant.com/$repo/os/$arch
594 | Server = https://arch.mirror.constant.com/$repo/os/$arch
595 | Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
596 | Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch
597 | Server = http://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
598 | Server = https://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
599 | Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
600 | Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
601 | Server = http://mirror.ette.biz/archlinux/$repo/os/$arch
602 | Server = https://mirror.ette.biz/archlinux/$repo/os/$arch
603 | Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch
604 | Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch
605 | Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
606 | Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch
607 | Server = https://mirror.hodgepodge.dev/archlinux/$repo/os/$arch
608 | Server = http://arch.hu.fo/archlinux/$repo/os/$arch
609 | Server = https://arch.hu.fo/archlinux/$repo/os/$arch
610 | Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
611 | Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
612 | Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
613 | Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
614 | Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
615 | Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
616 | Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
617 | Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
618 | Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
619 | Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
620 | Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
621 | Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
622 | Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch
623 | Server = http://mirror.lty.me/archlinux/$repo/os/$arch
624 | Server = https://mirror.lty.me/archlinux/$repo/os/$arch
625 | Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
626 | Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
627 | Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
628 | Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch
629 | Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch
630 | Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch
631 | Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
632 | Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
633 | Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch
634 | Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch
635 | Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch
636 | Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
637 | Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
638 | Server = http://archmirror1.octyl.net/$repo/os/$arch
639 | Server = https://archmirror1.octyl.net/$repo/os/$arch
640 | Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
641 | Server = http://arch.mirrors.pair.com/$repo/os/$arch
642 | Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
643 | Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
644 | Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
645 | Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
646 | Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
647 | Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
648 | Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
649 | Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
650 | Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch
651 | Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch
652 | Server = https://arch.rrig.gs/$repo/os/$arch
653 | Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch
654 | Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch
655 | Server = http://mirror.siena.edu/archlinux/$repo/os/$arch
656 | Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch
657 | Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch
658 | Server = http://arch.mirror.square-r00t.net/$repo/os/$arch
659 | Server = https://arch.mirror.square-r00t.net/$repo/os/$arch
660 | Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch
661 | Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch
662 | Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch
663 | Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch
664 | Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
665 | Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
666 | Server = http://mirror.umd.edu/archlinux/$repo/os/$arch
667 | Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch
668 | Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
669 | Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch
670 | Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch
671 | Server = https://zxcvfdsa.com/arch/$repo/os/$arch
672 | # Vietnam
673 | Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch
674 | Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch
675 |
--------------------------------------------------------------------------------
/airootfs/etc/passwd:
--------------------------------------------------------------------------------
1 | root:x:0:0:root:/root:/usr/bin/zsh
2 | liveuser:x:1000:1000::/home/liveuser:/bin/zsh
3 |
--------------------------------------------------------------------------------
/airootfs/etc/sddm.conf.d/autologin.conf:
--------------------------------------------------------------------------------
1 | [Autologin]
2 | # Whether sddm should automatically log back into sessions when they exit
3 | Relogin=false
4 |
5 | # Name of session file for autologin session (if empty try last logged in)
6 | Session=plasma
7 |
8 | # Username for autologin session
9 | User=liveuser
10 |
--------------------------------------------------------------------------------
/airootfs/etc/shadow:
--------------------------------------------------------------------------------
1 | root::14871::::::
2 | liveuser::14871::::::
--------------------------------------------------------------------------------
/airootfs/etc/ssh/sshd_config:
--------------------------------------------------------------------------------
1 | # $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
2 |
3 | # This is the sshd server system-wide configuration file. See
4 | # sshd_config(5) for more information.
5 |
6 | # This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/bin
7 |
8 | # The strategy used for options in the default sshd_config shipped with
9 | # OpenSSH is to specify options with their default value where
10 | # possible, but leave them commented. Uncommented options override the
11 | # default value.
12 |
13 | #Port 22
14 | #AddressFamily any
15 | #ListenAddress 0.0.0.0
16 | #ListenAddress ::
17 |
18 | #HostKey /etc/ssh/ssh_host_rsa_key
19 | #HostKey /etc/ssh/ssh_host_ecdsa_key
20 | #HostKey /etc/ssh/ssh_host_ed25519_key
21 |
22 | # Ciphers and keying
23 | #RekeyLimit default none
24 |
25 | # Logging
26 | #SyslogFacility AUTH
27 | #LogLevel INFO
28 |
29 | # Authentication:
30 |
31 | #LoginGraceTime 2m
32 | PermitRootLogin yes
33 | #StrictModes yes
34 | #MaxAuthTries 6
35 | #MaxSessions 10
36 |
37 | #PubkeyAuthentication yes
38 |
39 | # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
40 | # but this is overridden so installations will only check .ssh/authorized_keys
41 | AuthorizedKeysFile .ssh/authorized_keys
42 |
43 | #AuthorizedPrincipalsFile none
44 |
45 | #AuthorizedKeysCommand none
46 | #AuthorizedKeysCommandUser nobody
47 |
48 | # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
49 | #HostbasedAuthentication no
50 | # Change to yes if you don't trust ~/.ssh/known_hosts for
51 | # HostbasedAuthentication
52 | #IgnoreUserKnownHosts no
53 | # Don't read the user's ~/.rhosts and ~/.shosts files
54 | #IgnoreRhosts yes
55 |
56 | # To disable tunneled clear text passwords, change to no here!
57 | #PasswordAuthentication yes
58 | #PermitEmptyPasswords no
59 |
60 | # Change to no to disable s/key passwords
61 | ChallengeResponseAuthentication no
62 |
63 | # Kerberos options
64 | #KerberosAuthentication no
65 | #KerberosOrLocalPasswd yes
66 | #KerberosTicketCleanup yes
67 | #KerberosGetAFSToken no
68 |
69 | # GSSAPI options
70 | #GSSAPIAuthentication no
71 | #GSSAPICleanupCredentials yes
72 |
73 | # Set this to 'yes' to enable PAM authentication, account processing,
74 | # and session processing. If this is enabled, PAM authentication will
75 | # be allowed through the ChallengeResponseAuthentication and
76 | # PasswordAuthentication. Depending on your PAM configuration,
77 | # PAM authentication via ChallengeResponseAuthentication may bypass
78 | # the setting of "PermitRootLogin without-password".
79 | # If you just want the PAM account and session checks to run without
80 | # PAM authentication, then enable this but set PasswordAuthentication
81 | # and ChallengeResponseAuthentication to 'no'.
82 | UsePAM yes
83 |
84 | #AllowAgentForwarding yes
85 | #AllowTcpForwarding yes
86 | #GatewayPorts no
87 | #X11Forwarding no
88 | #X11DisplayOffset 10
89 | #X11UseLocalhost yes
90 | #PermitTTY yes
91 | PrintMotd no # pam does that
92 | #PrintLastLog yes
93 | #TCPKeepAlive yes
94 | #PermitUserEnvironment no
95 | #Compression delayed
96 | #ClientAliveInterval 0
97 | #ClientAliveCountMax 3
98 | #UseDNS no
99 | #PidFile /run/sshd.pid
100 | #MaxStartups 10:30:100
101 | #PermitTunnel no
102 | #ChrootDirectory none
103 | #VersionAddendum none
104 |
105 | # no default banner path
106 | #Banner none
107 |
108 | # override default of no subsystems
109 | Subsystem sftp /usr/lib/ssh/sftp-server
110 |
111 | # Example of overriding settings on a per-user basis
112 | #Match User anoncvs
113 | # X11Forwarding no
114 | # AllowTcpForwarding no
115 | # PermitTTY no
116 | # ForceCommand cvs server
117 |
--------------------------------------------------------------------------------
/airootfs/etc/sudoers.d/g_wheel:
--------------------------------------------------------------------------------
1 | %wheel ALL=(ALL) NOPASSWD: ALL
2 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/journald.conf:
--------------------------------------------------------------------------------
1 | # This file is part of systemd.
2 | #
3 | # systemd is free software; you can redistribute it and/or modify it
4 | # under the terms of the GNU Lesser General Public License as published by
5 | # the Free Software Foundation; either version 2.1 of the License, or
6 | # (at your option) any later version.
7 | #
8 | # Entries in this file show the compile time defaults.
9 | # You can change settings by editing this file.
10 | # Defaults can be restored by simply deleting this file.
11 | #
12 | # See journald.conf(5) for details.
13 |
14 | [Journal]
15 | Storage=volatile
16 | #Compress=yes
17 | #Seal=yes
18 | #SplitMode=uid
19 | #SyncIntervalSec=5m
20 | #RateLimitIntervalSec=30s
21 | #RateLimitBurst=10000
22 | #SystemMaxUse=
23 | #SystemKeepFree=
24 | #SystemMaxFileSize=
25 | #SystemMaxFiles=100
26 | #RuntimeMaxUse=
27 | #RuntimeKeepFree=
28 | #RuntimeMaxFileSize=
29 | #RuntimeMaxFiles=100
30 | #MaxRetentionSec=
31 | #MaxFileSec=1month
32 | #ForwardToSyslog=no
33 | #ForwardToKMsg=no
34 | #ForwardToConsole=no
35 | #ForwardToWall=yes
36 | #TTYPath=/dev/console
37 | #MaxLevelStore=debug
38 | #MaxLevelSyslog=debug
39 | #MaxLevelKMsg=notice
40 | #MaxLevelConsole=info
41 | #MaxLevelWall=emerg
42 | #LineMax=48K
43 | #ReadKMsg=yes
44 | #Audit=yes
45 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Journal]
5 | Storage=volatile
6 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/logind.conf:
--------------------------------------------------------------------------------
1 | # This file is part of systemd.
2 | #
3 | # systemd is free software; you can redistribute it and/or modify it
4 | # under the terms of the GNU Lesser General Public License as published by
5 | # the Free Software Foundation; either version 2.1 of the License, or
6 | # (at your option) any later version.
7 | #
8 | # Entries in this file show the compile time defaults.
9 | # You can change settings by editing this file.
10 | # Defaults can be restored by simply deleting this file.
11 | #
12 | # See logind.conf(5) for details.
13 |
14 | [Login]
15 | #NAutoVTs=6
16 | #ReserveVT=6
17 | #KillUserProcesses=no
18 | #KillOnlyUsers=
19 | #KillExcludeUsers=root
20 | #InhibitDelayMaxSec=5
21 | #HandlePowerKey=poweroff
22 | HandleSuspendKey=ignore
23 | HandleHibernateKey=ignore
24 | HandleLidSwitch=ignore
25 | #HandleLidSwitchExternalPower=suspend
26 | #HandleLidSwitchDocked=ignore
27 | #PowerKeyIgnoreInhibited=no
28 | #SuspendKeyIgnoreInhibited=no
29 | #HibernateKeyIgnoreInhibited=no
30 | #LidSwitchIgnoreInhibited=yes
31 | #HoldoffTimeoutSec=30s
32 | #IdleAction=ignore
33 | #IdleActionSec=30min
34 | #RuntimeDirectorySize=10%
35 | #RuntimeDirectoryInodes=400k
36 | #RemoveIPC=yes
37 | #InhibitorsMax=8192
38 | #SessionsMax=8192
39 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Login]
5 | HandleSuspendKey=ignore
6 | HandleHibernateKey=ignore
7 | HandleLidSwitch=ignore
8 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/network/20-ethernet.network:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Match]
5 | Name=en*
6 | Name=eth*
7 |
8 | [Network]
9 | DHCP=yes
10 | IPv6PrivacyExtensions=yes
11 |
12 | [DHCP]
13 | RouteMetric=512
14 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/network/20-wireless.network:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Match]
5 | Name=wlp*
6 | Name=wlan*
7 |
8 | [Network]
9 | DHCP=yes
10 | IPv6PrivacyExtensions=yes
11 |
12 | [DHCP]
13 | RouteMetric=1024
14 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/choose-mirror.service:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Unit]
5 | Description=Choose mirror from the kernel command line
6 | ConditionKernelCommandLine=mirror
7 |
8 | [Service]
9 | Type=oneshot
10 | ExecStart=/usr/local/bin/choose-mirror
11 |
12 | [Install]
13 | WantedBy=multi-user.target
14 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/cloud-config.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/cloud-final.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/cloud-init-local.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/cloud-init.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-networkd.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/NetworkManager-dispatcher.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-resolved.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/default.target:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/graphical.target
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/display-manager.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/sddm.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Unit]
5 | Description=Temporary /etc/pacman.d/gnupg directory
6 |
7 | [Mount]
8 | What=tmpfs
9 | Where=/etc/pacman.d/gnupg
10 | Type=tmpfs
11 | Options=mode=0755
12 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Service]
5 | ExecStart=
6 | ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux
7 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/livecd-alsa-unmuter.service:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Unit]
5 | Description=Unmute All Sound Card Controls For Use With The Live Arch Environment
6 | # This needs to run after the audio device becomes available.
7 | Wants=systemd-udev-settle.service
8 | After=systemd-udev-settle.service sound.target
9 | ConditionKernelCommandLine=accessibility=on
10 |
11 | [Service]
12 | Type=oneshot
13 | ExecStart=/usr/local/bin/livecd-sound -u
14 |
15 | [Install]
16 | WantedBy=sound.target
17 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/livecd-talk.service:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Unit]
5 | Description=Screen reader service
6 | After=livecd-alsa-unmuter.service
7 | Before=getty@tty1.service
8 | ConditionKernelCommandLine=accessibility=on
9 |
10 | [Service]
11 | Type=oneshot
12 | TTYPath=/dev/tty13
13 | ExecStartPre=/usr/bin/chvt 13
14 | ExecStart=/usr/local/bin/livecd-sound -p
15 | ExecStartPost=/usr/bin/chvt 1
16 | ExecStartPost=systemctl start espeakup.service
17 | StandardInput=tty
18 | TTYVHangup=yes
19 | TTYVTDisallocate=yes
20 | RemainAfterExit=true
21 |
22 | [Install]
23 | WantedBy=multi-user.target
24 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/NetworkManager.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/NetworkManager.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service:
--------------------------------------------------------------------------------
1 | ../choose-mirror.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/iwd.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service:
--------------------------------------------------------------------------------
1 | /etc/systemd/system/livecd-talk.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service:
--------------------------------------------------------------------------------
1 | ../pacman-init.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/reflector.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/sshd.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-networkd.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-resolved.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/vboxservice.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/NetworkManager-wait-online.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-networkd-wait-online.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/pacman-init.service:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Unit]
5 | Description=Initializes Pacman keyring
6 | Wants=haveged.service
7 | After=haveged.service
8 | Requires=etc-pacman.d-gnupg.mount
9 | After=etc-pacman.d-gnupg.mount
10 |
11 | [Service]
12 | Type=oneshot
13 | RemainAfterExit=yes
14 | ExecStart=/usr/bin/pacman-key --init
15 | ExecStart=/usr/bin/pacman-key --populate archlinux
16 | ExecStart=/usr/bin/pacman-key --populate chaotic
17 |
18 | [Install]
19 | WantedBy=multi-user.target
20 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/reflector.service.d/archiso.conf:
--------------------------------------------------------------------------------
1 | [Unit]
2 | ConditionKernelCommandLine=!mirror
3 |
4 | [Service]
5 | Restart=on-failure
6 | RestartSec=10
7 |
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket:
--------------------------------------------------------------------------------
1 | /usr/lib/systemd/system/systemd-networkd.socket
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service:
--------------------------------------------------------------------------------
1 | ../livecd-alsa-unmuter.service
--------------------------------------------------------------------------------
/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | [Service]
5 | ExecStart=
6 | ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any
7 |
--------------------------------------------------------------------------------
/airootfs/etc/xdg/reflector/reflector.conf:
--------------------------------------------------------------------------------
1 | # Reflector configuration file for the systemd service.
2 |
3 | --save /etc/pacman.d/mirrorlist
4 | --protocol https
5 | --latest 70
6 | --sort rate
7 |
--------------------------------------------------------------------------------
/airootfs/root/.automated_script.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | script_cmdline ()
4 | {
5 | local param
6 | for param in $(< /proc/cmdline); do
7 | case "${param}" in
8 | script=*) echo "${param#*=}" ; return 0 ;;
9 | esac
10 | done
11 | }
12 |
13 | automated_script ()
14 | {
15 | local script rt
16 | script="$(script_cmdline)"
17 | if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then
18 | if [[ "${script}" =~ ^((http|https|ftp)://) ]]; then
19 | curl "${script}" --retry-connrefused -s -o /tmp/startup_script >/dev/null
20 | rt=$?
21 | else
22 | cp "${script}" /tmp/startup_script
23 | rt=$?
24 | fi
25 | if [[ ${rt} -eq 0 ]]; then
26 | chmod +x /tmp/startup_script
27 | /tmp/startup_script
28 | fi
29 | fi
30 | }
31 |
32 | if [[ $(tty) == "/dev/tty1" ]]; then
33 | automated_script
34 | fi
35 |
--------------------------------------------------------------------------------
/airootfs/root/.zlogin:
--------------------------------------------------------------------------------
1 | # fix for screen readers
2 | if grep -Fq 'accessibility=' /proc/cmdline &> /dev/null; then
3 | setopt SINGLE_LINE_ZLE
4 | fi
5 |
6 | ~/.automated_script.sh
7 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/Installation_guide:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | #
3 | # SPDX-License-Identifier: GPL-3.0-or-later
4 |
5 | exec lynx 'https://wiki.archlinux.org/index.php/Installation_guide'
6 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/alg-finalisation:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | chmod 750 /etc/sudoers.d
4 | chmod 750 /etc/polkit-1/rules.d
5 | chgrp polkitd /etc/polkit-1/rules.d
6 | chmod -v 750 /root
7 |
8 | rm -vf /etc/sudoers.d/g_wheel
9 | rm -vf /etc/sddm.conf.d/autologin.conf
10 | rm -vf /etc/polkit-1/rules.d/49-nopasswd_global.rules
11 | rm -vr /etc/systemd/system/etc-pacman.d-gnupg.mount
12 | rm -vf /root/{.automated_script.sh,.zlogin}
13 |
14 | rm /usr/local/bin/{alg-finalisation,livecd-sound,Installation_guide}
15 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/alg-pacman-populate:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | echo "#################################"
3 | echo "Start alg-pacman-populate"
4 | echo "#################################"
5 |
6 | echo "Populate Core Team keys"
7 | echo "#################################"
8 | pacman-key --init
9 | pacman-key --populate archlinux
10 | pacman-key --populate chaotic
11 |
12 | echo "#################################"
13 | echo "End alg-pacman-populate"
14 | echo "#################################"
15 | rm /usr/local/bin/alg-pacman-populate
16 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/alg-preset:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | mv -v /etc/mkinitcpio.d/alg /etc/mkinitcpio.d/linux.preset
4 |
5 | rm -v /usr/local/bin/alg-preset
6 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/alg-remove-nvidia:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # driver=free or driver=nonfree - grub and efi
3 | echo "Start alg-remove-nvidia"
4 | kernel_cmdline(){
5 | for param in $(cat /proc/cmdline); do
6 | case "${param}" in
7 | $1=*) echo "${param##*=}"; return 0 ;;
8 | $1) return 0 ;;
9 | *) continue ;;
10 | esac
11 | done
12 | [ -n "${2}" ] && echo "${2}"
13 | return 1
14 | }
15 |
16 | get_driver(){
17 | echo $(kernel_cmdline driver)
18 | }
19 |
20 |
21 | while [ -e "/var/lib/pacman/db.lck" ];
22 | do
23 | echo 'Pacman is not ready yet. Will try again in 10 seconds.'
24 | seconds=$(($seconds + 10))
25 | sleep 10
26 | if [[ "$seconds" == "30" ]]; then
27 | echo 'Warning: removing pacman db.lck!'
28 | rm /var/lib/pacman/db.lck
29 | fi
30 | done
31 |
32 | # free = remove nvidia keep nouveau
33 | selection=$(get_driver)
34 | echo "#################################"
35 | echo "Selection was "$selection
36 | echo "#################################"
37 | if [[ $selection == "free" ]]; then
38 | pacman -Rns --noconfirm nvidia-dkms nvidia-utils nvidia-settings
39 | fi
40 |
41 |
42 | #nonfree = keepin nvidia and nouveau
43 | selection=$(get_driver)
44 | echo "Selection was "$selection
45 | if [[ $selection == "nonfree" ]]; then
46 | echo "#################################"
47 | echo "We keep nvidia onboard"
48 | echo "#################################"
49 | fi
50 |
51 |
52 | echo "#################################"
53 | echo "End alg-remove-nvidia"
54 | echo "#################################"
55 | rm /usr/local/bin/alg-remove-nvidia
56 |
57 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/choose-mirror:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #
3 | # SPDX-License-Identifier: GPL-3.0-or-later
4 |
5 | get_cmdline() {
6 | local param
7 | for param in $(< /proc/cmdline); do
8 | case "${param}" in
9 | $1=*) echo "${param##*=}";
10 | return 0
11 | ;;
12 | esac
13 | done
14 | }
15 |
16 | mirror=$(get_cmdline mirror)
17 | [[ $mirror = auto ]] && mirror=$(get_cmdline archiso_http_srv)
18 | [[ $mirror ]] || exit 0
19 |
20 | mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig
21 | cat >/etc/pacman.d/mirrorlist << EOF
22 | #
23 | # Arch Linux repository mirrorlist
24 | # Generated by archiso
25 | #
26 |
27 | Server = ${mirror%%/}/\$repo/os/\$arch
28 | EOF
29 |
--------------------------------------------------------------------------------
/airootfs/usr/local/bin/livecd-sound:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | #
3 | # SPDX-License-Identifier: GPL-3.0-or-later
4 |
5 | usage() {
6 | cat <<- _EOF_
7 | live cd sound helper script.
8 | Usage: livecdsound [OPTION]
9 | OPTIONS
10 | -u, --unmute unmute all sound cards
11 | -p, --pick select a card for speetch output
12 | -h, --help Show this usage message
13 |
14 | _EOF_
15 | }
16 |
17 | bugout () {
18 | printf "/usr/local/bin/livecdsound: programming error"
19 | stat_fail
20 | }
21 |
22 | echo_card_indices()
23 | {
24 | if [ -f /proc/asound/cards ] ; then
25 | sed -n -e's/^[[:space:]]*\([0-7]\)[[:space:]].*/\1/p' /proc/asound/cards
26 | fi
27 | }
28 |
29 | # The following functions try to set many controls.
30 | # No card has all the controls and so some of the attempts are bound to fail.
31 | # Because of this, the functions can't return useful status values.
32 |
33 | # $1
34 | # $2
35 | # $3
36 | unmute_and_set_level(){
37 | { [ "$3" ] &&[ "$2" ] && [ "$1" ] ; } || bugout
38 | systemd-cat -t "livecdsound" printf "Setting: %s on card: %s to %s\n" "$2" "$1" "$3"
39 | systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3" unmute
40 | return 0
41 | }
42 |
43 | # $1
44 | # $2
45 | mute_and_zero_level()
46 | {
47 | { [ "$1" ] && [ "$2" ] ; } || bugout
48 | systemd-cat -t "livecdsound" printf "Muting control: %s on card: %s\n" "$2" "$1"
49 | systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "0%" mute
50 | return 0
51 | }
52 |
53 | # $1
54 | # $2
55 | # $3 "on" | "off"
56 | switch_control()
57 | {
58 | { [ "$3" ] && [ "$1" ] ; } || bugout
59 | systemd-cat -t "livecdsound" printf "Switching control: %s on card: %s to %s\n" "$2" "$1" "$3"
60 | systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3"
61 | return 0
62 | }
63 |
64 | # $1
65 | sanify_levels_on_card()
66 | {
67 | unmute_and_set_level "$1" "Front" "80%"
68 | unmute_and_set_level "$1" "Master" "80%"
69 | unmute_and_set_level "$1" "Master Mono" "80%"
70 | unmute_and_set_level "$1" "Master Digital" "80%" # E.g., cs4237B
71 | unmute_and_set_level "$1" "Playback" "80%"
72 | unmute_and_set_level "$1" "Headphone" "100%"
73 | unmute_and_set_level "$1" "PCM" "80%"
74 | unmute_and_set_level "$1" "PCM,1" "80%" # E.g., ess1969
75 | unmute_and_set_level "$1" "DAC" "80%" # E.g., envy24, cs46xx
76 | unmute_and_set_level "$1" "DAC,0" "80%" # E.g., envy24
77 | unmute_and_set_level "$1" "DAC,1" "80%" # E.g., envy24
78 | unmute_and_set_level "$1" "Synth" "80%"
79 | unmute_and_set_level "$1" "CD" "80%"
80 | unmute_and_set_level "$1" "PC Speaker" "100%"
81 |
82 | mute_and_zero_level "$1" "Mic"
83 | mute_and_zero_level "$1" "IEC958" # Ubuntu #19648
84 |
85 | # Intel P4P800-MX
86 | switch_control "$1" "Master Playback Switch" on
87 | switch_control "$1" "Master Surround" on
88 |
89 | # Trident/YMFPCI/emu10k1:
90 | unmute_and_set_level "$1" "Wave" "80%"
91 | unmute_and_set_level "$1" "Music" "80%"
92 | unmute_and_set_level "$1" "AC97" "80%"
93 |
94 | # DRC:
95 | unmute_and_set_level "$1" "Dynamic Range Compression" "80%"
96 |
97 | # Required for HDA Intel (hda-intel):
98 | unmute_and_set_level "$1" "Front" "80%"
99 |
100 | # Required for SB Live 7.1/24-bit (ca0106):
101 | unmute_and_set_level "$1" "Analog Front" "80%"
102 |
103 | # Required at least for Via 823x hardware on DFI K8M800-MLVF Motherboard
104 | switch_control "$1" "IEC958 Capture Monitor" off
105 |
106 | # Required for hardware allowing toggles for AC97 through IEC958,
107 | # valid values are 0, 1, 2, 3. Needs to be set to 0 for PCM1.
108 | unmute_and_set_level "$1" "IEC958 Playback AC97-SPSA" "0"
109 |
110 | # Required for newer Via hardware
111 | unmute_and_set_level "$1" "VIA DXS,0" "80%"
112 | unmute_and_set_level "$1" "VIA DXS,1" "80%"
113 | unmute_and_set_level "$1" "VIA DXS,2" "80%"
114 | unmute_and_set_level "$1" "VIA DXS,3" "80%"
115 |
116 | # Required on some notebooks with ICH4:
117 | switch_control "$1" "Headphone Jack Sense" off
118 | switch_control "$1" "Line Jack Sense" off
119 |
120 | # Some machines need one or more of these to be on;
121 | # others need one or more of these to be off:
122 |
123 | switch_control "$1" "Audigy Analog/Digital Output Jack" on
124 | switch_control "$1" "SB Live Analog/Digital Output Jack" on
125 |
126 | # D1984 -- Thinkpad T61/X61
127 | switch_control "$1" "Speaker" on
128 | switch_control "$1" "Headphone" on
129 |
130 | # HDA-Intel w/ "Digital" capture mixer (See Ubuntu #193823)
131 | unmute_and_set_level "$1" "Digital" "80%"
132 |
133 | return 0
134 | }
135 |
136 | # $1 | "all"
137 | sanify_levels()
138 | {
139 | local ttsdml_returnstatus=0
140 | local card
141 | case "$1" in
142 | all)
143 | for card in $(echo_card_indices) ; do
144 | sanify_levels_on_card "$card" || ttsdml_returnstatus=1
145 | done
146 | ;;
147 | *)
148 | sanify_levels_on_card "$1" || ttsdml_returnstatus=1
149 | ;;
150 | esac
151 | return $ttsdml_returnstatus
152 | }
153 |
154 | # List all cards that *should* be usable for PCM audio. In my experience,
155 | # the console speaker (handled by the pcsp driver) isn't a suitable playback
156 | # device, so we'll exclude it.
157 | list_non_pcsp_cards()
158 | {
159 | for card in $(echo_card_indices); do
160 | local cardfile="/proc/asound/card${card}/id"
161 | if [ -r "$cardfile" ] && [ -f "$cardfile" ] && \
162 | [ "$(cat "$cardfile")" != pcsp ]; then
163 | echo "$card"
164 | fi
165 | done
166 | }
167 |
168 | # Properly initialize the sound card so that we have audio at boot.
169 | unmute_all_cards()
170 | {
171 | sanify_levels all
172 | }
173 |
174 | is_numeric() {
175 | local str=$1
176 | [[ "$str" =~ ^[0-9]+$ ]]
177 | }
178 |
179 | set_default_card() {
180 | local card=$1
181 | sed -e "s/%card%/$card/g" < /usr/local/share/livecd-sound/asound.conf.in \
182 | > /etc/asound.conf
183 | }
184 |
185 | play_on_card() {
186 | local card=$1 file=$2
187 | aplay -q "-Dplughw:$card,0" "$file"
188 | }
189 |
190 | # If there are multiple usable sound cards, prompt the user to choose one,
191 | # using auditory feedback.
192 | pick_a_card()
193 | {
194 | set -f
195 | usable_cards="$(list_non_pcsp_cards)"
196 | num_usable_cards="$(wc -w <<< "$usable_cards")"
197 |
198 | if [ "$num_usable_cards" -eq 1 ]; then
199 | systemd-cat -t "livecdsound" printf "Only one sound card is detected\n"
200 | exit 0
201 | fi
202 | systemd-cat -t "livecdsound" printf "multiple sound cards detected\n"
203 | for card in $usable_cards; do
204 | if ! is_numeric "$card"; then
205 | continue
206 | fi
207 | play_on_card "$card" /usr/share/livecd-sounds/pick-a-card.wav&
208 | done
209 | wait
210 | sleep 1
211 | for card in $usable_cards; do
212 | if ! is_numeric "$card"; then
213 | continue
214 | fi
215 | play_on_card "$card" /usr/share/livecd-sounds/beep.wav
216 | if read -r -t 10; then
217 | systemd-cat -t "livecdsound" printf "Selecting %s sound card as default\n" "$card"
218 | set_default_card "$card"
219 | break
220 | fi
221 | done
222 | }
223 |
224 | if [[ $# -eq 0 ]]; then
225 | echo "error: No argument passed."
226 | exit 1
227 | fi
228 | while [[ "${1}" != "" ]]; do
229 | case ${1} in
230 | -h|--help)
231 | usage
232 | exit
233 | ;;
234 | -u|--unmute)
235 | systemd-cat -t "livecdsound" printf "Unmuting all cards"
236 | unmute_all_cards
237 | ;;
238 | -p|--pick)
239 | pick_a_card
240 | ;;
241 | *)
242 | echo "error: Unsupported argument"
243 | usage
244 | exit 1
245 | ;;
246 | esac
247 | shift
248 | done
249 |
--------------------------------------------------------------------------------
/airootfs/usr/local/share/livecd-sound/asound.conf.in:
--------------------------------------------------------------------------------
1 | Defaults node
2 | defaults.ctl.card %card%;
3 | defaults.pcm.card %card%;
4 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/Background.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 Boudhayan Gupta
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.2
21 |
22 | FocusScope {
23 | id: sceneBackground
24 |
25 | property var sceneBackgroundType
26 | property alias sceneBackgroundColor: sceneColorBackground.color
27 | property alias sceneBackgroundImage: sceneImageBackground.source
28 |
29 | Rectangle {
30 | id: sceneColorBackground
31 | anchors.fill: parent
32 | }
33 |
34 | Image {
35 | id: sceneImageBackground
36 | anchors.fill: parent
37 | sourceSize.width: parent.width
38 | sourceSize.height: parent.height
39 | fillMode: Image.PreserveAspectCrop
40 | smooth: true;
41 | }
42 |
43 | states: [
44 | State {
45 | name: "imageBackground"
46 | when: sceneBackgroundType === "image"
47 | PropertyChanges {
48 | target: sceneColorBackground
49 | visible: false
50 | }
51 | PropertyChanges {
52 | target: sceneImageBackground
53 | visible: true
54 | }
55 | },
56 | State {
57 | name: "colorBackground"
58 | when: sceneBackgroundType !== "image"
59 | PropertyChanges {
60 | target: sceneColorBackground
61 | visible: true
62 | }
63 | PropertyChanges {
64 | target: sceneImageBackground
65 | visible: false
66 | }
67 | }
68 | ]
69 | }
70 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/BreezeMenuStyle.qml:
--------------------------------------------------------------------------------
1 | import QtQuick 2.2
2 |
3 | import org.kde.plasma.core 2.0 as PlasmaCore
4 |
5 | import QtQuick.Controls.Styles 1.4 as QQCS
6 | import QtQuick.Controls 1.3 as QQC
7 |
8 | QQCS.MenuStyle {
9 | frame: Rectangle {
10 | color: PlasmaCore.ColorScope.backgroundColor
11 | border.color: Qt.tint(PlasmaCore.ColorScope.textColor, Qt.rgba(color.r, color.g, color.b, 0.7))
12 | border.width: 1
13 | }
14 | itemDelegate.label: QQC.Label {
15 | height: contentHeight * 1.2
16 | verticalAlignment: Text.AlignVCenter
17 | color: styleData.selected ? PlasmaCore.ColorScope.highlightedTextColor : PlasmaCore.ColorScope.textColor
18 | font.pointSize: config.fontSize
19 | text: styleData.text
20 | }
21 | itemDelegate.background: Rectangle {
22 | visible: styleData.selected
23 | color: PlasmaCore.ColorScope.highlightColor
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/KeyboardButton.qml:
--------------------------------------------------------------------------------
1 | import QtQuick 2.2
2 |
3 | import org.kde.plasma.core 2.0 as PlasmaCore
4 | import org.kde.plasma.components 2.0 as PlasmaComponents
5 |
6 | import QtQuick.Controls 1.3 as QQC
7 |
8 | PlasmaComponents.ToolButton {
9 | id: keyboardButton
10 |
11 | property int currentIndex: -1
12 |
13 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keyboard Layout: %1", instantiator.objectAt(currentIndex).shortName)
14 | implicitWidth: minimumWidth
15 | font.pointSize: config.fontSize
16 |
17 | visible: menu.items.length > 1
18 |
19 | Component.onCompleted: currentIndex = Qt.binding(function() {return keyboard.currentLayout});
20 |
21 | menu: QQC.Menu {
22 | id: keyboardMenu
23 | style: BreezeMenuStyle {}
24 | Instantiator {
25 | id: instantiator
26 | model: keyboard.layouts
27 | onObjectAdded: keyboardMenu.insertItem(index, object)
28 | onObjectRemoved: keyboardMenu.removeItem( object )
29 | delegate: QQC.MenuItem {
30 | text: modelData.longName
31 | property string shortName: modelData.shortName
32 | onTriggered: {
33 | keyboard.currentLayout = model.index
34 | }
35 | }
36 | }
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/Login.qml:
--------------------------------------------------------------------------------
1 | import "components"
2 |
3 | import QtQuick 2.0
4 | import QtQuick.Layouts 1.2
5 |
6 | import org.kde.plasma.core 2.0 as PlasmaCore
7 | import org.kde.plasma.components 2.0 as PlasmaComponents
8 |
9 | SessionManagementScreen {
10 | id: root
11 | property Item mainPasswordBox: passwordBox
12 |
13 | property bool showUsernamePrompt: !showUserList
14 |
15 | property string lastUserName
16 | property bool loginScreenUiVisible: false
17 |
18 | //the y position that should be ensured visible when the on screen keyboard is visible
19 | property int visibleBoundary: mapFromItem(loginButton, 0, 0).y
20 | onHeightChanged: visibleBoundary = mapFromItem(loginButton, 0, 0).y + loginButton.height + units.smallSpacing
21 |
22 | property int fontSize: config.fontSize
23 |
24 | signal loginRequest(string username, string password)
25 |
26 | onShowUsernamePromptChanged: {
27 | if (!showUsernamePrompt) {
28 | lastUserName = ""
29 | }
30 | }
31 |
32 | /*
33 | * Login has been requested with the following username and password
34 | * If username field is visible, it will be taken from that, otherwise from the "name" property of the currentIndex
35 | */
36 | function startLogin() {
37 | var username = showUsernamePrompt ? userNameInput.text : userList.selectedUser
38 | var password = passwordBox.text
39 |
40 | footer.enabled = false
41 | mainStack.enabled = false
42 | userListComponent.userList.opacity = 0.5
43 |
44 | //this is partly because it looks nicer
45 | //but more importantly it works round a Qt bug that can trigger if the app is closed with a TextField focused
46 | //DAVE REPORT THE FRICKING THING AND PUT A LINK
47 | loginButton.forceActiveFocus();
48 | loginRequest(username, password);
49 | }
50 |
51 | PlasmaComponents.TextField {
52 | id: userNameInput
53 | font.pointSize: fontSize + 1
54 | Layout.fillWidth: true
55 |
56 | text: lastUserName
57 | visible: showUsernamePrompt
58 | focus: showUsernamePrompt && !lastUserName //if there's a username prompt it gets focus first, otherwise password does
59 | placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Username")
60 |
61 | onAccepted:
62 | if (root.loginScreenUiVisible) {
63 | passwordBox.forceActiveFocus()
64 | }
65 | }
66 |
67 | RowLayout {
68 | Layout.fillWidth: true
69 |
70 | PlasmaComponents.TextField {
71 | id: passwordBox
72 | font.pointSize: fontSize + 1
73 | Layout.fillWidth: true
74 |
75 | placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password")
76 | focus: !showUsernamePrompt || lastUserName
77 | echoMode: TextInput.Password
78 | revealPasswordButtonShown: false // Disabled whilst SDDM does not have the breeze icon set loaded
79 |
80 | onAccepted: {
81 | if (root.loginScreenUiVisible) {
82 | startLogin();
83 | }
84 | }
85 |
86 | Keys.onEscapePressed: {
87 | mainStack.currentItem.forceActiveFocus();
88 | }
89 |
90 | //if empty and left or right is pressed change selection in user switch
91 | //this cannot be in keys.onLeftPressed as then it doesn't reach the password box
92 | Keys.onPressed: {
93 | if (event.key === Qt.Key_Left && !text) {
94 | userList.decrementCurrentIndex();
95 | event.accepted = true
96 | }
97 | if (event.key === Qt.Key_Right && !text) {
98 | userList.incrementCurrentIndex();
99 | event.accepted = true
100 | }
101 | }
102 |
103 | Connections {
104 | target: sddm
105 | onLoginFailed: {
106 | passwordBox.selectAll()
107 | passwordBox.forceActiveFocus()
108 | }
109 | }
110 | }
111 |
112 | PlasmaComponents.Button {
113 | id: loginButton
114 | Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Log In")
115 | implicitHeight: passwordBox.height - units.smallSpacing * 0.5 // otherwise it comes out taller than the password field
116 | Layout.rightMargin: 1 // prevents it from extending beyond the username field
117 |
118 | PlasmaCore.IconItem { // no iconSource because if you take away half a unit (implicitHeight), "go-next" gets cut off
119 | anchors.fill: parent
120 | anchors.margins: units.smallSpacing
121 | source: "go-next"
122 | }
123 | onClicked: startLogin();
124 | }
125 | }
126 | }
127 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/Main.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.8
21 |
22 | import QtQuick.Layouts 1.1
23 | import QtQuick.Controls 1.1
24 | import QtGraphicalEffects 1.0
25 |
26 | import org.kde.plasma.core 2.0 as PlasmaCore
27 | import org.kde.plasma.components 2.0 as PlasmaComponents
28 | import org.kde.plasma.extras 2.0 as PlasmaExtras
29 |
30 | import "components"
31 |
32 | PlasmaCore.ColorScope {
33 | id: root
34 |
35 | // If we're using software rendering, draw outlines instead of shadows
36 | // See https://bugs.kde.org/show_bug.cgi?id=398317
37 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
38 |
39 | colorGroup: PlasmaCore.Theme.ComplementaryColorGroup
40 | readonly property bool lightBackground: Math.max(PlasmaCore.ColorScope.backgroundColor.r, PlasmaCore.ColorScope.backgroundColor.g, PlasmaCore.ColorScope.backgroundColor.b) > 0.5
41 |
42 | width: 1600
43 | height: 900
44 |
45 | property string notificationMessage
46 |
47 | LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft
48 | LayoutMirroring.childrenInherit: true
49 |
50 | PlasmaCore.DataSource {
51 | id: keystateSource
52 | engine: "keystate"
53 | connectedSources: "Caps Lock"
54 | }
55 |
56 | Item {
57 | id: wallpaper
58 | anchors.fill: parent
59 | Repeater {
60 | model: screenModel
61 |
62 | Background {
63 | x: geometry.x; y: geometry.y; width: geometry.width; height: geometry.height
64 | sceneBackgroundType: config.type
65 | sceneBackgroundColor: config.color
66 | sceneBackgroundImage: config.background
67 | }
68 | }
69 | }
70 |
71 | MouseArea {
72 | id: loginScreenRoot
73 | anchors.fill: parent
74 |
75 | property bool uiVisible: true
76 | property bool blockUI: mainStack.depth > 1 || userListComponent.mainPasswordBox.text.length > 0 || inputPanel.keyboardActive || config.type !== "image"
77 |
78 | hoverEnabled: true
79 | drag.filterChildren: true
80 | onPressed: uiVisible = true;
81 | onPositionChanged: uiVisible = true;
82 | onUiVisibleChanged: {
83 | if (blockUI) {
84 | fadeoutTimer.running = false;
85 | } else if (uiVisible) {
86 | fadeoutTimer.restart();
87 | }
88 | }
89 | onBlockUIChanged: {
90 | if (blockUI) {
91 | fadeoutTimer.running = false;
92 | uiVisible = true;
93 | } else {
94 | fadeoutTimer.restart();
95 | }
96 | }
97 |
98 | Keys.onPressed: {
99 | uiVisible = true;
100 | event.accepted = false;
101 | }
102 |
103 | //takes one full minute for the ui to disappear
104 | Timer {
105 | id: fadeoutTimer
106 | running: true
107 | interval: 60000
108 | onTriggered: {
109 | if (!loginScreenRoot.blockUI) {
110 | loginScreenRoot.uiVisible = false;
111 | }
112 | }
113 | }
114 | WallpaperFader {
115 | visible: config.type === "image"
116 | anchors.fill: parent
117 | state: loginScreenRoot.uiVisible ? "on" : "off"
118 | source: wallpaper
119 | mainStack: mainStack
120 | footer: footer
121 | clock: clock
122 | }
123 |
124 | DropShadow {
125 | id: clockShadow
126 | anchors.fill: clock
127 | source: clock
128 | visible: !softwareRendering
129 | horizontalOffset: 1
130 | verticalOffset: 1
131 | radius: 6
132 | samples: 14
133 | spread: 0.3
134 | color: root.lightBackground ? PlasmaCore.ColorScope.backgroundColor : "black" // black matches Breeze window decoration and desktopcontainment
135 | Behavior on opacity {
136 | OpacityAnimator {
137 | duration: 1000
138 | easing.type: Easing.InOutQuad
139 | }
140 | }
141 | }
142 |
143 | Clock {
144 | id: clock
145 | visible: y > 0
146 | property Item shadow: clockShadow
147 | y: (userListComponent.userList.y + mainStack.y)/2 - height/2
148 | anchors.horizontalCenter: parent.horizontalCenter
149 | }
150 |
151 | StackView {
152 | id: mainStack
153 | anchors {
154 | left: parent.left
155 | right: parent.right
156 | }
157 | height: root.height + units.gridUnit * 3
158 |
159 | focus: true //StackView is an implicit focus scope, so we need to give this focus so the item inside will have it
160 |
161 | Timer {
162 | //SDDM has a bug in 0.13 where even though we set the focus on the right item within the window, the window doesn't have focus
163 | //it is fixed in 6d5b36b28907b16280ff78995fef764bb0c573db which will be 0.14
164 | //we need to call "window->activate()" *After* it's been shown. We can't control that in QML so we use a shoddy timer
165 | //it's been this way for all Plasma 5.x without a huge problem
166 | running: true
167 | repeat: false
168 | interval: 200
169 | onTriggered: mainStack.forceActiveFocus()
170 | }
171 |
172 | initialItem: Login {
173 | id: userListComponent
174 | userListModel: userModel
175 | loginScreenUiVisible: loginScreenRoot.uiVisible
176 | userListCurrentIndex: userModel.lastIndex >= 0 ? userModel.lastIndex : 0
177 | lastUserName: userModel.lastUser
178 | showUserList: {
179 | if ( !userListModel.hasOwnProperty("count")
180 | || !userListModel.hasOwnProperty("disableAvatarsThreshold"))
181 | return (userList.y + mainStack.y) > 0
182 |
183 | if ( userListModel.count === 0 ) return false
184 |
185 | if ( userListModel.hasOwnProperty("containsAllUsers") && !userListModel.containsAllUsers ) return false
186 |
187 | return userListModel.count <= userListModel.disableAvatarsThreshold && (userList.y + mainStack.y) > 0
188 | }
189 |
190 | notificationMessage: {
191 | var text = ""
192 | if (keystateSource.data["Caps Lock"]["Locked"]) {
193 | text += i18nd("plasma_lookandfeel_org.kde.lookandfeel","Caps Lock is on")
194 | if (root.notificationMessage) {
195 | text += " • "
196 | }
197 | }
198 | text += root.notificationMessage
199 | return text
200 | }
201 |
202 | actionItems: [
203 | ActionButton {
204 | iconSource: "/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz"
205 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel","Suspend to RAM","Sleep")
206 | onClicked: sddm.suspend()
207 | enabled: sddm.canSuspend
208 | visible: !inputPanel.keyboardActive
209 | },
210 | ActionButton {
211 | iconSource: "/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz"
212 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Restart")
213 | onClicked: sddm.reboot()
214 | enabled: sddm.canReboot
215 | visible: !inputPanel.keyboardActive
216 | },
217 | ActionButton {
218 | iconSource: "/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz"
219 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Shut Down")
220 | onClicked: sddm.powerOff()
221 | enabled: sddm.canPowerOff
222 | visible: !inputPanel.keyboardActive
223 | },
224 | ActionButton {
225 | iconSource: "/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz"
226 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "For switching to a username and password prompt", "Other...")
227 | onClicked: mainStack.push(userPromptComponent)
228 | enabled: true
229 | visible: !userListComponent.showUsernamePrompt && !inputPanel.keyboardActive
230 | }]
231 |
232 | onLoginRequest: {
233 | root.notificationMessage = ""
234 | sddm.login(username, password, sessionButton.currentIndex)
235 | }
236 | }
237 |
238 | Behavior on opacity {
239 | OpacityAnimator {
240 | duration: units.longDuration
241 | }
242 | }
243 | }
244 |
245 | Loader {
246 | id: inputPanel
247 | state: "hidden"
248 | property bool keyboardActive: item ? item.active : false
249 | onKeyboardActiveChanged: {
250 | if (keyboardActive) {
251 | state = "visible"
252 | } else {
253 | state = "hidden";
254 | }
255 | }
256 | source: "components/VirtualKeyboard.qml"
257 | anchors {
258 | left: parent.left
259 | right: parent.right
260 | }
261 |
262 | function showHide() {
263 | state = state == "hidden" ? "visible" : "hidden";
264 | }
265 |
266 | states: [
267 | State {
268 | name: "visible"
269 | PropertyChanges {
270 | target: mainStack
271 | y: Math.min(0, root.height - inputPanel.height - userListComponent.visibleBoundary)
272 | }
273 | PropertyChanges {
274 | target: inputPanel
275 | y: root.height - inputPanel.height
276 | opacity: 1
277 | }
278 | },
279 | State {
280 | name: "hidden"
281 | PropertyChanges {
282 | target: mainStack
283 | y: 0
284 | }
285 | PropertyChanges {
286 | target: inputPanel
287 | y: root.height - root.height/4
288 | opacity: 0
289 | }
290 | }
291 | ]
292 | transitions: [
293 | Transition {
294 | from: "hidden"
295 | to: "visible"
296 | SequentialAnimation {
297 | ScriptAction {
298 | script: {
299 | inputPanel.item.activated = true;
300 | Qt.inputMethod.show();
301 | }
302 | }
303 | ParallelAnimation {
304 | NumberAnimation {
305 | target: mainStack
306 | property: "y"
307 | duration: units.longDuration
308 | easing.type: Easing.InOutQuad
309 | }
310 | NumberAnimation {
311 | target: inputPanel
312 | property: "y"
313 | duration: units.longDuration
314 | easing.type: Easing.OutQuad
315 | }
316 | OpacityAnimator {
317 | target: inputPanel
318 | duration: units.longDuration
319 | easing.type: Easing.OutQuad
320 | }
321 | }
322 | }
323 | },
324 | Transition {
325 | from: "visible"
326 | to: "hidden"
327 | SequentialAnimation {
328 | ParallelAnimation {
329 | NumberAnimation {
330 | target: mainStack
331 | property: "y"
332 | duration: units.longDuration
333 | easing.type: Easing.InOutQuad
334 | }
335 | NumberAnimation {
336 | target: inputPanel
337 | property: "y"
338 | duration: units.longDuration
339 | easing.type: Easing.InQuad
340 | }
341 | OpacityAnimator {
342 | target: inputPanel
343 | duration: units.longDuration
344 | easing.type: Easing.InQuad
345 | }
346 | }
347 | ScriptAction {
348 | script: {
349 | Qt.inputMethod.hide();
350 | }
351 | }
352 | }
353 | }
354 | ]
355 | }
356 |
357 |
358 | Component {
359 | id: userPromptComponent
360 | Login {
361 | showUsernamePrompt: true
362 | notificationMessage: root.notificationMessage
363 | loginScreenUiVisible: loginScreenRoot.uiVisible
364 |
365 | // using a model rather than a QObject list to avoid QTBUG-75900
366 | userListModel: ListModel {
367 | ListElement {
368 | name: ""
369 | iconSource: ""
370 | }
371 | Component.onCompleted: {
372 | // as we can't bind inside ListElement
373 | setProperty(0, "name", i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Type in Username and Password"));
374 | }
375 | }
376 |
377 | onLoginRequest: {
378 | root.notificationMessage = ""
379 | sddm.login(username, password, sessionButton.currentIndex)
380 | }
381 |
382 | actionItems: [
383 | ActionButton {
384 | iconSource: "/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz"
385 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel","Suspend to RAM","Sleep")
386 | onClicked: sddm.suspend()
387 | enabled: sddm.canSuspend
388 | visible: !inputPanel.keyboardActive
389 | },
390 | ActionButton {
391 | iconSource: "/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz"
392 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Restart")
393 | onClicked: sddm.reboot()
394 | enabled: sddm.canReboot
395 | visible: !inputPanel.keyboardActive
396 | },
397 | ActionButton {
398 | iconSource: "/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz"
399 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Shut Down")
400 | onClicked: sddm.powerOff()
401 | enabled: sddm.canPowerOff
402 | visible: !inputPanel.keyboardActive
403 | },
404 | ActionButton {
405 | iconSource: "/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz"
406 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","List Users")
407 | onClicked: mainStack.pop()
408 | visible: !inputPanel.keyboardActive
409 | }
410 | ]
411 | }
412 | }
413 |
414 | Image {
415 | id: logo
416 | visible: config.showlogo == "shown"
417 | source: config.logo
418 | anchors.horizontalCenter: parent.horizontalCenter
419 | anchors.bottom: footer.top
420 | anchors.bottomMargin: units.largeSpacing
421 | asynchronous: true
422 | sourceSize.height: height
423 | opacity: loginScreenRoot.uiVisible ? 0 : 1
424 | fillMode: Image.PreserveAspectFit
425 | height: Math.round(units.gridUnit * 3.5)
426 | Behavior on opacity {
427 | OpacityAnimator {
428 | duration: units.longDuration
429 | easing.type: Easing.InOutQuad
430 | }
431 | }
432 | }
433 |
434 | DropShadow {
435 | id: logoShadow
436 | anchors.fill: logo
437 | source: logo
438 | visible: !softwareRendering && config.showlogo == "shown"
439 | horizontalOffset: 1
440 | verticalOffset: 1
441 | radius: 6
442 | samples: 14
443 | spread: 0.3
444 | color: "black" // matches Breeze window decoration and desktopcontainment
445 | opacity: loginScreenRoot.uiVisible ? 0 : 1
446 | Behavior on opacity {
447 | OpacityAnimator {
448 | duration: units.longDuration
449 | easing.type: Easing.InOutQuad
450 | }
451 | }
452 | }
453 |
454 | //Footer
455 | RowLayout {
456 | id: footer
457 | anchors {
458 | bottom: parent.bottom
459 | left: parent.left
460 | right: parent.right
461 | margins: units.smallSpacing
462 | }
463 |
464 | Behavior on opacity {
465 | OpacityAnimator {
466 | duration: units.longDuration
467 | }
468 | }
469 |
470 | PlasmaComponents.ToolButton {
471 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Button to show/hide virtual keyboard", "Virtual Keyboard")
472 | font.pointSize: config.fontSize
473 | iconName: inputPanel.keyboardActive ? "input-keyboard-virtual-on" : "input-keyboard-virtual-off"
474 | onClicked: inputPanel.showHide()
475 | visible: inputPanel.status == Loader.Ready
476 | }
477 |
478 | KeyboardButton {
479 | }
480 |
481 | SessionButton {
482 | id: sessionButton
483 | }
484 |
485 | Item {
486 | Layout.fillWidth: true
487 | }
488 |
489 | Battery { }
490 | }
491 | }
492 |
493 | Connections {
494 | target: sddm
495 | onLoginFailed: {
496 | notificationMessage = i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Login Failed")
497 | footer.enabled = true
498 | mainStack.enabled = true
499 | userListComponent.userList.opacity = 1
500 | }
501 | onLoginSucceeded: {
502 | //note SDDM will kill the greeter at some random point after this
503 | //there is no certainty any transition will finish, it depends on the time it
504 | //takes to complete the init
505 | mainStack.opacity = 0
506 | footer.opacity = 0
507 | }
508 | }
509 |
510 | onNotificationMessageChanged: {
511 | if (notificationMessage) {
512 | notificationResetTimer.start();
513 | }
514 | }
515 |
516 | Timer {
517 | id: notificationResetTimer
518 | interval: 3000
519 | onTriggered: notificationMessage = ""
520 | }
521 | }
522 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/SessionButton.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.2
21 |
22 | import org.kde.plasma.core 2.0 as PlasmaCore
23 | import org.kde.plasma.components 2.0 as PlasmaComponents
24 |
25 | import QtQuick.Controls 1.3 as QQC
26 |
27 | PlasmaComponents.ToolButton {
28 | id: root
29 | property int currentIndex: -1
30 |
31 | implicitWidth: minimumWidth
32 |
33 | visible: menu.items.length > 1
34 |
35 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "")
36 |
37 | font.pointSize: config.fontSize
38 |
39 | Component.onCompleted: {
40 | currentIndex = sessionModel.lastIndex
41 | }
42 |
43 | menu: QQC.Menu {
44 | id: menu
45 | style: BreezeMenuStyle {}
46 | Instantiator {
47 | id: instantiator
48 | model: sessionModel
49 | onObjectAdded: menu.insertItem(index, object)
50 | onObjectRemoved: menu.removeItem( object )
51 | delegate: QQC.MenuItem {
52 | text: model.name
53 | onTriggered: {
54 | root.currentIndex = model.index
55 | }
56 | }
57 | }
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/assets/logout_primary.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/assets/logout_primary.svgz
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/background.jpg
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/ActionButton.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.8
21 | import org.kde.plasma.core 2.0 as PlasmaCore
22 | import org.kde.plasma.components 2.0 as PlasmaComponents
23 |
24 | Item {
25 | id: root
26 | property alias text: label.text
27 | property alias iconSource: icon.source
28 | property alias containsMouse: mouseArea.containsMouse
29 | property alias font: label.font
30 | property alias labelRendering: label.renderType
31 | property alias circleOpacity: iconCircle.opacity
32 | property alias circleVisiblity: iconCircle.visible
33 | property int fontSize: config.fontSize
34 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
35 | signal clicked
36 |
37 | activeFocusOnTab: true
38 |
39 | property int iconSize: units.gridUnit * 3
40 |
41 | implicitWidth: Math.max(iconSize + units.largeSpacing * 2, label.contentWidth)
42 | implicitHeight: iconSize + units.smallSpacing + label.implicitHeight
43 |
44 | opacity: activeFocus || containsMouse ? 1 : 0.85
45 | Behavior on opacity {
46 | PropertyAnimation { // OpacityAnimator makes it turn black at random intervals
47 | duration: units.longDuration * 2
48 | easing.type: Easing.InOutQuad
49 | }
50 | }
51 |
52 | Rectangle {
53 | id: iconCircle
54 | anchors.centerIn: icon
55 | width: iconSize + units.smallSpacing
56 | height: width
57 | radius: width / 2
58 | color: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : PlasmaCore.ColorScope.textColor
59 | opacity: activeFocus || containsMouse ? (softwareRendering ? 0.8 : 0.15) : (softwareRendering ? 0.6 : 0)
60 | Behavior on opacity {
61 | PropertyAnimation { // OpacityAnimator makes it turn black at random intervals
62 | duration: units.longDuration * 3
63 | easing.type: Easing.InOutQuad
64 | }
65 | }
66 | }
67 |
68 | Rectangle {
69 | anchors.centerIn: iconCircle
70 | width: iconCircle.width
71 | height: width
72 | radius: width / 2
73 | scale: mouseArea.containsPress ? 1 : 0
74 | color: PlasmaCore.ColorScope.textColor
75 | opacity: 0.15
76 | Behavior on scale {
77 | PropertyAnimation {
78 | duration: units.shortDuration
79 | easing.type: Easing.InOutQuart
80 | }
81 | }
82 | }
83 |
84 | PlasmaCore.IconItem {
85 | id: icon
86 | anchors {
87 | top: parent.top
88 | horizontalCenter: parent.horizontalCenter
89 | }
90 | width: iconSize
91 | height: iconSize
92 |
93 | colorGroup: PlasmaCore.ColorScope.colorGroup
94 | active: mouseArea.containsMouse || root.activeFocus
95 | }
96 |
97 | PlasmaComponents.Label {
98 | id: label
99 | font.pointSize: Math.max(fontSize + 1,theme.defaultFont.pointSize + 1)
100 | anchors {
101 | top: icon.bottom
102 | topMargin: (softwareRendering ? 1.5 : 1) * units.smallSpacing
103 | left: parent.left
104 | right: parent.right
105 | }
106 | style: softwareRendering ? Text.Outline : Text.Normal
107 | styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
108 | horizontalAlignment: Text.AlignHCenter
109 | verticalAlignment: Text.AlignTop
110 | wrapMode: Text.WordWrap
111 | font.underline: root.activeFocus
112 | }
113 |
114 | MouseArea {
115 | id: mouseArea
116 | hoverEnabled: true
117 | onClicked: root.clicked()
118 | anchors.fill: parent
119 | }
120 |
121 | Keys.onEnterPressed: clicked()
122 | Keys.onReturnPressed: clicked()
123 | Keys.onSpacePressed: clicked()
124 |
125 | Accessible.onPressAction: clicked()
126 | Accessible.role: Accessible.Button
127 | Accessible.name: label.text
128 | }
129 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/Battery.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 Kai Uwe Broulik
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.2
21 |
22 | import org.kde.plasma.core 2.0 as PlasmaCore
23 | import org.kde.plasma.components 2.0 as PlasmaComponents
24 | import org.kde.plasma.workspace.components 2.0 as PW
25 |
26 | Row {
27 | spacing: units.smallSpacing
28 | visible: pmSource.data["Battery"]["Has Cumulative"]
29 |
30 | PlasmaCore.DataSource {
31 | id: pmSource
32 | engine: "powermanagement"
33 | connectedSources: ["Battery", "AC Adapter"]
34 | }
35 |
36 | PW.BatteryIcon {
37 | id: battery
38 | hasBattery: pmSource.data["Battery"]["Has Battery"] || false
39 | percent: pmSource.data["Battery"]["Percent"] || 0
40 | pluggedIn: pmSource.data["AC Adapter"] ? pmSource.data["AC Adapter"]["Plugged in"] : false
41 |
42 | height: batteryLabel.height
43 | width: height
44 | }
45 |
46 | PlasmaComponents.Label {
47 | id: batteryLabel
48 | font.pointSize: config.fontSize
49 | height: undefined
50 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","%1%", battery.percent)
51 | Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Battery at %1%", battery.percent)
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/Clock.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.8
21 | import QtQuick.Layouts 1.1
22 | import QtQuick.Controls 2.5
23 | import org.kde.plasma.core 2.0
24 |
25 | ColumnLayout {
26 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
27 |
28 | Label {
29 | text: Qt.formatTime(timeSource.data["Local"]["DateTime"])
30 | color: ColorScope.textColor
31 | style: softwareRendering ? Text.Outline : Text.Normal
32 | styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
33 | font.pointSize: 48
34 | Layout.alignment: Qt.AlignHCenter
35 | }
36 | Label {
37 | text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate)
38 | color: ColorScope.textColor
39 | style: softwareRendering ? Text.Outline : Text.Normal
40 | styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
41 | font.pointSize: 24
42 | Layout.alignment: Qt.AlignHCenter
43 | }
44 | DataSource {
45 | id: timeSource
46 | engine: "time"
47 | connectedSources: ["Local"]
48 | interval: 1000
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/KeyboardLayoutButton.qml:
--------------------------------------------------------------------------------
1 | /***************************************************************************
2 | * Copyright (C) 2014 by Daniel Vrátil *
3 | * *
4 | * This program is free software; you can redistribute it and/or modify *
5 | * it under the terms of the GNU General Public License as published by *
6 | * the Free Software Foundation; either version 2 of the License, or *
7 | * (at your option) any later version. *
8 | * *
9 | * This program is distributed in the hope that it will be useful, *
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 | * GNU General Public License for more details. *
13 | * *
14 | * You should have received a copy of the GNU General Public License *
15 | * along with this program; if not, write to the *
16 | * Free Software Foundation, Inc., *
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
18 | ***************************************************************************/
19 |
20 | import QtQuick 2.1
21 | import QtQuick.Controls 1.1 as QQC
22 |
23 | import org.kde.plasma.components 2.0 as PlasmaComponents
24 |
25 | import org.kde.plasma.workspace.keyboardlayout 1.0
26 |
27 | PlasmaComponents.ToolButton {
28 |
29 | property int fontSize: config.fontSize
30 |
31 | id: kbLayoutButton
32 |
33 | iconName: "input-keyboard"
34 | implicitWidth: minimumWidth
35 | text: layout.currentLayoutDisplayName
36 | font.pointSize: Math.max(fontSize,theme.defaultFont.pointSize)
37 |
38 | Accessible.name: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Button to change keyboard layout", "Switch layout")
39 |
40 | visible: layout.layouts.length > 1
41 |
42 | onClicked: layout.nextLayout()
43 |
44 | KeyboardLayout {
45 | id: layout
46 | function nextLayout() {
47 | var layouts = layout.layouts;
48 | var index = (layouts.indexOf(layout.currentLayout)+1) % layouts.length;
49 | layout.currentLayout = layouts[index];
50 | }
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/SessionManagementScreen.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2016 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.2
21 |
22 | import QtQuick.Layouts 1.1
23 | import QtQuick.Controls 1.1
24 |
25 | import org.kde.plasma.core 2.0 as PlasmaCore
26 | import org.kde.plasma.components 2.0 as PlasmaComponents
27 |
28 | Item {
29 | id: root
30 |
31 | /*
32 | * Any message to be displayed to the user, visible above the text fields
33 | */
34 | property alias notificationMessage: notificationsLabel.text
35 |
36 | /*
37 | * A list of Items (typically ActionButtons) to be shown in a Row beneath the prompts
38 | */
39 | property alias actionItems: actionItemsLayout.children
40 |
41 | /*
42 | * A model with a list of users to show in the view
43 | * The following roles should exist:
44 | * - name
45 | * - iconSource
46 | *
47 | * The following are also handled:
48 | * - vtNumber
49 | * - displayNumber
50 | * - session
51 | * - isTty
52 | */
53 | property alias userListModel: userListView.model
54 |
55 | /*
56 | * Self explanatory
57 | */
58 | property alias userListCurrentIndex: userListView.currentIndex
59 | property var userListCurrentModelData: userListView.currentItem === null ? [] : userListView.currentItem.m
60 | property bool showUserList: true
61 |
62 | property alias userList: userListView
63 |
64 | property int fontSize: config.fontSize
65 |
66 | default property alias _children: innerLayout.children
67 |
68 | UserList {
69 | id: userListView
70 | visible: showUserList && y > 0
71 | anchors {
72 | bottom: parent.verticalCenter
73 | left: parent.left
74 | right: parent.right
75 | }
76 | }
77 |
78 | //goal is to show the prompts, in ~16 grid units high, then the action buttons
79 | //but collapse the space between the prompts and actions if there's no room
80 | //ui is constrained to 16 grid units wide, or the screen
81 | ColumnLayout {
82 | id: prompts
83 | anchors.top: parent.verticalCenter
84 | anchors.topMargin: units.gridUnit * 0.5
85 | anchors.left: parent.left
86 | anchors.right: parent.right
87 | anchors.bottom: parent.bottom
88 | PlasmaComponents.Label {
89 | id: notificationsLabel
90 | font.pointSize: Math.max(fontSize + 1,theme.defaultFont.pointSize + 1)
91 | Layout.maximumWidth: units.gridUnit * 16
92 | Layout.alignment: Qt.AlignHCenter
93 | Layout.fillWidth: true
94 | horizontalAlignment: Text.AlignHCenter
95 | wrapMode: Text.WordWrap
96 | font.italic: true
97 | }
98 | ColumnLayout {
99 | Layout.minimumHeight: implicitHeight
100 | Layout.maximumHeight: units.gridUnit * 10
101 | Layout.maximumWidth: units.gridUnit * 16
102 | Layout.alignment: Qt.AlignHCenter
103 | ColumnLayout {
104 | id: innerLayout
105 | Layout.alignment: Qt.AlignHCenter
106 | Layout.fillWidth: true
107 | }
108 | Item {
109 | Layout.fillHeight: true
110 | }
111 | }
112 | Row { //deliberately not rowlayout as I'm not trying to resize child items
113 | id: actionItemsLayout
114 | spacing: units.largeSpacing / 2
115 | Layout.alignment: Qt.AlignHCenter
116 | }
117 | Item {
118 | Layout.fillHeight: true
119 | }
120 | }
121 | }
122 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/UserDelegate.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2014 David Edmundson
3 | * Copyright 2014 Aleix Pol Gonzalez
4 | *
5 | * This program is free software; you can redistribute it and/or modify
6 | * it under the terms of the GNU Library General Public License as
7 | * published by the Free Software Foundation; either version 2 or
8 | * (at your option) any later version.
9 | *
10 | * This program is distributed in the hope that it will be useful,
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | * GNU General Public License for more details
14 | *
15 | * You should have received a copy of the GNU Library General Public
16 | * License along with this program; if not, write to the
17 | * Free Software Foundation, Inc.,
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 | */
20 |
21 | import QtQuick 2.8
22 | import org.kde.plasma.core 2.0 as PlasmaCore
23 | import org.kde.plasma.components 2.0 as PlasmaComponents
24 |
25 | Item {
26 | id: wrapper
27 |
28 | // If we're using software rendering, draw outlines instead of shadows
29 | // See https://bugs.kde.org/show_bug.cgi?id=398317
30 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
31 |
32 | property bool isCurrent: true
33 |
34 | readonly property var m: model
35 | property string name
36 | property string userName
37 | property string avatarPath
38 | property string iconSource
39 | property bool constrainText: true
40 | property alias nameFontSize: usernameDelegate.font.pointSize
41 | property int fontSize: config.fontSize
42 | signal clicked()
43 |
44 | property real faceSize: units.gridUnit * 7
45 |
46 | opacity: isCurrent ? 1.0 : 0.5
47 |
48 | Behavior on opacity {
49 | OpacityAnimator {
50 | duration: units.longDuration
51 | }
52 | }
53 |
54 | // Draw a translucent background circle under the user picture
55 | Rectangle {
56 | anchors.centerIn: imageSource
57 | width: imageSource.width - 2 // Subtract to prevent fringing
58 | height: width
59 | radius: width / 2
60 |
61 | color: PlasmaCore.ColorScope.backgroundColor
62 | opacity: 0.6
63 | }
64 |
65 | Item {
66 | id: imageSource
67 | anchors {
68 | bottom: usernameDelegate.top
69 | bottomMargin: units.largeSpacing
70 | horizontalCenter: parent.horizontalCenter
71 | }
72 | Behavior on width {
73 | PropertyAnimation {
74 | from: faceSize
75 | duration: units.longDuration * 2;
76 | }
77 | }
78 | width: isCurrent ? faceSize : faceSize - units.largeSpacing
79 | height: width
80 |
81 | //Image takes priority, taking a full path to a file, if that doesn't exist we show an icon
82 | Image {
83 | id: face
84 | source: wrapper.avatarPath
85 | sourceSize: Qt.size(faceSize, faceSize)
86 | fillMode: Image.PreserveAspectCrop
87 | anchors.fill: parent
88 | }
89 |
90 | PlasmaCore.IconItem {
91 | id: faceIcon
92 | source: iconSource
93 | visible: (face.status == Image.Error || face.status == Image.Null)
94 | anchors.fill: parent
95 | anchors.margins: units.gridUnit * 0.5 // because mockup says so...
96 | colorGroup: PlasmaCore.ColorScope.colorGroup
97 | }
98 | }
99 |
100 | ShaderEffect {
101 | anchors {
102 | bottom: usernameDelegate.top
103 | bottomMargin: units.largeSpacing
104 | horizontalCenter: parent.horizontalCenter
105 | }
106 |
107 | width: imageSource.width
108 | height: imageSource.height
109 |
110 | supportsAtlasTextures: true
111 |
112 | property var source: ShaderEffectSource {
113 | sourceItem: imageSource
114 | // software rendering is just a fallback so we can accept not having a rounded avatar here
115 | hideSource: wrapper.GraphicsInfo.api !== GraphicsInfo.Software
116 | live: true // otherwise the user in focus will show a blurred avatar
117 | }
118 |
119 | property var colorBorder: PlasmaCore.ColorScope.textColor
120 |
121 | //draw a circle with an antialiased border
122 | //innerRadius = size of the inner circle with contents
123 | //outerRadius = size of the border
124 | //blend = area to blend between two colours
125 | //all sizes are normalised so 0.5 == half the width of the texture
126 |
127 | //if copying into another project don't forget to connect themeChanged to update()
128 | //but in SDDM that's a bit pointless
129 | fragmentShader: "
130 | varying highp vec2 qt_TexCoord0;
131 | uniform highp float qt_Opacity;
132 | uniform lowp sampler2D source;
133 |
134 | uniform lowp vec4 colorBorder;
135 | highp float blend = 0.01;
136 | highp float innerRadius = 0.47;
137 | highp float outerRadius = 0.49;
138 | lowp vec4 colorEmpty = vec4(0.0, 0.0, 0.0, 0.0);
139 |
140 | void main() {
141 | lowp vec4 colorSource = texture2D(source, qt_TexCoord0.st);
142 |
143 | highp vec2 m = qt_TexCoord0 - vec2(0.5, 0.5);
144 | highp float dist = sqrt(m.x * m.x + m.y * m.y);
145 |
146 | if (dist < innerRadius)
147 | gl_FragColor = colorSource;
148 | else if (dist < innerRadius + blend)
149 | gl_FragColor = mix(colorSource, colorBorder, ((dist - innerRadius) / blend));
150 | else if (dist < outerRadius)
151 | gl_FragColor = colorBorder;
152 | else if (dist < outerRadius + blend)
153 | gl_FragColor = mix(colorBorder, colorEmpty, ((dist - outerRadius) / blend));
154 | else
155 | gl_FragColor = colorEmpty ;
156 |
157 | gl_FragColor = gl_FragColor * qt_Opacity;
158 | }
159 | "
160 | }
161 |
162 | PlasmaComponents.Label {
163 | id: usernameDelegate
164 | font.pointSize: Math.max(fontSize + 2,theme.defaultFont.pointSize + 2)
165 | anchors {
166 | bottom: parent.bottom
167 | horizontalCenter: parent.horizontalCenter
168 | }
169 | height: implicitHeight // work around stupid bug in Plasma Components that sets the height
170 | width: constrainText ? parent.width : implicitWidth
171 | text: wrapper.name
172 | style: softwareRendering ? Text.Outline : Text.Normal
173 | styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
174 | elide: Text.ElideRight
175 | horizontalAlignment: Text.AlignHCenter
176 | //make an indication that this has active focus, this only happens when reached with keyboard navigation
177 | font.underline: wrapper.activeFocus
178 | }
179 |
180 | MouseArea {
181 | anchors.fill: parent
182 | hoverEnabled: true
183 |
184 | onClicked: wrapper.clicked();
185 | }
186 |
187 | Accessible.name: name
188 | Accessible.role: Accessible.Button
189 | function accessiblePressAction() { wrapper.clicked() }
190 | }
191 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/UserList.qml:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2014 David Edmundson
3 | *
4 | * This program is free software; you can redistribute it and/or modify
5 | * it under the terms of the GNU Library General Public License as
6 | * published by the Free Software Foundation; either version 2 or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details
13 | *
14 | * You should have received a copy of the GNU Library General Public
15 | * License along with this program; if not, write to the
16 | * Free Software Foundation, Inc.,
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 | */
19 |
20 | import QtQuick 2.2
21 |
22 | ListView {
23 | id: view
24 | readonly property string selectedUser: currentItem ? currentItem.userName : ""
25 | readonly property int userItemWidth: units.gridUnit * 8
26 | readonly property int userItemHeight: units.gridUnit * 8
27 |
28 | implicitHeight: userItemHeight
29 |
30 | activeFocusOnTab : true
31 |
32 | /*
33 | * Signals that a user was explicitly selected
34 | */
35 | signal userSelected;
36 |
37 | orientation: ListView.Horizontal
38 | highlightRangeMode: ListView.StrictlyEnforceRange
39 |
40 | //centre align selected item (which implicitly centre aligns the rest
41 | preferredHighlightBegin: width/2 - userItemWidth/2
42 | preferredHighlightEnd: preferredHighlightBegin
43 |
44 | delegate: UserDelegate {
45 | avatarPath: model.icon || ""
46 | iconSource: model.iconName || "user-identity"
47 |
48 | name: {
49 | var displayName = model.realName || model.name
50 |
51 | if (model.vtNumber === undefined || model.vtNumber < 0) {
52 | return displayName
53 | }
54 |
55 | if (!model.session) {
56 | return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Nobody logged in on that session", "Unused")
57 | }
58 |
59 |
60 | var location = ""
61 | if (model.isTty) {
62 | location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console number", "TTY %1", model.vtNumber)
63 | } else if (model.displayNumber) {
64 | location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console (X display number)", "on TTY %1 (Display %2)", model.vtNumber, model.displayNumber)
65 | }
66 |
67 | if (location) {
68 | return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Username (location)", "%1 (%2)", displayName, location)
69 | }
70 |
71 | return displayName
72 | }
73 |
74 | userName: model.name
75 |
76 | width: userItemWidth
77 | height: userItemHeight
78 |
79 | //if we only have one delegate, we don't need to clip the text as it won't be overlapping with anything
80 | constrainText: ListView.view.count > 1
81 |
82 | isCurrent: ListView.isCurrentItem
83 |
84 | onClicked: {
85 | ListView.view.currentIndex = index;
86 | ListView.view.userSelected();
87 | }
88 | }
89 |
90 | Keys.onEscapePressed: view.userSelected()
91 | Keys.onEnterPressed: view.userSelected()
92 | Keys.onReturnPressed: view.userSelected()
93 | }
94 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/VirtualKeyboard.qml:
--------------------------------------------------------------------------------
1 | /********************************************************************
2 | This file is part of the KDE project.
3 |
4 | Copyright (C) 2017 Martin Gräßlin
5 |
6 | This program is free software; you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation; either version 2 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 | *********************************************************************/
19 | import QtQuick 2.5
20 | import QtQuick.VirtualKeyboard 2.1
21 |
22 | InputPanel {
23 | id: inputPanel
24 | property bool activated: false
25 | active: activated && Qt.inputMethod.visible
26 | visible: active
27 | width: parent.width
28 | }
29 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/components/WallpaperFader.qml:
--------------------------------------------------------------------------------
1 | /********************************************************************
2 | This file is part of the KDE project.
3 |
4 | Copyright (C) 2014 Aleix Pol Gonzalez
5 |
6 | This program is free software; you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation; either version 2 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 | *********************************************************************/
19 |
20 | import QtQuick 2.6
21 | import QtQuick.Controls 1.1
22 | import QtQuick.Layouts 1.1
23 | import QtGraphicalEffects 1.0
24 |
25 | import org.kde.plasma.core 2.0 as PlasmaCore
26 | import org.kde.plasma.components 2.0 as PlasmaComponents
27 |
28 | import org.kde.plasma.private.sessions 2.0
29 | import "../components"
30 |
31 | Item {
32 | id: wallpaperFader
33 | property Item clock
34 | property Item mainStack
35 | property Item footer
36 | property alias source: wallpaperBlur.source
37 | state: lockScreenRoot.uiVisible ? "on" : "off"
38 | property real factor: 0
39 | readonly property bool lightBackground: Math.max(PlasmaCore.ColorScope.backgroundColor.r, PlasmaCore.ColorScope.backgroundColor.g, PlasmaCore.ColorScope.backgroundColor.b) > 0.5
40 |
41 | property bool alwaysShowClock: typeof config === "undefined" || config.alwaysShowClock === true
42 |
43 | Behavior on factor {
44 | NumberAnimation {
45 | target: wallpaperFader
46 | property: "factor"
47 | duration: 1000
48 | easing.type: Easing.InOutQuad
49 | }
50 | }
51 | FastBlur {
52 | id: wallpaperBlur
53 | anchors.fill: parent
54 | radius: 50 * wallpaperFader.factor
55 | }
56 | ShaderEffect {
57 | id: wallpaperShader
58 | anchors.fill: parent
59 | supportsAtlasTextures: true
60 | property var source: ShaderEffectSource {
61 | sourceItem: wallpaperBlur
62 | live: true
63 | hideSource: true
64 | textureMirroring: ShaderEffectSource.NoMirroring
65 | }
66 |
67 | readonly property real contrast: 0.65 * wallpaperFader.factor + (1 - wallpaperFader.factor)
68 | readonly property real saturation: 1.6 * wallpaperFader.factor + (1 - wallpaperFader.factor)
69 | readonly property real intensity: (wallpaperFader.lightBackground ? 1.7 : 0.6) * wallpaperFader.factor + (1 - wallpaperFader.factor)
70 |
71 | readonly property real transl: (1.0 - contrast) / 2.0;
72 | readonly property real rval: (1.0 - saturation) * 0.2126;
73 | readonly property real gval: (1.0 - saturation) * 0.7152;
74 | readonly property real bval: (1.0 - saturation) * 0.0722;
75 |
76 | property var colorMatrix: Qt.matrix4x4(
77 | contrast, 0, 0, 0.0,
78 | 0, contrast, 0, 0.0,
79 | 0, 0, contrast, 0.0,
80 | transl, transl, transl, 1.0).times(Qt.matrix4x4(
81 | rval + saturation, rval, rval, 0.0,
82 | gval, gval + saturation, gval, 0.0,
83 | bval, bval, bval + saturation, 0.0,
84 | 0, 0, 0, 1.0)).times(Qt.matrix4x4(
85 | intensity, 0, 0, 0,
86 | 0, intensity, 0, 0,
87 | 0, 0, intensity, 0,
88 | 0, 0, 0, 1
89 | ));
90 |
91 |
92 | fragmentShader: "
93 | uniform mediump mat4 colorMatrix;
94 | uniform mediump sampler2D source;
95 | varying mediump vec2 qt_TexCoord0;
96 | uniform lowp float qt_Opacity;
97 |
98 | void main(void)
99 | {
100 | mediump vec4 tex = texture2D(source, qt_TexCoord0);
101 | gl_FragColor = tex * colorMatrix * qt_Opacity;
102 | }"
103 | }
104 |
105 | states: [
106 | State {
107 | name: "on"
108 | PropertyChanges {
109 | target: mainStack
110 | opacity: 1
111 | }
112 | PropertyChanges {
113 | target: footer
114 | opacity: 1
115 | }
116 | PropertyChanges {
117 | target: wallpaperFader
118 | factor: 1
119 | }
120 | PropertyChanges {
121 | target: clock.shadow
122 | opacity: 0
123 | }
124 | PropertyChanges {
125 | target: clock
126 | opacity: 1
127 | }
128 | },
129 | State {
130 | name: "off"
131 | PropertyChanges {
132 | target: mainStack
133 | opacity: 0
134 | }
135 | PropertyChanges {
136 | target: footer
137 | opacity: 0
138 | }
139 | PropertyChanges {
140 | target: wallpaperFader
141 | factor: 0
142 | }
143 | PropertyChanges {
144 | target: clock.shadow
145 | opacity: wallpaperFader.alwaysShowClock ? 1 : 0
146 | }
147 | PropertyChanges {
148 | target: clock
149 | opacity: wallpaperFader.alwaysShowClock ? 1 : 0
150 | }
151 | }
152 | ]
153 | transitions: [
154 | Transition {
155 | from: "off"
156 | to: "on"
157 | //Note: can't use animators as they don't play well with parallelanimations
158 | NumberAnimation {
159 | targets: [mainStack, footer, clock]
160 | property: "opacity"
161 | duration: units.longDuration
162 | easing.type: Easing.InOutQuad
163 | }
164 | },
165 | Transition {
166 | from: "on"
167 | to: "off"
168 | NumberAnimation {
169 | targets: [mainStack, footer, clock]
170 | property: "opacity"
171 | duration: 500
172 | easing.type: Easing.InOutQuad
173 | }
174 | }
175 | ]
176 | }
177 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/faces/.face.icon:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/metadata.desktop:
--------------------------------------------------------------------------------
1 | [SddmGreeterTheme]
2 | Name=Qogir
3 | Description=Qogir Theme
4 | Author=Vince Liuice
5 | Copyright=(c) 2019, Vince Liuice
6 | License=CC-BY-SA
7 | Type=sddm-theme
8 | Version=0.1.0
9 | Website=https://github.com/vinceliuice/Qogir-kde
10 | Screenshot=preview.png
11 | MainScript=Main.qml
12 | ConfigFile=theme.conf
13 | TranslationsDirectory=translations
14 | Email=vinceliuice@hotmail.com
15 | Theme-Id=qogir
16 | Theme-API=2.0
17 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/preview.png
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/real-wood.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/sddm/themes/Qogir/real-wood.jpg
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/theme.conf:
--------------------------------------------------------------------------------
1 | [General]
2 | type=image
3 | color=#1d99f3
4 | fontSize=10
5 | background=background.jpg
6 |
--------------------------------------------------------------------------------
/airootfs/usr/share/sddm/themes/Qogir/theme.conf.user:
--------------------------------------------------------------------------------
1 | [General]
2 | background=real-wood.jpg
3 | type=image
4 |
--------------------------------------------------------------------------------
/airootfs/usr/share/wallpapers/real-wood/real-wood.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/wallpapers/real-wood/real-wood.jpg
--------------------------------------------------------------------------------
/airootfs/usr/share/wallpapers/wall/wall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/airootfs/usr/share/wallpapers/wall/wall.png
--------------------------------------------------------------------------------
/bootableusb.sh:
--------------------------------------------------------------------------------
1 | #Bootable USB Maker for ALG
2 | #!/bin/bash
3 | #set -e
4 | #=================================================================================
5 | #Author: DemonKiller
6 | #SPDX-License-Identifier: GPL-3.0
7 | #=================================================================================
8 | #Warning: Insert One USB at a time only. If you have any other USB either remove them from the system or change the script accordingly. Check size with lsblk (uncommment line 10 & 11).
9 |
10 |
11 | echo "Welcome to Bootable USB Maker!"
12 | echo "We are making ALG Bootable USB, please wait..."
13 | echo " "
14 |
15 | #echo "Printing Partitions in Drive:"
16 | #lsblk
17 |
18 | echo "unmounting drive..."
19 | umount /dev/sdb*
20 |
21 | echo "Checking for any mounted partitions & unmounting them...."
22 | umount /dev/sdb*
23 |
24 | echo "========================================================="
25 | echo "Formatting with ext4.."
26 | sudo mkfs.ext4 /dev/sdb
27 |
28 | echo "USB is Formatted.."
29 |
30 | echo " "
31 | echo "================================================================"
32 | echo "Making ALG bootable USB, this may take sometime...."
33 | cd out
34 | sudo dd if=archlinux-gui-zen-$(date +%Y.%m)-x86_64.iso of=/dev/sdb status='progress'
35 |
36 |
37 | echo "D O N E! Your USB should be bootable now, with Arch Linux GUI."
38 | echo "Thank YOU!"
39 |
--------------------------------------------------------------------------------
/cleanup.sh:
--------------------------------------------------------------------------------
1 | sudo rm -rvf out
2 | sudo rm -rvf work
3 |
--------------------------------------------------------------------------------
/efiboot/loader/entries/01-archiso-x86_64-linux.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | title Arch Linux installer (x86_64, UEFI, Zen Kernel), FOSS GPU Drivers
5 | sort-key 01
6 | linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
7 | initrd /%INSTALL_DIR%/boot/intel-ucode.img
8 | initrd /%INSTALL_DIR%/boot/amd-ucode.img
9 | initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
10 | options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=free nouveau.modeset=1 radeon.modeset=1 i915.modeset=1
11 |
--------------------------------------------------------------------------------
/efiboot/loader/entries/02-archiso-x86_64-linux-nvidia.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | title Arch Linux installer (x86_64, UEFI, Zen Kernel), LATEST NVIDIA GPUS ONLY
5 | sort-key 02
6 | linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
7 | initrd /%INSTALL_DIR%/boot/intel-ucode.img
8 | initrd /%INSTALL_DIR%/boot/amd-ucode.img
9 | initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
10 | options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=nonfree nouveau.modeset=0 modprobe.blacklist=nouveau nvidia radeon.modeset=1 i915.modeset=1
11 |
--------------------------------------------------------------------------------
/efiboot/loader/loader.conf:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | timeout 15
5 | default 01-archiso-x86_64-linux.conf
6 |
--------------------------------------------------------------------------------
/git_commit.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #set -e
3 |
4 | #DemonKiller's Git Commit Script
5 | #Repo must be cloned to local for this to work
6 |
7 |
8 | # checking if I have the latest files from github
9 | tput setaf 4
10 | echo "Checking for newer files online first"
11 | tput sgr0
12 | git pull
13 |
14 |
15 | # Below command will backup everything inside the project folder
16 | git add --all .
17 |
18 | # Give a comment to the commit if you want
19 | tput setaf 1
20 | echo "Write Commit Below:"
21 | tput sgr0
22 |
23 | read input
24 |
25 | # Committing to the local repository with a message containing the time details and commit text
26 |
27 | git commit -m "$input"
28 |
29 | # Push the local files to github
30 |
31 | git push
32 |
33 | tput setaf 2
34 | echo "D O N E!"
35 | tput sgr0
36 |
--------------------------------------------------------------------------------
/packages.x86_64:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 | alsa-utils
4 | amd-ucode
5 | arch-install-scripts
6 | b43-fwcutter
7 | base
8 | bind-tools
9 | broadcom-wl-dkms
10 | btrfs-progs
11 | clonezilla
12 | cloud-init
13 | crda
14 | darkhttpd
15 | ddrescue
16 | dhclient
17 | dhcpcd
18 | diffutils
19 | dmraid
20 | dnsmasq
21 | dosfstools
22 | edk2-shell
23 | espeakup
24 | ethtool
25 | exfatprogs
26 | f2fs-tools
27 | fatresize
28 | fsarchiver
29 | gnu-netcat
30 | gpart
31 | gpm
32 | gptfdisk
33 | grml-zsh-config
34 | haveged
35 | hdparm
36 | intel-ucode
37 | ipw2100-fw
38 | ipw2200-fw
39 | irssi
40 | iwd
41 | jfsutils
42 | kitty-terminfo
43 | lftp
44 | livecd-sounds
45 | lsscsi
46 | lvm2
47 | man-db
48 | man-pages
49 | mc
50 | mdadm
51 | memtest86+
52 | mkinitcpio
53 | mkinitcpio-archiso
54 | mkinitcpio-nfs-utils
55 | mtools
56 | nano
57 | nbd
58 | ndisc6
59 | nfs-utils
60 | nilfs-utils
61 | nmap
62 | ntfs-3g
63 | nvme-cli
64 | openconnect
65 | openssh
66 | openvpn
67 | partclone
68 | parted
69 | partimage
70 | ppp
71 | pptpclient
72 | reflector
73 | reiserfsprogs
74 | rp-pppoe
75 | rsync
76 | rxvt-unicode-terminfo
77 | sdparm
78 | sg3_utils
79 | smartmontools
80 | squashfs-tools
81 | sudo
82 | syslinux
83 | systemd-resolvconf
84 | tcpdump
85 | terminus-font
86 | testdisk
87 | udftools
88 | usb_modeswitch
89 | usbutils
90 | vpnc
91 | wireless-regdb
92 | wireless_tools
93 | wpa_supplicant
94 | wvdial
95 | xfsprogs
96 | xl2tpd
97 | zsh
98 |
99 | #Kernel
100 | linux-zen
101 | linux-zen-headers
102 | linux-firmware
103 |
104 | #Arch Linux GUI Zen Core
105 | xorg-server
106 | sddm
107 | zsh-completions
108 | zsh-syntax-highlighting
109 | xf86-input-libinput
110 | networkmanager
111 | xdg-user-dirs
112 | neofetch
113 | virtualbox-guest-utils
114 | noto-fonts-cjk
115 |
116 | #Zen ISO Live CD
117 | plasma
118 | konsole
119 | dolphin
120 |
121 | #Software Center
122 | pamac-aur
123 | archlinux-appstream-data-pamac
124 |
125 | #Installer
126 | grub
127 | efibootmgr
128 | calamares
129 | alg-zen-cala-config
130 | os-prober
131 |
132 | #chaotic aur
133 | chaotic-keyring
134 | chaotic-mirrorlist
135 |
136 | #nvidia
137 | nvidia-dkms
138 | nvidia-utils
139 | nvidia-settings
140 |
--------------------------------------------------------------------------------
/pacman.conf:
--------------------------------------------------------------------------------
1 | #
2 | # /etc/pacman.conf
3 | #
4 | # See the pacman.conf(5) manpage for option and repository directives
5 | #
6 | # SPDX-License-Identifier: GPL-3.0-or-later
7 |
8 | #
9 | # GENERAL OPTIONS
10 | #
11 | [options]
12 | # The following paths are commented out with their default values listed.
13 | # If you wish to use different paths, uncomment and update the paths.
14 | #RootDir = /
15 | #DBPath = /var/lib/pacman/
16 | #CacheDir = /var/cache/pacman/pkg/
17 | #LogFile = /var/log/pacman.log
18 | #GPGDir = /etc/pacman.d/gnupg/
19 | #HookDir = /etc/pacman.d/hooks/
20 | HoldPkg = pacman glibc
21 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
22 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
23 | #CleanMethod = KeepInstalled
24 | Architecture = auto
25 |
26 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
27 | #IgnorePkg =
28 | #IgnoreGroup =
29 |
30 | #NoUpgrade =
31 | #NoExtract =
32 |
33 | # Misc options
34 | #UseSyslog
35 | Color
36 | ParallelDownloads=5
37 | # We cannot check disk space from within a chroot environment
38 | #CheckSpace
39 | #VerbosePkgLists
40 |
41 | # By default, pacman accepts packages signed by keys that its local keyring
42 | # trusts (see pacman-key and its man page), as well as unsigned packages.
43 | SigLevel = Required DatabaseOptional
44 | LocalFileSigLevel = Optional
45 | #RemoteFileSigLevel = Required
46 |
47 | # NOTE: You must run `pacman-key --init` before first using pacman; the local
48 | # keyring can then be populated with the keys of all official Arch Linux
49 | # packagers with `pacman-key --populate archlinux`.
50 |
51 | #
52 | # REPOSITORIES
53 | # - can be defined here or included from another file
54 | # - pacman will search repositories in the order defined here
55 | # - local/custom mirrors can be added here or in separate files
56 | # - repositories listed first will take precedence when packages
57 | # have identical names, regardless of version number
58 | # - URLs will have $repo replaced by the name of the current repo
59 | # - URLs will have $arch replaced by the name of the architecture
60 | #
61 | # Repository entries are of the format:
62 | # [repo-name]
63 | # Server = ServerName
64 | # Include = IncludePath
65 | #
66 | # The header [repo-name] is crucial - it must be present and
67 | # uncommented to enable the repo.
68 | #
69 |
70 | # The testing repositories are disabled by default. To enable, uncomment the
71 | # repo name header and Include lines. You can add preferred servers immediately
72 | # after the header, and they will be used before the default mirrors.
73 |
74 | #[testing]
75 | #Include = /etc/pacman.d/mirrorlist
76 |
77 | [alg_repo]
78 | SigLevel = Optional TrustedOnly
79 | Server = https://arch-linux-gui.github.io/$repo/$arch
80 |
81 | [core]
82 | Include = /etc/pacman.d/mirrorlist
83 |
84 | [extra]
85 | Include = /etc/pacman.d/mirrorlist
86 |
87 | #[community-testing]
88 | #Include = /etc/pacman.d/mirrorlist
89 |
90 | [community]
91 | Include = /etc/pacman.d/mirrorlist
92 |
93 | # If you want to run 32 bit applications on your x86_64 system,
94 | # enable the multilib repositories as required here.
95 |
96 | #[multilib-testing]
97 | #Include = /etc/pacman.d/mirrorlist
98 |
99 | #[multilib]
100 | #Include = /etc/pacman.d/mirrorlist
101 |
102 | # An example of a custom package repository. See the pacman manpage for
103 | # tips on creating your own repositories.
104 | #[custom]
105 | #SigLevel = Optional TrustAll
106 | #Server = file:///home/custompkgs
107 |
108 |
109 | [alg-settings]
110 | SigLevel = Optional TrustedOnly
111 | Server = https://arch-linux-gui.github.io/$repo/$arch
112 |
113 | [chaotic-aur]
114 | Include = /etc/pacman.d/chaotic-mirrorlist
115 |
116 |
--------------------------------------------------------------------------------
/profiledef.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | # shellcheck disable=SC2034
3 |
4 | iso_name="archlinux-gui-zen"
5 | iso_label="ARCH_GUI_ZEN_$(date +%Y%m)"
6 | iso_publisher="DemonKiller"
7 | iso_application="Arch Linux GUI Live/Rescue CD"
8 | iso_version="$(date +%Y.%m)"
9 | install_dir="arch"
10 | bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
11 | arch="x86_64"
12 | pacman_conf="pacman.conf"
13 | #airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
14 | airootfs_image_tool_options=('-comp' 'zstd' '-Xcompression-level' '15' '-b' '1M')
15 | file_permissions=(
16 | ["/etc/shadow"]="0:0:400"
17 | ["/root"]="0:0:750"
18 | ["/root/.automated_script.sh"]="0:0:755"
19 | ["/usr/local/bin/choose-mirror"]="0:0:755"
20 | ["/usr/local/bin/Installation_guide"]="0:0:755"
21 | ["/usr/local/bin/livecd-sound"]="0:0:755"
22 | ["/usr/local/bin/alg-remove-nvidia"]="0:0:755"
23 | ["/usr/local/bin/alg-preset"]="0:0:755"
24 | ["/usr/local/bin/alg-pacman-populate"]="0:0:755"
25 | ["/usr/local/bin/alg-finalisation"]="0:0:755"
26 | )
27 |
--------------------------------------------------------------------------------
/syslinux/archiso_head.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | SERIAL 0 38400
5 | UI vesamenu.c32
6 | MENU TITLE Arch Linux Zen
7 | MENU BACKGROUND splash.png
8 |
9 | MENU WIDTH 78
10 | MENU MARGIN 4
11 | MENU ROWS 7
12 | MENU VSHIFT 10
13 | MENU TABMSGROW 14
14 | MENU CMDLINEROW 14
15 | MENU HELPMSGROW 16
16 | MENU HELPMSGENDROW 29
17 |
18 | # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
19 |
20 | MENU COLOR border 30;44 #40ffffff #a0000000 std
21 | MENU COLOR title 1;36;44 #9033ccff #a0000000 std
22 | MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
23 | MENU COLOR unsel 37;44 #50ffffff #a0000000 std
24 | MENU COLOR help 37;40 #c0ffffff #a0000000 std
25 | MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
26 | MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
27 | MENU COLOR msg07 37;40 #90ffffff #a0000000 std
28 | MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
29 |
30 | MENU CLEAR
31 | MENU IMMEDIATE
32 |
--------------------------------------------------------------------------------
/syslinux/archiso_pxe-linux.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | LABEL arch64_nbd
5 | TEXT HELP
6 | Boot the Arch Linux install medium using NBD.
7 | It allows you to install Arch Linux or perform system maintenance.
8 | ENDTEXT
9 | MENU LABEL Arch Linux install medium (x86_64, NBD)
10 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
11 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
12 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver} checksum verify
13 | SYSAPPEND 3
14 |
15 | LABEL arch64_nfs
16 | TEXT HELP
17 | Boot the Arch Linux live medium using NFS.
18 | It allows you to install Arch Linux or perform system maintenance.
19 | ENDTEXT
20 | MENU LABEL Arch Linux install medium (x86_64, NFS)
21 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
22 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
23 | APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt checksum verify
24 | SYSAPPEND 3
25 |
26 | LABEL arch64_http
27 | TEXT HELP
28 | Boot the Arch Linux live medium using HTTP.
29 | It allows you to install Arch Linux or perform system maintenance.
30 | ENDTEXT
31 | MENU LABEL Arch Linux install medium (x86_64, HTTP)
32 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
33 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
34 | APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ checksum verify
35 | SYSAPPEND 3
36 |
--------------------------------------------------------------------------------
/syslinux/archiso_pxe.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | INCLUDE archiso_head.cfg
5 |
6 | INCLUDE archiso_pxe-linux.cfg
7 |
8 | INCLUDE archiso_tail.cfg
9 |
--------------------------------------------------------------------------------
/syslinux/archiso_sys-linux.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | LABEL arch64 free
5 | TEXT HELP
6 | Boot the Arch Linux installer on BIOS, FOSS GPU drivers
7 | Allows you to install Arch Linux with Zen Kernel.
8 | ENDTEXT
9 | MENU LABEL Arch Linux installer (x86_64, BIOS, Zen) FOSS GPU DRIVERS
10 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
11 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
12 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=free nouveau.modeset=1 radeon.modeset=1 i915.modeset=1
13 |
14 | LABEL arch64 non-free
15 | TEXT HELP
16 | Boot the Arch Linux installer on BIOS, LATEST NVIDIA Drivers, NO LEGACY
17 | Allows you to install Arch Linux with Zen Kernel.
18 | ENDTEXT
19 | MENU LABEL Arch Linux installer (x86_64, BIOS, Zen) LATEST NVIDIA GPUS ONLY
20 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen
21 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img
22 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=nonfree nouveau.modeset=0 modprobe.blacklist=nouveau nvidia radeon.modeset=1 i915.modeset=1
23 |
--------------------------------------------------------------------------------
/syslinux/archiso_sys.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | INCLUDE archiso_head.cfg
5 |
6 | DEFAULT arch64
7 | TIMEOUT 150
8 |
9 | INCLUDE archiso_sys-linux.cfg
10 |
11 | INCLUDE archiso_tail.cfg
12 |
--------------------------------------------------------------------------------
/syslinux/archiso_tail.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | LABEL existing
5 | TEXT HELP
6 | Boot an existing operating system.
7 | Press TAB to edit the disk and partition number to boot.
8 | ENDTEXT
9 | MENU LABEL Boot existing OS
10 | COM32 chain.c32
11 | APPEND hd0 0
12 |
13 | # http://www.memtest.org/
14 | LABEL memtest
15 | MENU LABEL Run Memtest86+ (RAM test)
16 | LINUX /%INSTALL_DIR%/boot/memtest
17 |
18 | # http://hdt-project.org/
19 | LABEL hdt
20 | MENU LABEL Hardware Information (HDT)
21 | COM32 hdt.c32
22 | APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz
23 |
24 | LABEL reboot
25 | TEXT HELP
26 | Reboot computer.
27 | The computer's firmware must support APM.
28 | ENDTEXT
29 | MENU LABEL Reboot
30 | COM32 reboot.c32
31 |
32 | LABEL poweroff
33 | TEXT HELP
34 | Power off computer.
35 | The computer's firmware must support APM.
36 | ENDTEXT
37 | MENU LABEL Power Off
38 | COM32 poweroff.c32
39 |
--------------------------------------------------------------------------------
/syslinux/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arch-linux-gui/arch-linux-gui-zen/b58f269758cc478b0f432c36cdfc524d27cc0767/syslinux/splash.png
--------------------------------------------------------------------------------
/syslinux/syslinux.cfg:
--------------------------------------------------------------------------------
1 | #
2 | # SPDX-License-Identifier: GPL-3.0-or-later
3 |
4 | DEFAULT select
5 |
6 | LABEL select
7 | COM32 whichsys.c32
8 | APPEND -pxe- pxe -sys- sys -iso- sys
9 |
10 | LABEL pxe
11 | CONFIG archiso_pxe.cfg
12 |
13 | LABEL sys
14 | CONFIG archiso_sys.cfg
15 |
--------------------------------------------------------------------------------