├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── airootfs ├── etc │ ├── X11 │ │ └── xorg.conf.d │ │ │ └── 30-touchpad.conf │ ├── default │ │ └── grub │ ├── group │ ├── gshadow │ ├── hostname │ ├── locale.conf │ ├── localtime │ ├── mkinitcpio.conf │ ├── mkinitcpio.conf.d │ │ └── archiso.conf │ ├── mkinitcpio.d │ │ ├── alg │ │ └── linux.preset │ ├── modprobe.d │ │ └── broadcom-wl.conf │ ├── motd │ ├── pacman.conf │ ├── pacman.d │ │ ├── hooks │ │ │ ├── uncomment-mirrors.hook │ │ │ └── zzzz99-remove-custom-hooks-from-airootfs.hook │ │ └── mirrorlist │ ├── passwd │ ├── sddm.conf │ ├── sddm.conf.d │ │ └── autologin.conf │ ├── shadow │ ├── skel │ │ ├── .bashrc │ │ └── .config │ │ │ └── autostart │ │ │ └── welcome.desktop │ ├── ssh │ │ └── sshd_config │ ├── sudoers.d │ │ └── g_wheel │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── volatile-storage.conf │ │ ├── logind.conf.d │ │ │ └── do-not-suspend.conf │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ └── 20-wireless.network │ │ ├── resolved.conf.d │ │ │ └── archiso.conf │ │ ├── system-generators │ │ │ └── systemd-gpt-auto-generator │ │ └── system │ │ │ ├── bluetooth.target.wants │ │ │ └── bluetooth.service │ │ │ ├── choose-mirror.service │ │ │ ├── cloud-init.target.wants │ │ │ ├── cloud-config.service │ │ │ ├── cloud-final.service │ │ │ ├── cloud-init-local.service │ │ │ └── cloud-init.service │ │ │ ├── dbus-org.bluez.service │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ ├── dbus-org.freedesktop.nm-dispatcher.service │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ ├── dbus-org.freedesktop.timesync1.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 │ │ │ ├── ModemManager.service │ │ │ ├── NetworkManager.service │ │ │ ├── choose-mirror.service │ │ │ ├── cups.path │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── hv_fcopy_daemon.service │ │ │ ├── hv_kvp_daemon.service │ │ │ ├── hv_vss_daemon.service │ │ │ ├── iwd.service │ │ │ ├── livecd-talk.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service │ │ │ ├── sshd.service │ │ │ ├── systemd-networkd.service │ │ │ ├── systemd-resolved.service │ │ │ ├── vboxservice.service │ │ │ ├── vmtoolsd.service │ │ │ └── vmware-vmblock-fuse.service │ │ │ ├── network-online.target.wants │ │ │ ├── NetworkManager-wait-online.service │ │ │ └── systemd-networkd-wait-online.service │ │ │ ├── pacman-init.service │ │ │ ├── printer.target.wants │ │ │ └── cups.service │ │ │ ├── reflector.service.d │ │ │ └── archiso.conf │ │ │ ├── sockets.target.wants │ │ │ ├── cups.socket │ │ │ └── systemd-networkd.socket │ │ │ ├── sound.target.wants │ │ │ └── livecd-alsa-unmuter.service │ │ │ ├── sysinit.target.wants │ │ │ ├── systemd-time-wait-sync.service │ │ │ └── systemd-timesyncd.service │ │ │ ├── systemd-networkd-wait-online.service.d │ │ │ └── wait-for-only-one-interface.conf │ │ │ └── vboxservice.service │ └── xdg │ │ └── reflector │ │ └── reflector.conf ├── root │ ├── .automated_script.sh │ ├── .zlogin │ └── customize_airootfs.sh └── usr │ ├── local │ ├── bin │ │ ├── Installation_guide │ │ ├── alg-finalisation │ │ ├── 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 ├── buildiso ├── cleanup.sh ├── efiboot └── loader │ ├── entries │ ├── 01-archiso-x86_64-linux.conf │ └── 02-archiso-x86_64-linux-nvidia.conf │ └── loader.conf ├── grub ├── grub.cfg └── loopback.cfg ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh ├── services.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 /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig for archiso 2 | # https://editorconfig.org/ 3 | # 4 | # SPDX-License-Identifier: GPL-3.0-or-later 5 | 6 | # Top-most EditorConfig file 7 | root = true 8 | 9 | # Unix-style newlines without trailing whitespaces, but with a newline 10 | # ending every file, utf-8 charset, set indent to spaces with width of four 11 | [*] 12 | end_of_line = lf 13 | insert_final_newline = true 14 | trim_trailing_whitespace = true 15 | charset = utf-8 16 | indent_style = space 17 | indent_size = 4 18 | max_line_length = 120 19 | # for shfmt 20 | switch_case_indent = true 21 | binary_next_line = true 22 | 23 | 24 | [*.{yml,yaml}] 25 | end_of_line = lf 26 | insert_final_newline = true 27 | trim_trailing_whitespace = true 28 | charset = utf-8 29 | indent_style = space 30 | indent_size = 2 31 | 32 | [*.conf] 33 | end_of_line = lf 34 | insert_final_newline = true 35 | trim_trailing_whitespace = true 36 | charset = utf-8 37 | indent_style = space 38 | indent_size = 2 39 | 40 | [*.rst] 41 | end_of_line = lf 42 | insert_final_newline = true 43 | trim_trailing_whitespace = true 44 | charset = utf-8 45 | indent_style = space 46 | indent_size = 2 47 | 48 | [Makefile] 49 | indent_style = tab 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | archiso-*.tar.gz* 3 | work/ 4 | out/ 5 | *.iso 6 | *.img 7 | *.cer 8 | *.crt 9 | *.key 10 | *.pem 11 | user-data 12 | meta-data 13 | man/version.rst 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## ALG Plasma Themed Edition 2 | 3 | ### To be done 4 | - This edition will be merged with plasma pure in the future. 5 | 6 | ### What this is: 7 | AL + KDE Plasma + ALG Themeing and Apps 8 | -------------------------------------------------------------------------------- /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 disables 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: 17 | -------------------------------------------------------------------------------- /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 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /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 kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs 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.conf.d/archiso.conf: -------------------------------------------------------------------------------- 1 | HOOKS=(base udev microcode modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard) 2 | COMPRESSION="xz" 3 | -------------------------------------------------------------------------------- /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' 6 | ALL_config='/etc/mkinitcpio.conf' 7 | 8 | #default_config="/etc/mkinitcpio.conf" 9 | default_image="/boot/initramfs-linux.img" 10 | #default_options="" 11 | 12 | #fallback_config="/etc/mkinitcpio.conf" 13 | fallback_image="/boot/initramfs-linux-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' 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/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- 1 | # The broadcom-wl package requires some modules to be disabled in order to use 2 | # wl. Since the ISO image needs to cover many hardware cases, this file 3 | # overrides the default blacklist in /usr/lib/modprobe.d/ 4 | # 5 | # If you need to use wl, you may need to delete this file, then `rmmod` any 6 | # already-loaded modules that are now blacklisted before proceeding to modprobe 7 | # wl itself. 8 | -------------------------------------------------------------------------------- /airootfs/etc/motd: -------------------------------------------------------------------------------- 1 | Welcome to Arch Linux Rolling! 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 | # 7 | # GENERAL OPTIONS 8 | # 9 | [options] 10 | # The following paths are commented out with their default values listed. 11 | # If you wish to use different paths, uncomment and update the paths. 12 | #RootDir = / 13 | #DBPath = /var/lib/pacman/ 14 | #CacheDir = /var/cache/pacman/pkg/ 15 | #LogFile = /var/log/pacman.log 16 | #GPGDir = /etc/pacman.d/gnupg/ 17 | #HookDir = /etc/pacman.d/hooks/ 18 | HoldPkg = pacman glibc 19 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u 20 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u 21 | #CleanMethod = KeepInstalled 22 | Architecture = auto 23 | 24 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup 25 | #IgnorePkg = 26 | #IgnoreGroup = 27 | 28 | #NoUpgrade = 29 | #NoExtract = 30 | 31 | # Misc options 32 | #UseSyslog 33 | #Color 34 | #NoProgressBar 35 | # We cannot check disk space from within a chroot environment 36 | #CheckSpace 37 | #VerbosePkgLists 38 | ParallelDownloads = 5 39 | 40 | # By default, pacman accepts packages signed by keys that its local keyring 41 | # trusts (see pacman-key and its man page), as well as unsigned packages. 42 | SigLevel = Required DatabaseOptional 43 | LocalFileSigLevel = Optional 44 | #RemoteFileSigLevel = Required 45 | 46 | # NOTE: You must run `pacman-key --init` before first using pacman; the local 47 | # keyring can then be populated with the keys of all official Arch Linux 48 | # packagers with `pacman-key --populate archlinux`. 49 | 50 | # 51 | # REPOSITORIES 52 | # - can be defined here or included from another file 53 | # - pacman will search repositories in the order defined here 54 | # - local/custom mirrors can be added here or in separate files 55 | # - repositories listed first will take precedence when packages 56 | # have identical names, regardless of version number 57 | # - URLs will have $repo replaced by the name of the current repo 58 | # - URLs will have $arch replaced by the name of the architecture 59 | # 60 | # Repository entries are of the format: 61 | # [repo-name] 62 | # Server = ServerName 63 | # Include = IncludePath 64 | # 65 | # The header [repo-name] is crucial - it must be present and 66 | # uncommented to enable the repo. 67 | # 68 | 69 | # The testing repositories are disabled by default. To enable, uncomment the 70 | # repo name header and Include lines. You can add preferred servers immediately 71 | # after the header, and they will be used before the default mirrors. 72 | 73 | #[core-testing] 74 | #Include = /etc/pacman.d/mirrorlist 75 | 76 | [core] 77 | Include = /etc/pacman.d/mirrorlist 78 | 79 | #[extra-testing] 80 | #Include = /etc/pacman.d/mirrorlist 81 | 82 | [extra] 83 | Include = /etc/pacman.d/mirrorlist 84 | 85 | # If you want to run 32 bit applications on your x86_64 system, 86 | # enable the multilib repositories as required here. 87 | 88 | #[multilib-testing] 89 | #Include = /etc/pacman.d/mirrorlist 90 | 91 | #[multilib] 92 | #Include = /etc/pacman.d/mirrorlist 93 | 94 | # An example of a custom package repository. See the pacman manpage for 95 | # tips on creating your own repositories. 96 | #[custom] 97 | #SigLevel = Optional TrustAll 98 | #Server = file:///home/custompkgs 99 | -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook: -------------------------------------------------------------------------------- 1 | # remove from airootfs! 2 | [Trigger] 3 | Operation = Install 4 | Operation = Upgrade 5 | Type = Package 6 | Target = pacman-mirrorlist 7 | 8 | [Action] 9 | Description = Uncommenting all mirrors in /etc/pacman.d/mirrorlist... 10 | When = PostTransaction 11 | Depends = pacman-mirrorlist 12 | Depends = sed 13 | Exec = /usr/bin/sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist 14 | -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook: -------------------------------------------------------------------------------- 1 | # remove from airootfs! 2 | # As a workaround for https://bugs.archlinux.org/task/49347 , remove pacman hooks specific to the ISO build process. 3 | # If not, they would be used when pacstrap is run in the live environment. 4 | 5 | [Trigger] 6 | Operation = Install 7 | Operation = Upgrade 8 | Operation = Remove 9 | Type = Package 10 | Target = * 11 | 12 | [Action] 13 | Description = Work around FS#49347 by removing custom pacman hooks that are only required during ISO build... 14 | When = PostTransaction 15 | Depends = sh 16 | Depends = coreutils 17 | Depends = grep 18 | Exec = /bin/sh -c "rm -- $(grep -Frl 'remove from airootfs' /etc/pacman.d/hooks/)" 19 | -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/mirrorlist: -------------------------------------------------------------------------------- 1 | ## 2 | ## Arch Linux repository mirrorlist 3 | ## Generated on 2021-08-22 4 | ## 5 | 6 | ## Worldwide 7 | Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch 8 | Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch 9 | Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch 10 | 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 | 25 | ## Austria 26 | Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch 27 | Server = http://mirror.easyname.at/archlinux/$repo/os/$arch 28 | Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch 29 | Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch 30 | 31 | ## Bangladesh 32 | Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch 33 | 34 | ## Belarus 35 | Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch 36 | Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch 37 | 38 | ## Belgium 39 | Server = http://archlinux.cu.be/$repo/os/$arch 40 | Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch 41 | Server = http://mirror.tiguinet.net/arch/$repo/os/$arch 42 | 43 | ## Bosnia and Herzegovina 44 | Server = http://archlinux.mirror.ba/$repo/os/$arch 45 | 46 | ## Brazil 47 | Server = http://br.mirror.archlinux-br.org/$repo/os/$arch 48 | Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch 49 | Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch 50 | Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch 51 | Server = http://linorg.usp.br/archlinux/$repo/os/$arch 52 | Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch 53 | Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch 54 | Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch 55 | 56 | ## Bulgaria 57 | Server = https://mirror.darklinux.uk/archlinux/$repo/os/$arch 58 | Server = http://mirror.host.ag/archlinux/$repo/os/$arch 59 | Server = http://mirrors.netix.net/archlinux/$repo/os/$arch 60 | Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch 61 | Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch 62 | Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch 63 | Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch 64 | 65 | ## Canada 66 | Server = https://mirror.0xem.ma/arch/$repo/os/$arch 67 | Server = http://mirror.cedille.club/archlinux/$repo/os/$arch 68 | Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch 69 | Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch 70 | Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch 71 | Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch 72 | Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch 73 | Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch 74 | Server = http://muug.ca/mirror/archlinux/$repo/os/$arch 75 | Server = https://muug.ca/mirror/archlinux/$repo/os/$arch 76 | Server = http://arch.powerfly.ca/$repo/os/$arch 77 | Server = https://arch.powerfly.ca/$repo/os/$arch 78 | Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch 79 | Server = http://mirror.scd31.com/arch/$repo/os/$arch 80 | Server = https://mirror.scd31.com/arch/$repo/os/$arch 81 | Server = http://mirror.sergal.org/archlinux/$repo/os/$arch 82 | Server = https://mirror.sergal.org/archlinux/$repo/os/$arch 83 | 84 | ## Chile 85 | Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch 86 | Server = http://mirror.archlinux.cl/$repo/os/$arch 87 | Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch 88 | Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch 89 | Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch 90 | Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch 91 | 92 | ## China 93 | Server = http://mirrors.163.com/archlinux/$repo/os/$arch 94 | Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch 95 | Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch 96 | Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch 97 | Server = https://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch 98 | Server = http://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch 99 | Server = https://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch 100 | Server = http://mirrors.hit.edu.cn/archlinux/$repo/os/$arch 101 | Server = https://mirrors.hit.edu.cn/archlinux/$repo/os/$arch 102 | Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch 103 | Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch 104 | Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch 105 | Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch 106 | Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch 107 | Server = http://mirror.redrock.team/archlinux/$repo/os/$arch 108 | Server = https://mirror.redrock.team/archlinux/$repo/os/$arch 109 | Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch 110 | Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch 111 | Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch 112 | Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch 113 | Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch 114 | Server = http://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch 115 | Server = https://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch 116 | Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch 117 | Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch 118 | 119 | ## Colombia 120 | Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch 121 | 122 | ## Croatia 123 | Server = http://archlinux.iskon.hr/$repo/os/$arch 124 | 125 | ## Czechia 126 | Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch 127 | Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch 128 | Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch 129 | Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch 130 | Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch 131 | Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch 132 | Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch 133 | Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch 134 | Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch 135 | Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch 136 | Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch 137 | 138 | ## Denmark 139 | Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch 140 | Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch 141 | Server = http://mirror.one.com/archlinux/$repo/os/$arch 142 | Server = https://mirror.one.com/archlinux/$repo/os/$arch 143 | 144 | ## Ecuador 145 | Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch 146 | Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch 147 | Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch 148 | 149 | ## Estonia 150 | Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch 151 | Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch 152 | Server = http://mirrors.xtom.ee/archlinux/$repo/os/$arch 153 | Server = https://mirrors.xtom.ee/archlinux/$repo/os/$arch 154 | 155 | ## Finland 156 | Server = https://arch.mcstrugs.org/$repo/os/$arch 157 | Server = http://mirror.arctic.lol/ArchMirror/$repo/os/$arch 158 | Server = http://arch.mirror.far.fi/$repo/os/$arch 159 | Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch 160 | Server = https://mirror.srv.fail/archlinux/$repo/os/$arch 161 | Server = http://mirror.wuki.li/archlinux/$repo/os/$arch 162 | Server = https://mirror.wuki.li/archlinux/$repo/os/$arch 163 | Server = http://arch.yhtez.xyz/$repo/os/$arch 164 | Server = https://arch.yhtez.xyz/$repo/os/$arch 165 | 166 | ## France 167 | Server = http://archlinux.de-labrusse.fr/$repo/os/$arch 168 | Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch 169 | Server = https://archlinux.vi-di.fr/$repo/os/$arch 170 | Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch 171 | Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch 172 | Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch 173 | Server = http://archlinux.datagr.am/$repo/os/$arch 174 | Server = https://mirrors.eric.ovh/arch/$repo/os/$arch 175 | Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch 176 | Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch 177 | Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch 178 | Server = http://archlinux.mailtunnel.eu/$repo/os/$arch 179 | Server = https://archlinux.mailtunnel.eu/$repo/os/$arch 180 | Server = http://mir.archlinux.fr/$repo/os/$arch 181 | Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch 182 | Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch 183 | Server = http://arch.nimukaito.net/$repo/os/$arch 184 | Server = https://arch.nimukaito.net/$repo/os/$arch 185 | Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch 186 | Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch 187 | Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch 188 | Server = http://archlinux.polymorf.fr/$repo/os/$arch 189 | Server = http://archlinux.rezopole.net/$repo/os/$arch 190 | Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch 191 | Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch 192 | Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch 193 | Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch 194 | Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch 195 | Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch 196 | Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch 197 | Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch 198 | Server = http://arch.yourlabs.org/$repo/os/$arch 199 | Server = https://arch.yourlabs.org/$repo/os/$arch 200 | 201 | ## Georgia 202 | Server = http://archlinux.grena.ge/$repo/os/$arch 203 | Server = https://archlinux.grena.ge/$repo/os/$arch 204 | 205 | ## Germany 206 | Server = http://mirror.23m.com/archlinux/$repo/os/$arch 207 | Server = https://mirror.23m.com/archlinux/$repo/os/$arch 208 | Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch 209 | Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch 210 | Server = https://appuals.com/archlinux/$repo/os/$arch 211 | Server = http://artfiles.org/archlinux.org/$repo/os/$arch 212 | Server = https://mirror.bethselamin.de/$repo/os/$arch 213 | Server = http://mirror.chaoticum.net/arch/$repo/os/$arch 214 | Server = https://mirror.chaoticum.net/arch/$repo/os/$arch 215 | Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch 216 | Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch 217 | Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch 218 | Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch 219 | Server = https://mirror.dogado.de/archlinux/$repo/os/$arch 220 | Server = http://mirror.f4st.host/archlinux/$repo/os/$arch 221 | Server = https://mirror.f4st.host/archlinux/$repo/os/$arch 222 | Server = http://ftp.fau.de/archlinux/$repo/os/$arch 223 | Server = https://ftp.fau.de/archlinux/$repo/os/$arch 224 | Server = https://pkg.fef.moe/archlinux/$repo/os/$arch 225 | Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch 226 | Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch 227 | Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch 228 | Server = https://mirror.gnomus.de/$repo/os/$arch 229 | Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch 230 | Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch 231 | Server = http://archlinux.honkgong.info/$repo/os/$arch 232 | Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch 233 | Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch 234 | Server = http://archlinux.mirror.iphh.net/$repo/os/$arch 235 | Server = http://arch.jensgutermuth.de/$repo/os/$arch 236 | Server = https://arch.jensgutermuth.de/$repo/os/$arch 237 | Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch 238 | Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch 239 | Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch 240 | Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch 241 | Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch 242 | Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch 243 | Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch 244 | Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch 245 | Server = https://mirror.pkgbuild.com/$repo/os/$arch 246 | Server = http://mirror.moson.org/arch/$repo/os/$arch 247 | Server = https://mirror.moson.org/arch/$repo/os/$arch 248 | Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch 249 | Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch 250 | Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch 251 | Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch 252 | Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch 253 | Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch 254 | Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch 255 | Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch 256 | Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch 257 | Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch 258 | Server = http://phinau.de/arch/$repo/os/$arch 259 | Server = https://phinau.de/arch/$repo/os/$arch 260 | Server = https://mirror.pseudoform.org/$repo/os/$arch 261 | Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch 262 | Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch 263 | Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch 264 | Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch 265 | Server = http://mirror.satis-faction.de/archlinux/$repo/os/$arch 266 | Server = https://mirror.satis-faction.de/archlinux/$repo/os/$arch 267 | Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch 268 | Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch 269 | Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch 270 | Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch 271 | Server = http://archlinux.thaller.ws/$repo/os/$arch 272 | Server = https://archlinux.thaller.ws/$repo/os/$arch 273 | Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch 274 | Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch 275 | Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch 276 | Server = http://mirror.undisclose.de/archlinux/$repo/os/$arch 277 | Server = https://mirror.undisclose.de/archlinux/$repo/os/$arch 278 | Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch 279 | Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch 280 | Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch 281 | Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch 282 | Server = https://arch.unixpeople.org/$repo/os/$arch 283 | Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch 284 | Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch 285 | Server = http://mirror.wtnet.de/arch/$repo/os/$arch 286 | Server = https://mirror.wtnet.de/arch/$repo/os/$arch 287 | Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch 288 | Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch 289 | Server = http://arch.mirror.zachlge.org/$repo/os/$arch 290 | Server = https://arch.mirror.zachlge.org/$repo/os/$arch 291 | 292 | ## Greece 293 | Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch 294 | Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch 295 | Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch 296 | Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch 297 | Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch 298 | 299 | ## Hong Kong 300 | Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch 301 | Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch 302 | Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch 303 | Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch 304 | Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch 305 | Server = https://arch-mirror.wtako.net/$repo/os/$arch 306 | Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch 307 | Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch 308 | 309 | ## Hungary 310 | Server = http://ftp.ek-cer.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch 311 | Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch 312 | Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 313 | Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 314 | Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 315 | Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 316 | Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 317 | Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch 318 | 319 | ## Iceland 320 | Server = http://mirror.system.is/arch/$repo/os/$arch 321 | Server = https://mirror.system.is/arch/$repo/os/$arch 322 | 323 | ## India 324 | Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch 325 | Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch 326 | Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch 327 | 328 | ## Indonesia 329 | Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch 330 | Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch 331 | Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch 332 | Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch 333 | Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch 334 | Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch 335 | Server = http://mirror.labkom.id/archlinux/$repo/os/$arch 336 | Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch 337 | Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch 338 | Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch 339 | Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch 340 | Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch 341 | Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch 342 | 343 | ## Iran 344 | Server = http://mirror.hostiran.ir/archlinux/$repo/os/$arch 345 | Server = https://mirror.hostiran.ir/archlinux/$repo/os/$arch 346 | Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch 347 | Server = http://mirror.nak-mci.ir/arch/$repo/os/$arch 348 | Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch 349 | Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch 350 | 351 | ## Ireland 352 | Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch 353 | Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch 354 | 355 | ## Israel 356 | Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch 357 | Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch 358 | Server = https://archlinux.mivzakim.net/$repo/os/$arch 359 | 360 | ## Italy 361 | Server = https://archmirror.it/repos/$repo/os/$arch 362 | Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch 363 | Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch 364 | Server = http://archlinux.mirror.server24.net/$repo/os/$arch 365 | Server = https://archlinux.mirror.server24.net/$repo/os/$arch 366 | 367 | ## Japan 368 | Server = http://mirrors.cat.net/archlinux/$repo/os/$arch 369 | Server = https://mirrors.cat.net/archlinux/$repo/os/$arch 370 | Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch 371 | Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch 372 | Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch 373 | 374 | ## Kazakhstan 375 | Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch 376 | Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch 377 | Server = http://mirror.ps.kz/archlinux/$repo/os/$arch 378 | Server = https://mirror.ps.kz/archlinux/$repo/os/$arch 379 | 380 | ## Kenya 381 | Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch 382 | Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch 383 | 384 | ## Latvia 385 | Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch 386 | Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch 387 | 388 | ## Lithuania 389 | Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch 390 | Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch 391 | Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch 392 | Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch 393 | 394 | ## Luxembourg 395 | Server = http://archlinux.mirror.root.lu/$repo/os/$arch 396 | 397 | ## Mexico 398 | Server = https://arch.mirror.jsc.mx/$repo/os/$arch 399 | 400 | ## Moldova 401 | Server = http://mirror.ihost.md/archlinux/$repo/os/$arch 402 | Server = https://mirror.ihost.md/archlinux/$repo/os/$arch 403 | 404 | ## Monaco 405 | Server = http://archlinux.qontinuum.space/$repo/os/$arch 406 | Server = https://archlinux.qontinuum.space:4443/$repo/os/$arch 407 | 408 | ## Netherlands 409 | Server = https://archlinux.beccacervello.it/archlinux/$repo/os/$arch 410 | Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch 411 | Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch 412 | Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch 413 | Server = http://mirror.erickochen.nl/archlinux/$repo/os/$arch 414 | Server = https://mirror.erickochen.nl/archlinux/$repo/os/$arch 415 | Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch 416 | Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch 417 | Server = https://arch.jeweet.net/$repo/os/$arch 418 | Server = http://mirror.koddos.net/archlinux/$repo/os/$arch 419 | Server = https://mirror.koddos.net/archlinux/$repo/os/$arch 420 | Server = http://arch.mirrors.lavatech.top/$repo/os/$arch 421 | Server = https://arch.mirrors.lavatech.top/$repo/os/$arch 422 | Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch 423 | Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch 424 | Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch 425 | Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch 426 | Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch 427 | Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch 428 | Server = http://mirror.mijn.host/archlinux/$repo/os/$arch 429 | Server = https://mirror.mijn.host/archlinux/$repo/os/$arch 430 | Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch 431 | Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch 432 | Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch 433 | Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch 434 | Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch 435 | Server = http://mirror.serverion.com/archlinux/$repo/os/$arch 436 | Server = https://mirror.serverion.com/archlinux/$repo/os/$arch 437 | Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch 438 | Server = http://mirror.tarellia.net/distr/archlinux/$repo/os/$arch 439 | Server = https://mirror.tarellia.net/distr/archlinux/$repo/os/$arch 440 | Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch 441 | Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch 442 | Server = http://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch 443 | Server = https://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch 444 | Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch 445 | Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch 446 | 447 | ## New Caledonia 448 | Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch 449 | Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch 450 | Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch 451 | 452 | ## New Zealand 453 | Server = http://mirror.2degrees.nz/archlinux/$repo/os/$arch 454 | Server = https://mirror.2degrees.nz/archlinux/$repo/os/$arch 455 | Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch 456 | Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch 457 | Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch 458 | Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch 459 | 460 | ## North Macedonia 461 | Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch 462 | Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch 463 | Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch 464 | Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch 465 | 466 | ## Norway 467 | Server = http://mirror.archlinux.no/$repo/os/$arch 468 | Server = https://mirror.archlinux.no/$repo/os/$arch 469 | Server = http://archlinux.uib.no/$repo/os/$arch 470 | Server = http://mirror.neuf.no/archlinux/$repo/os/$arch 471 | Server = https://mirror.neuf.no/archlinux/$repo/os/$arch 472 | Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch 473 | 474 | ## Pakistan 475 | Server = http://repo.inara.pk/archlinux/$repo/os/$arch 476 | Server = https://repo.inara.pk/archlinux/$repo/os/$arch 477 | 478 | ## Paraguay 479 | Server = http://archlinux.mirror.py/archlinux/$repo/os/$arch 480 | 481 | ## Poland 482 | Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch 483 | Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch 484 | Server = http://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch 485 | Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch 486 | Server = http://arch.midov.pl/arch/$repo/os/$arch 487 | Server = https://arch.midov.pl/arch/$repo/os/$arch 488 | Server = http://arch.nixlab.pl/$repo/os/$arch 489 | Server = https://arch.nixlab.pl/$repo/os/$arch 490 | Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch 491 | Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch 492 | Server = http://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch 493 | Server = https://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch 494 | Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch 495 | Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch 496 | Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch 497 | 498 | ## Portugal 499 | Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch 500 | Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch 501 | Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch 502 | Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch 503 | 504 | ## Romania 505 | Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch 506 | Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch 507 | Server = http://mirror.efect.ro/archlinux/$repo/os/$arch 508 | Server = https://mirror.efect.ro/archlinux/$repo/os/$arch 509 | Server = http://mirrors.go.ro/archlinux/$repo/os/$arch 510 | Server = https://mirrors.go.ro/archlinux/$repo/os/$arch 511 | Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch 512 | Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch 513 | Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch 514 | Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch 515 | Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch 516 | Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch 517 | Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch 518 | Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch 519 | Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch 520 | 521 | ## Russia 522 | Server = http://mirror.surf/archlinux/$repo/os/$arch 523 | Server = https://mirror.surf/archlinux/$repo/os/$arch 524 | Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch 525 | Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch 526 | Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch 527 | Server = http://mirror.rol.ru/archlinux/$repo/os/$arch 528 | Server = https://mirror.rol.ru/archlinux/$repo/os/$arch 529 | Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch 530 | Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch 531 | Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch 532 | Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch 533 | Server = http://archlinux.zepto.cloud/$repo/os/$arch 534 | 535 | ## Réunion 536 | Server = http://arch.mithril.re/$repo/os/$arch 537 | 538 | ## Serbia 539 | Server = http://arch.petarmaric.com/$repo/os/$arch 540 | Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch 541 | 542 | ## Singapore 543 | Server = http://mirror.0x.sg/archlinux/$repo/os/$arch 544 | Server = https://mirror.0x.sg/archlinux/$repo/os/$arch 545 | Server = http://mirror.aktkn.sg/archlinux/$repo/os/$arch 546 | Server = https://mirror.aktkn.sg/archlinux/$repo/os/$arch 547 | Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch 548 | Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch 549 | Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch 550 | Server = http://mirror.jingk.ai/archlinux/$repo/os/$arch 551 | Server = https://mirror.jingk.ai/archlinux/$repo/os/$arch 552 | Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch 553 | 554 | ## Slovakia 555 | Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch 556 | Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch 557 | Server = http://tux.rainside.sk/archlinux/$repo/os/$arch 558 | 559 | ## Slovenia 560 | Server = http://archimonde.ts.si/archlinux/$repo/os/$arch 561 | Server = https://archimonde.ts.si/archlinux/$repo/os/$arch 562 | 563 | ## South Africa 564 | Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch 565 | Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch 566 | Server = http://za.mirror.archlinux-br.org/$repo/os/$arch 567 | Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch 568 | Server = http://arch.opnmirror.co.za/$repo/os/$arch 569 | Server = https://arch.opnmirror.co.za/$repo/os/$arch 570 | Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch 571 | Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch 572 | 573 | ## South Korea 574 | Server = http://mirror.anigil.com/archlinux/$repo/os/$arch 575 | Server = https://mirror.anigil.com/archlinux/$repo/os/$arch 576 | Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch 577 | Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch 578 | Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch 579 | Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch 580 | Server = http://mirror.premi.st/archlinux/$repo/os/$arch 581 | Server = https://mirror.premi.st/archlinux/$repo/os/$arch 582 | 583 | ## Spain 584 | Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch 585 | Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch 586 | Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch 587 | Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch 588 | Server = http://sharing.thelinuxsect.com/archlinux/$repo/os/$arch 589 | 590 | ## Sweden 591 | Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch 592 | Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch 593 | Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch 594 | Server = https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch 595 | Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch 596 | Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch 597 | Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch 598 | Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch 599 | Server = http://tedwall.se/archlinux/$repo/os/$arch 600 | Server = https://tedwall.se/archlinux/$repo/os/$arch 601 | 602 | ## Switzerland 603 | Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch 604 | Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch 605 | Server = http://mirror.init7.net/archlinux/$repo/os/$arch 606 | Server = https://mirror.init7.net/archlinux/$repo/os/$arch 607 | Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch 608 | Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch 609 | Server = https://theswissbay.ch/archlinux/$repo/os/$arch 610 | Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch 611 | 612 | ## Taiwan 613 | Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch 614 | Server = http://free.nchc.org.tw/arch/$repo/os/$arch 615 | Server = https://free.nchc.org.tw/arch/$repo/os/$arch 616 | Server = http://archlinux.cs.nctu.edu.tw/$repo/os/$arch 617 | Server = http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch 618 | Server = https://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch 619 | Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch 620 | Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch 621 | Server = https://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch 622 | 623 | ## Thailand 624 | Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch 625 | Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch 626 | Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch 627 | Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch 628 | 629 | ## Turkey 630 | Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch 631 | Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch 632 | 633 | ## Ukraine 634 | Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch 635 | Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch 636 | Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch 637 | Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch 638 | Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch 639 | Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch 640 | 641 | ## United Kingdom 642 | Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch 643 | Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch 644 | Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch 645 | Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch 646 | Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch 647 | Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch 648 | Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch 649 | Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch 650 | Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch 651 | Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch 652 | Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch 653 | Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch 654 | Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch 655 | Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch 656 | Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch 657 | Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch 658 | Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch 659 | Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch 660 | 661 | ## United States 662 | Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch 663 | Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch 664 | Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch 665 | Server = https://america.mirror.pkgbuild.com/$repo/os/$arch 666 | Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch 667 | Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch 668 | Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch 669 | Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch 670 | Server = http://arlm.tyzoid.com/$repo/os/$arch 671 | Server = https://arlm.tyzoid.com/$repo/os/$arch 672 | Server = https://mirror.ava.dev/archlinux/$repo/os/$arch 673 | Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch 674 | Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch 675 | Server = http://arch.mirror.constant.com/$repo/os/$arch 676 | Server = https://arch.mirror.constant.com/$repo/os/$arch 677 | Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch 678 | Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch 679 | Server = http://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch 680 | Server = https://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch 681 | Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch 682 | Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch 683 | Server = http://mirror.ette.biz/archlinux/$repo/os/$arch 684 | Server = https://mirror.ette.biz/archlinux/$repo/os/$arch 685 | Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch 686 | Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch 687 | Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch 688 | Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch 689 | Server = https://mirror.hodgepodge.dev/archlinux/$repo/os/$arch 690 | Server = http://mirror.hostup.org/archlinux/$repo/os/$arch 691 | Server = https://mirror.hostup.org/archlinux/$repo/os/$arch 692 | Server = http://arch.hu.fo/archlinux/$repo/os/$arch 693 | Server = https://arch.hu.fo/archlinux/$repo/os/$arch 694 | Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch 695 | Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch 696 | Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch 697 | Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch 698 | Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch 699 | Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch 700 | Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch 701 | Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch 702 | Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch 703 | Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch 704 | Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch 705 | Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch 706 | Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch 707 | Server = http://mirror.lty.me/archlinux/$repo/os/$arch 708 | Server = https://mirror.lty.me/archlinux/$repo/os/$arch 709 | Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch 710 | Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch 711 | Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch 712 | Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch 713 | Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch 714 | Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch 715 | Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch 716 | Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch 717 | Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch 718 | Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch 719 | Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch 720 | Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch 721 | Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch 722 | Server = http://archmirror1.octyl.net/$repo/os/$arch 723 | Server = https://archmirror1.octyl.net/$repo/os/$arch 724 | Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch 725 | Server = http://arch.mirrors.pair.com/$repo/os/$arch 726 | Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch 727 | Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch 728 | Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch 729 | Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch 730 | Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch 731 | Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch 732 | Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch 733 | Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch 734 | Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch 735 | Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch 736 | Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch 737 | Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch 738 | Server = http://mirror.siena.edu/archlinux/$repo/os/$arch 739 | Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch 740 | Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch 741 | Server = http://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch 742 | Server = https://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch 743 | Server = http://arch.mirror.square-r00t.net/$repo/os/$arch 744 | Server = https://arch.mirror.square-r00t.net/$repo/os/$arch 745 | Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch 746 | Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch 747 | Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch 748 | Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch 749 | Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch 750 | Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch 751 | Server = http://mirror.umd.edu/archlinux/$repo/os/$arch 752 | Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch 753 | Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch 754 | Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch 755 | Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch 756 | Server = https://zxcvfdsa.com/arch/$repo/os/$arch 757 | 758 | ## Vietnam 759 | Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch 760 | Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch 761 | 762 | -------------------------------------------------------------------------------- /airootfs/etc/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0:root:/root:/usr/bin/zsh 2 | liveuser:x:1000:1000::/home/liveuser:/bin/bash 3 | -------------------------------------------------------------------------------- /airootfs/etc/sddm.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | # Halt command 3 | HaltCommand=/usr/bin/systemctl poweroff 4 | 5 | # Input method module 6 | InputMethod= 7 | 8 | # Comma-separated list of Linux namespaces for user session to enter 9 | Namespaces= 10 | 11 | # Initial NumLock state. Can be on, off or none. 12 | # If property is set to none, numlock won't be changed 13 | # NOTE: Currently ignored if autologin is enabled. 14 | Numlock=none 15 | 16 | # Reboot command 17 | RebootCommand=/usr/bin/systemctl reboot 18 | 19 | 20 | [Theme] 21 | # Current theme name 22 | Current=breeze 23 | 24 | # Cursor theme used in the greeter 25 | CursorTheme=Bibata-Modern-Ice 26 | 27 | # Number of users to use as threshold 28 | # above which avatars are disabled 29 | # unless explicitly enabled with EnableAvatars 30 | DisableAvatarsThreshold=7 31 | 32 | # Enable display of custom user avatars 33 | EnableAvatars=true 34 | 35 | # Global directory for user avatars 36 | # The files should be named .face.icon 37 | FacesDir=/usr/share/sddm/faces 38 | 39 | # Font used in the greeter 40 | Font= 41 | 42 | # Theme directory path 43 | ThemeDir=/usr/share/sddm/themes 44 | 45 | 46 | [Users] 47 | # Default $PATH for logged in users 48 | DefaultPath=/usr/local/sbin:/usr/local/bin:/usr/bin 49 | 50 | # Comma-separated list of shells. 51 | # Users with these shells as their default won't be listed 52 | HideShells= 53 | 54 | # Comma-separated list of users that should not be listed 55 | HideUsers= 56 | 57 | # Maximum user id for displayed users 58 | MaximumUid=60000 59 | 60 | # Minimum user id for displayed users 61 | MinimumUid=1000 62 | 63 | # Remember the session of the last successfully logged in user 64 | RememberLastSession=true 65 | 66 | # Remember the last successfully logged in user 67 | RememberLastUser=true 68 | 69 | # When logging in as the same user twice, restore the original session, rather than create a new one 70 | ReuseSession=true 71 | 72 | 73 | [Wayland] 74 | EnableHiDPI=true 75 | SessionCommand=/usr/share/sddm/scripts/wayland-session 76 | SessionDir=/usr/share/wayland-sessions 77 | SessionLogFile=.local/share/sddm/wayland-session.log 78 | # Enable=false 79 | 80 | [X11] 81 | DisplayCommand=/usr/share/sddm/scripts/Xsetup 82 | DisplayStopCommand=/usr/share/sddm/scripts/Xstop 83 | EnableHiDPI=true 84 | MinimumVT=1 85 | ServerArguments=-nolisten tcp 86 | ServerPath=/usr/bin/X 87 | SessionCommand=/usr/share/sddm/scripts/Xsession 88 | SessionDir=/usr/share/xsessions 89 | SessionLogFile=.local/share/sddm/xorg-session.log 90 | UserAuthFile=.Xauthority 91 | XauthPath=/usr/bin/xauth 92 | XephyrPath=/usr/bin/Xephyr 93 | -------------------------------------------------------------------------------- /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/skel/.bashrc: -------------------------------------------------------------------------------- 1 | # 2 | # ~/.bashrc 3 | # 4 | 5 | # If not running interactively, don't do anything 6 | [[ $- != *i* ]] && return 7 | 8 | alias ls='ls --color=auto' 9 | PS1='[\u@\h \W]\$ ' 10 | 11 | #Display ISO version and distribution information in short 12 | alias version="sed -n 1p /etc/os-release && sed -n 12p /etc/os-release && sed -n 13p /etc/os-release" 13 | 14 | #Pacman Shortcuts 15 | alias sync="sudo pacman -Syyy" 16 | alias install="sudo pacman -S" 17 | alias update="sudo pacman -Syyu" 18 | alias search="sudo pacman -Ss" 19 | alias search-local="sudo pacman -Qs" 20 | alias pkg-info="sudo pacman -Qi" 21 | alias local-install="sudo pacman -U" 22 | alias clr-cache="sudo pacman -Scc" 23 | alias unlock="sudo rm /var/lib/pacman/db.lck" 24 | alias remove="sudo pacman -R" 25 | alias autoremove="sudo pacman -Rns" 26 | -------------------------------------------------------------------------------- /airootfs/etc/skel/.config/autostart/welcome.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | Name=Welcome 5 | GenericName=Welcome 6 | Keywords=utility;system;welcome; 7 | Encoding=UTF-8 8 | Terminal=false 9 | Exec=welcome 10 | Icon=/usr/share/pixmaps/welcome.png 11 | Comment=ALG - Welcome App 12 | Categories=System;Go; 13 | StartupNotify=true 14 | -------------------------------------------------------------------------------- /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.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.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/resolved.conf.d/archiso.conf: -------------------------------------------------------------------------------- 1 | # Default systemd-resolved configuration for archiso 2 | 3 | [Resolve] 4 | MulticastDNS=yes 5 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/bluetooth.target.wants/bluetooth.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.service -------------------------------------------------------------------------------- /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.bluez.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.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/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.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 | [Unit] 2 | Description=Temporary /etc/pacman.d/gnupg directory 3 | 4 | [Mount] 5 | What=tmpfs 6 | Where=/etc/pacman.d/gnupg 7 | Type=tmpfs 8 | Options=mode=0755,noswap 9 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | ExecStart= 3 | ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin root - $TERM 4 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Unmute All Sound Card Controls For Use With The Live Arch Environment 3 | # This needs to run after the audio device becomes available. 4 | Wants=systemd-udev-settle.service 5 | After=systemd-udev-settle.service sound.target 6 | ConditionKernelCommandLine=accessibility=on 7 | 8 | [Service] 9 | Type=oneshot 10 | ExecStart=/usr/local/bin/livecd-sound -u 11 | 12 | [Install] 13 | WantedBy=sound.target 14 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-talk.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Screen reader service 3 | After=livecd-alsa-unmuter.service 4 | Before=getty@tty1.service 5 | ConditionKernelCommandLine=accessibility=on 6 | 7 | [Service] 8 | Type=oneshot 9 | TTYPath=/dev/tty13 10 | ExecStartPre=/usr/bin/chvt 13 11 | ExecStart=/usr/local/bin/livecd-sound -p 12 | ExecStartPost=/usr/bin/chvt 1 13 | ExecStartPost=systemctl start espeakup.service 14 | StandardInput=tty 15 | TTYVHangup=yes 16 | TTYVTDisallocate=yes 17 | RemainAfterExit=true 18 | 19 | [Install] 20 | WantedBy=multi-user.target 21 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /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/cups.path: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.path -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | ../etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_fcopy_daemon.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_kvp_daemon.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_vss_daemon.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/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmware-vmblock-fuse.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 | [Unit] 2 | Description=Initializes Pacman keyring 3 | Requires=etc-pacman.d-gnupg.mount 4 | After=etc-pacman.d-gnupg.mount time-sync.target 5 | BindsTo=etc-pacman.d-gnupg.mount 6 | Before=archlinux-keyring-wkd-sync.service 7 | 8 | [Service] 9 | Type=oneshot 10 | RemainAfterExit=yes 11 | ExecStart=/usr/bin/pacman-key --init 12 | ExecStart=/usr/bin/pacman-key --populate 13 | 14 | [Install] 15 | WantedBy=multi-user.target 16 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/printer.target.wants/cups.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.service -------------------------------------------------------------------------------- /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/cups.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.socket -------------------------------------------------------------------------------- /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/sysinit.target.wants/systemd-time-wait-sync.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-time-wait-sync.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.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/systemd/system/vboxservice.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=VirtualBox Guest Additions service 3 | After=network.target 4 | 5 | [Service] 6 | ExecStart=/usr/bin/VBoxService --foreground 7 | ExecStop=/usr/bin/VBoxService --pidfile /var/run/vboxadd-service.pid --no-start 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | 12 | -------------------------------------------------------------------------------- /airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- 1 | # Reflector configuration file for the systemd service. 2 | 3 | --save /etc/pacman.d/mirrorlist 4 | --ipv4 5 | --ipv6 6 | --protocol https 7 | --latest 20 8 | --sort rate 9 | -------------------------------------------------------------------------------- /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/root/customize_airootfs.sh: -------------------------------------------------------------------------------- 1 | #rm -rf /usr/lib/modules-load.d/nvidia-utils.conf 2 | rm -rf usr/lib/modprobe.d/nvidia-utils.conf 3 | -------------------------------------------------------------------------------- /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 -vf /root/{.automated_script.sh,.zlogin} 12 | 13 | sed -i 's/GRUB_DISTRIBUTOR=.*/GRUB_DISTRIBUTOR="Arch"/' /etc/default/grub 14 | 15 | rm /usr/local/bin/{alg-finalisation,livecd-sound,Installation_guide} 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 /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 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 "blacklist nouveau" > /usr/lib/modprobe.d/nvidia-utils.conf 47 | echo "#################################" 48 | echo "We keep nvidia onboard" 49 | echo "#################################" 50 | fi 51 | 52 | 53 | echo "#################################" 54 | echo "End alg-remove-nvidia" 55 | echo "#################################" 56 | rm /usr/local/bin/alg-remove-nvidia 57 | 58 | -------------------------------------------------------------------------------- /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 | 3 | import org.kde.plasma.core as PlasmaCore 4 | import org.kde.plasma.components as PlasmaComponents 5 | 6 | import org.kde.kirigami 2.20 as Kirigami 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: keyboard.layouts.length > 1 18 | 19 | Component.onCompleted: currentIndex = Qt.binding(function() {return keyboard.currentLayout}); 20 | 21 | checkable: true 22 | checked: keyboardMenu.opened 23 | onToggled: { 24 | if (checked) { 25 | keyboardMenu.popup(keyboardButton, 0, 0) 26 | } else { 27 | keyboardMenu.dismiss() 28 | } 29 | } 30 | 31 | PlasmaComponents.Menu { 32 | id: keyboardMenu 33 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 34 | Kirigami.Theme.inherit: false 35 | 36 | Instantiator { 37 | id: instantiator 38 | model: keyboard.layouts 39 | onObjectAdded: (index, object) => keyboardMenu.insertItem(index, object) 40 | onObjectRemoved: (index, object) => keyboardMenu.removeItem(object) 41 | delegate: PlasmaComponents.MenuItem { 42 | text: modelData.longName 43 | property string shortName: modelData.shortName 44 | onTriggered: { 45 | keyboard.currentLayout = model.index 46 | } 47 | } 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/Login.qml: -------------------------------------------------------------------------------- 1 | import "components" 2 | 3 | import QtQuick 4 | import QtQuick.Layouts 5 | 6 | import org.kde.plasma.core as PlasmaCore 7 | import org.kde.plasma.components as PlasmaComponents 8 | import org.kde.kirigami as Kirigami 9 | 10 | SessionManagementScreen { 11 | id: root 12 | property Item mainPasswordBox: passwordBox 13 | 14 | property bool showUsernamePrompt: !showUserList 15 | 16 | property string lastUserName 17 | property bool loginScreenUiVisible: false 18 | 19 | //the y position that should be ensured visible when the on screen keyboard is visible 20 | property int visibleBoundary: mapFromItem(loginButton, 0, 0).y 21 | onHeightChanged: visibleBoundary = mapFromItem(loginButton, 0, 0).y + loginButton.height + Kirigami.Units.smallSpacing 22 | 23 | property int fontSize: config.fontSize 24 | 25 | signal loginRequest(string username, string password) 26 | 27 | onShowUsernamePromptChanged: { 28 | if (!showUsernamePrompt) { 29 | lastUserName = "" 30 | } 31 | } 32 | 33 | /* 34 | * Login has been requested with the following username and password 35 | * If username field is visible, it will be taken from that, otherwise from the "name" property of the currentIndex 36 | */ 37 | function startLogin() { 38 | var username = showUsernamePrompt ? userNameInput.text : userList.selectedUser 39 | var password = passwordBox.text 40 | 41 | footer.enabled = false 42 | mainStack.enabled = false 43 | userListComponent.userList.opacity = 0.5 44 | 45 | //this is partly because it looks nicer 46 | //but more importantly it works round a Qt bug that can trigger if the app is closed with a TextField focused 47 | //DAVE REPORT THE FRICKING THING AND PUT A LINK 48 | loginButton.forceActiveFocus(); 49 | loginRequest(username, password); 50 | } 51 | 52 | PlasmaComponents.TextField { 53 | id: userNameInput 54 | font.pointSize: fontSize + 1 55 | Layout.fillWidth: true 56 | 57 | text: lastUserName 58 | visible: showUsernamePrompt 59 | focus: showUsernamePrompt && !lastUserName //if there's a username prompt it gets focus first, otherwise password does 60 | placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Username") 61 | 62 | onAccepted: 63 | if (root.loginScreenUiVisible) { 64 | passwordBox.forceActiveFocus() 65 | } 66 | } 67 | 68 | RowLayout { 69 | Layout.fillWidth: true 70 | 71 | PlasmaComponents.TextField { 72 | id: passwordBox 73 | font.pointSize: fontSize + 1 74 | Layout.fillWidth: true 75 | 76 | placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password") 77 | focus: !showUsernamePrompt || lastUserName 78 | echoMode: TextInput.Password 79 | //revealPasswordButtonShown: false // Disabled whilst SDDM does not have the breeze icon set loaded 80 | 81 | onAccepted: { 82 | if (root.loginScreenUiVisible) { 83 | startLogin(); 84 | } 85 | } 86 | 87 | Keys.onEscapePressed: { 88 | mainStack.currentItem.forceActiveFocus(); 89 | } 90 | 91 | //if empty and left or right is pressed change selection in user switch 92 | //this cannot be in keys.onLeftPressed as then it doesn't reach the password box 93 | Keys.onPressed: event => { 94 | if (event.key === Qt.Key_Left && !text) { 95 | userList.decrementCurrentIndex(); 96 | event.accepted = true 97 | } 98 | if (event.key === Qt.Key_Right && !text) { 99 | userList.incrementCurrentIndex(); 100 | event.accepted = true 101 | } 102 | } 103 | 104 | Connections { 105 | target: sddm 106 | function onLoginFailed() { 107 | passwordBox.selectAll() 108 | passwordBox.forceActiveFocus() 109 | } 110 | } 111 | } 112 | 113 | PlasmaComponents.Button { 114 | id: loginButton 115 | Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Log In") 116 | implicitHeight: passwordBox.height - Kirigami.Units.smallSpacing * 0.5 // otherwise it comes out taller than the password field 117 | implicitWidth: loginButton.implicitHeight 118 | Layout.rightMargin: 1 // prevents it from extending beyond the username field 119 | 120 | Kirigami.Icon { // no iconSource because if you take away half a unit (implicitHeight), "go-next" gets cut off 121 | anchors.fill: parent 122 | anchors.margins: Kirigami.Units.smallSpacing 123 | source: "go-next" 124 | } 125 | onClicked: startLogin(); 126 | } 127 | } 128 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/Main.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 David Edmundson 3 | * Copyright 2024 DemonKiller 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 22 | 23 | import QtQuick.Layouts 24 | import QtQuick.Controls 25 | import Qt5Compat.GraphicalEffects 26 | 27 | import org.kde.plasma.core as PlasmaCore 28 | import org.kde.plasma.components as PlasmaComponents 29 | import org.kde.plasma.extras as PlasmaExtras 30 | import org.kde.plasma.plasma5support as Plasma5Support 31 | import org.kde.kirigami as Kirigami 32 | 33 | import org.kde.breeze.components 34 | 35 | import "components" 36 | 37 | Item { 38 | id: root 39 | 40 | // If we're using software rendering, draw outlines instead of shadows 41 | // See https://bugs.kde.org/show_bug.cgi?id=398317 42 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software 43 | 44 | Kirigami.Theme.colorGroup: PlasmaCore.Theme.ComplementaryColorGroup 45 | readonly property bool lightBackground: Math.max(Kirigami.Theme.backgroundColor.r, Kirigami.Theme.backgroundColor.g, Kirigami.Theme.backgroundColor.b) > 0.5 46 | 47 | width: 1600 48 | height: 900 49 | 50 | property string notificationMessage 51 | 52 | LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft 53 | LayoutMirroring.childrenInherit: true 54 | 55 | Plasma5Support.DataSource { 56 | id: keystateSource 57 | engine: "keystate" 58 | connectedSources: "Caps Lock" 59 | } 60 | 61 | Item { 62 | id: wallpaper 63 | anchors.fill: parent 64 | Repeater { 65 | model: screenModel 66 | 67 | Background { 68 | x: geometry.x; y: geometry.y; width: geometry.width; height: geometry.height 69 | sceneBackgroundType: config.type 70 | sceneBackgroundColor: config.color 71 | sceneBackgroundImage: config.background 72 | } 73 | } 74 | } 75 | 76 | MouseArea { 77 | id: loginScreenRoot 78 | anchors.fill: parent 79 | 80 | property bool uiVisible: true 81 | property bool blockUI: mainStack.depth > 1 || userListComponent.mainPasswordBox.text.length > 0 || inputPanel.keyboardActive || config.type !== "image" 82 | 83 | hoverEnabled: true 84 | drag.filterChildren: true 85 | onPressed: uiVisible = true; 86 | onPositionChanged: uiVisible = true; 87 | onUiVisibleChanged: { 88 | if (blockUI) { 89 | fadeoutTimer.running = false; 90 | } else if (uiVisible) { 91 | fadeoutTimer.restart(); 92 | } 93 | } 94 | onBlockUIChanged: { 95 | if (blockUI) { 96 | fadeoutTimer.running = false; 97 | uiVisible = true; 98 | } else { 99 | fadeoutTimer.restart(); 100 | } 101 | } 102 | 103 | Keys.onPressed: event => { 104 | uiVisible = true; 105 | event.accepted = false; 106 | } 107 | 108 | //takes one full minute for the ui to disappear 109 | Timer { 110 | id: fadeoutTimer 111 | running: true 112 | interval: 60000 113 | onTriggered: { 114 | if (!loginScreenRoot.blockUI) { 115 | loginScreenRoot.uiVisible = false; 116 | } 117 | } 118 | } 119 | WallpaperFader { 120 | visible: config.type === "image" 121 | anchors.fill: parent 122 | state: loginScreenRoot.uiVisible ? "on" : "off" 123 | source: wallpaper 124 | mainStack: mainStack 125 | footer: footer 126 | clock: clock 127 | } 128 | 129 | DropShadow { 130 | id: clockShadow 131 | anchors.fill: clock 132 | source: clock 133 | visible: !softwareRendering 134 | horizontalOffset: 1 135 | verticalOffset: 1 136 | radius: 6 137 | samples: 14 138 | spread: 0.3 139 | color: root.lightBackground ? Kirigami.Theme.backgroundColor : "black" // black matches Breeze window decoration and desktopcontainment 140 | Behavior on opacity { 141 | OpacityAnimator { 142 | duration: 1000 143 | easing.type: Easing.InOutQuad 144 | } 145 | } 146 | } 147 | 148 | Clock { 149 | id: clock 150 | visible: y > 0 151 | property Item shadow: clockShadow 152 | y: (userListComponent.userList.y + mainStack.y)/2 - height/2 153 | anchors.horizontalCenter: parent.horizontalCenter 154 | } 155 | 156 | StackView { 157 | id: mainStack 158 | anchors { 159 | left: parent.left 160 | right: parent.right 161 | } 162 | height: root.height + Kirigami.Units.gridUnit * 3 163 | 164 | focus: true //StackView is an implicit focus scope, so we need to give this focus so the item inside will have it 165 | 166 | Timer { 167 | //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 168 | //it is fixed in 6d5b36b28907b16280ff78995fef764bb0c573db which will be 0.14 169 | //we need to call "window->activate()" *After* it's been shown. We can't control that in QML so we use a shoddy timer 170 | //it's been this way for all Plasma 5.x without a huge problem 171 | running: true 172 | repeat: false 173 | interval: 200 174 | onTriggered: mainStack.forceActiveFocus() 175 | } 176 | 177 | initialItem: Login { 178 | id: userListComponent 179 | userListModel: userModel 180 | loginScreenUiVisible: loginScreenRoot.uiVisible 181 | userListCurrentIndex: userModel.lastIndex >= 0 ? userModel.lastIndex : 0 182 | lastUserName: userModel.lastUser 183 | showUserList: { 184 | if ( !userListModel.hasOwnProperty("count") 185 | || !userListModel.hasOwnProperty("disableAvatarsThreshold")) 186 | return (userList.y + mainStack.y) > 0 187 | 188 | if ( userListModel.count === 0 ) return false 189 | 190 | if ( userListModel.hasOwnProperty("containsAllUsers") && !userListModel.containsAllUsers ) return false 191 | 192 | return userListModel.count <= userListModel.disableAvatarsThreshold && (userList.y + mainStack.y) > 0 193 | } 194 | 195 | notificationMessage: { 196 | var text = "" 197 | if (keystateSource.data["Caps Lock"]["Locked"]) { 198 | text += i18nd("plasma_lookandfeel_org.kde.lookandfeel","Caps Lock is on") 199 | if (root.notificationMessage) { 200 | text += " • " 201 | } 202 | } 203 | text += root.notificationMessage 204 | return text 205 | } 206 | 207 | actionItems: [ 208 | ActionButton { 209 | iconSource: "/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz" 210 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel","Suspend to RAM","Sleep") 211 | onClicked: sddm.suspend() 212 | enabled: sddm.canSuspend 213 | visible: !inputPanel.keyboardActive 214 | }, 215 | ActionButton { 216 | iconSource: "/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz" 217 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Restart") 218 | onClicked: sddm.reboot() 219 | enabled: sddm.canReboot 220 | visible: !inputPanel.keyboardActive 221 | }, 222 | ActionButton { 223 | iconSource: "/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz" 224 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Shut Down") 225 | onClicked: sddm.powerOff() 226 | enabled: sddm.canPowerOff 227 | visible: !inputPanel.keyboardActive 228 | }, 229 | ActionButton { 230 | iconSource: "/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz" 231 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "For switching to a username and password prompt", "Other...") 232 | onClicked: mainStack.push(userPromptComponent) 233 | enabled: true 234 | visible: !userListComponent.showUsernamePrompt && !inputPanel.keyboardActive 235 | }] 236 | 237 | onLoginRequest: { 238 | root.notificationMessage = "" 239 | sddm.login(username, password, sessionButton.currentIndex) 240 | } 241 | } 242 | 243 | Behavior on opacity { 244 | OpacityAnimator { 245 | duration: Kirigami.Units.longDuration 246 | } 247 | } 248 | } 249 | 250 | /*Loader { 251 | id: inputPanel 252 | state: "hidden" 253 | property bool keyboardActive: item ? item.active : false 254 | onKeyboardActiveChanged: { 255 | if (keyboardActive) { 256 | state = "visible" 257 | } else { 258 | state = "hidden"; 259 | } 260 | } 261 | source: "components/VirtualKeyboard.qml" 262 | anchors { 263 | left: parent.left 264 | right: parent.right 265 | } 266 | 267 | function showHide() { 268 | state = state == "hidden" ? "visible" : "hidden"; 269 | } 270 | 271 | states: [ 272 | State { 273 | name: "visible" 274 | PropertyChanges { 275 | target: mainStack 276 | y: Math.min(0, root.height - inputPanel.height - userListComponent.visibleBoundary) 277 | } 278 | PropertyChanges { 279 | target: inputPanel 280 | y: root.height - inputPanel.height 281 | opacity: 1 282 | } 283 | }, 284 | State { 285 | name: "hidden" 286 | PropertyChanges { 287 | target: mainStack 288 | y: 0 289 | } 290 | PropertyChanges { 291 | target: inputPanel 292 | y: root.height - root.height/4 293 | opacity: 0 294 | } 295 | } 296 | ] 297 | transitions: [ 298 | Transition { 299 | from: "hidden" 300 | to: "visible" 301 | SequentialAnimation { 302 | ScriptAction { 303 | script: { 304 | inputPanel.item.activated = true; 305 | Qt.inputMethod.show(); 306 | } 307 | } 308 | ParallelAnimation { 309 | NumberAnimation { 310 | target: mainStack 311 | property: "y" 312 | duration: Kirigami.Units.longDuration 313 | easing.type: Easing.InOutQuad 314 | } 315 | NumberAnimation { 316 | target: inputPanel 317 | property: "y" 318 | duration: Kirigami.Units.longDuration 319 | easing.type: Easing.OutQuad 320 | } 321 | OpacityAnimator { 322 | target: inputPanel 323 | duration: Kirigami.Units.longDuration 324 | easing.type: Easing.OutQuad 325 | } 326 | } 327 | } 328 | }, 329 | Transition { 330 | from: "visible" 331 | to: "hidden" 332 | SequentialAnimation { 333 | ParallelAnimation { 334 | NumberAnimation { 335 | target: mainStack 336 | property: "y" 337 | duration: Kirigami.Units.longDuration 338 | easing.type: Easing.InOutQuad 339 | } 340 | NumberAnimation { 341 | target: inputPanel 342 | property: "y" 343 | duration: Kirigami.Units.longDuration 344 | easing.type: Easing.InQuad 345 | } 346 | OpacityAnimator { 347 | target: inputPanel 348 | duration: Kirigami.Units.longDuration 349 | easing.type: Easing.InQuad 350 | } 351 | } 352 | ScriptAction { 353 | script: { 354 | Qt.inputMethod.hide(); 355 | } 356 | } 357 | } 358 | } 359 | ] 360 | }*/ 361 | 362 | VirtualKeyboardLoader { 363 | id: inputPanel 364 | 365 | z: 1 366 | 367 | screenRoot: root 368 | mainStack: mainStack 369 | mainBlock: userListComponent 370 | passwordField: userListComponent.mainPasswordBox 371 | } 372 | 373 | Component { 374 | id: userPromptComponent 375 | Login { 376 | showUsernamePrompt: true 377 | notificationMessage: root.notificationMessage 378 | loginScreenUiVisible: loginScreenRoot.uiVisible 379 | 380 | // using a model rather than a QObject list to avoid QTBUG-75900 381 | userListModel: ListModel { 382 | ListElement { 383 | name: "" 384 | iconSource: "" 385 | } 386 | Component.onCompleted: { 387 | // as we can't bind inside ListElement 388 | setProperty(0, "name", i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Type in Username and Password")); 389 | } 390 | } 391 | 392 | onLoginRequest: { 393 | root.notificationMessage = "" 394 | sddm.login(username, password, sessionButton.currentIndex) 395 | } 396 | 397 | actionItems: [ 398 | ActionButton { 399 | iconSource: "/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz" 400 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel","Suspend to RAM","Sleep") 401 | onClicked: sddm.suspend() 402 | enabled: sddm.canSuspend 403 | visible: !inputPanel.keyboardActive 404 | }, 405 | ActionButton { 406 | iconSource: "/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz" 407 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Restart") 408 | onClicked: sddm.reboot() 409 | enabled: sddm.canReboot 410 | visible: !inputPanel.keyboardActive 411 | }, 412 | ActionButton { 413 | iconSource: "/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz" 414 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Shut Down") 415 | onClicked: sddm.powerOff() 416 | enabled: sddm.canPowerOff 417 | visible: !inputPanel.keyboardActive 418 | }, 419 | ActionButton { 420 | iconSource: "/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz" 421 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","List Users") 422 | onClicked: mainStack.pop() 423 | visible: !inputPanel.keyboardActive 424 | } 425 | ] 426 | } 427 | } 428 | 429 | Image { 430 | id: logo 431 | visible: config.showlogo == "shown" 432 | source: config.logo 433 | anchors.horizontalCenter: parent.horizontalCenter 434 | anchors.bottom: footer.top 435 | anchors.bottomMargin: Kirigami.Units.largeSpacing 436 | asynchronous: true 437 | sourceSize.height: height 438 | opacity: loginScreenRoot.uiVisible ? 0 : 1 439 | fillMode: Image.PreserveAspectFit 440 | height: Math.round(Kirigami.Units.gridUnit * 3.5) 441 | Behavior on opacity { 442 | OpacityAnimator { 443 | duration: Kirigami.Units.longDuration 444 | easing.type: Easing.InOutQuad 445 | } 446 | } 447 | } 448 | 449 | DropShadow { 450 | id: logoShadow 451 | anchors.fill: logo 452 | source: logo 453 | visible: !softwareRendering && config.showlogo == "shown" 454 | horizontalOffset: 1 455 | verticalOffset: 1 456 | radius: 6 457 | samples: 14 458 | spread: 0.3 459 | color: "black" // matches Breeze window decoration and desktopcontainment 460 | opacity: loginScreenRoot.uiVisible ? 0 : 1 461 | Behavior on opacity { 462 | OpacityAnimator { 463 | duration: Kirigami.Units.longDuration 464 | easing.type: Easing.InOutQuad 465 | } 466 | } 467 | } 468 | 469 | //Footer 470 | RowLayout { 471 | id: footer 472 | anchors { 473 | bottom: parent.bottom 474 | left: parent.left 475 | right: parent.right 476 | margins: Kirigami.Units.smallSpacing 477 | } 478 | 479 | Behavior on opacity { 480 | OpacityAnimator { 481 | duration: Kirigami.Units.longDuration 482 | } 483 | } 484 | 485 | PlasmaComponents.ToolButton { 486 | id: virtualKeyboardButton 487 | 488 | text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Button to show/hide virtual keyboard", "Virtual Keyboard") 489 | font.pointSize: config.fontSize 490 | icon.name: inputPanel.keyboardActive ? "input-keyboard-virtual-on" : "input-keyboard-virtual-off" 491 | onClicked: { 492 | // Otherwise the password field loses focus and virtual keyboard 493 | // keystrokes get eaten 494 | userListComponent.mainPasswordBox.forceActiveFocus(); 495 | inputPanel.showHide() 496 | } 497 | visible: inputPanel.status === Loader.Ready 498 | 499 | Layout.fillHeight: true 500 | containmentMask: Item { 501 | parent: virtualKeyboardButton 502 | anchors.fill: parent 503 | anchors.leftMargin: -footer.anchors.margins 504 | anchors.bottomMargin: -footer.anchors.margins 505 | } 506 | } 507 | 508 | KeyboardButton { 509 | } 510 | 511 | SessionButton { 512 | id: sessionButton 513 | } 514 | 515 | Item { 516 | Layout.fillWidth: true 517 | } 518 | 519 | Battery { } 520 | } 521 | } 522 | 523 | Connections { 524 | target: sddm 525 | function onLoginFailed() { 526 | notificationMessage = i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Login Failed") 527 | footer.enabled = true 528 | mainStack.enabled = true 529 | userListComponent.userList.opacity = 1 530 | } 531 | function onLoginSucceeded() { 532 | //note SDDM will kill the greeter at some random point after this 533 | //there is no certainty any transition will finish, it depends on the time it 534 | //takes to complete the init 535 | mainStack.opacity = 0 536 | footer.opacity = 0 537 | } 538 | } 539 | 540 | onNotificationMessageChanged: { 541 | if (notificationMessage) { 542 | notificationResetTimer.start(); 543 | } 544 | } 545 | 546 | Timer { 547 | id: notificationResetTimer 548 | interval: 3000 549 | onTriggered: notificationMessage = "" 550 | } 551 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/SessionButton.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | 3 | import org.kde.plasma.core as PlasmaCore 4 | import org.kde.plasma.components as PlasmaComponents 5 | import org.kde.kirigami as Kirigami 6 | 7 | PlasmaComponents.ToolButton { 8 | id: root 9 | property int currentIndex: -1 10 | 11 | //implicitWidth: minimumWidth 12 | 13 | visible: menu.count > 1 14 | 15 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "") 16 | 17 | font.pointSize: config.fontSize 18 | 19 | Component.onCompleted: { 20 | currentIndex = sessionModel.lastIndex 21 | } 22 | 23 | checkable: true 24 | checked: menu.opened 25 | onToggled: { 26 | if (checked) { 27 | menu.popup(root, 0, 0) 28 | } else { 29 | menu.dismiss() 30 | } 31 | } 32 | 33 | PlasmaComponents.Menu { 34 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 35 | Kirigami.Theme.inherit: false 36 | 37 | id: menu 38 | Instantiator { 39 | id: instantiator 40 | model: sessionModel 41 | onObjectAdded: (index, object) => menu.insertItem(index, object) 42 | onObjectRemoved: (index, object) => menu.removeItem(object) 43 | delegate: PlasmaComponents.MenuItem { 44 | text: model.name 45 | onTriggered: { 46 | root.currentIndex = model.index 47 | } 48 | } 49 | } 50 | } 51 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/logout_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/airootfs/usr/share/sddm/themes/Qogir/background.jpg -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/ActionButton.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import org.kde.plasma.core as PlasmaCore 3 | import org.kde.plasma.components as PlasmaComponents 4 | import org.kde.kirigami as Kirigami 5 | 6 | Item { 7 | id: root 8 | property alias text: label.text 9 | property alias iconSource: icon.source 10 | property alias containsMouse: mouseArea.containsMouse 11 | property alias font: label.font 12 | property alias labelRendering: label.renderType 13 | property alias circleOpacity: iconCircle.opacity 14 | property alias circleVisiblity: iconCircle.visible 15 | property int fontSize: config.fontSize 16 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software 17 | signal clicked 18 | 19 | activeFocusOnTab: true 20 | 21 | property int iconSize: Kirigami.Units.gridUnit * 3 22 | 23 | implicitWidth: Math.max(iconSize + Kirigami.Units.largeSpacing * 2, label.contentWidth) 24 | implicitHeight: iconSize + Kirigami.Units.smallSpacing + label.implicitHeight 25 | 26 | opacity: activeFocus || containsMouse ? 1 : 0.85 27 | Behavior on opacity { 28 | PropertyAnimation { // OpacityAnimator makes it turn black at random intervals 29 | duration: Kirigami.Units.longDuration * 2 30 | easing.type: Easing.InOutQuad 31 | } 32 | } 33 | 34 | Rectangle { 35 | id: iconCircle 36 | anchors.centerIn: icon 37 | width: iconSize + Kirigami.Units.smallSpacing 38 | height: width 39 | radius: width / 2 40 | color: softwareRendering ? Kirigami.Theme.backgroundColor : Kirigami.Theme.textColor 41 | opacity: activeFocus || containsMouse ? (softwareRendering ? 0.8 : 0.15) : (softwareRendering ? 0.6 : 0) 42 | Behavior on opacity { 43 | PropertyAnimation { // OpacityAnimator makes it turn black at random intervals 44 | duration: Kirigami.Units.longDuration * 3 45 | easing.type: Easing.InOutQuad 46 | } 47 | } 48 | } 49 | 50 | Rectangle { 51 | anchors.centerIn: iconCircle 52 | width: iconCircle.width 53 | height: width 54 | radius: width / 2 55 | scale: mouseArea.containsPress ? 1 : 0 56 | color: Kirigami.Theme.textColor 57 | opacity: 0.15 58 | Behavior on scale { 59 | PropertyAnimation { 60 | duration: Kirigami.Units.shortDuration 61 | easing.type: Easing.InOutQuart 62 | } 63 | } 64 | } 65 | 66 | Kirigami.Icon { 67 | id: icon 68 | anchors { 69 | top: parent.top 70 | horizontalCenter: parent.horizontalCenter 71 | } 72 | width: iconSize 73 | height: iconSize 74 | 75 | Kirigami.Theme.colorGroup: Kirigami.Theme.Active 76 | active: mouseArea.containsMouse || root.activeFocus 77 | } 78 | 79 | PlasmaComponents.Label { 80 | id: label 81 | font.pointSize: Math.max(fontSize + 1,Kirigami.Theme.defaultFont.pointSize + 1) 82 | anchors { 83 | top: icon.bottom 84 | topMargin: (softwareRendering ? 1.5 : 1) * Kirigami.Units.smallSpacing 85 | left: parent.left 86 | right: parent.right 87 | } 88 | style: softwareRendering ? Text.Outline : Text.Normal 89 | styleColor: softwareRendering ? Kirigami.Theme.backgroundColor : "transparent" //no outline, doesn't matter 90 | horizontalAlignment: Text.AlignHCenter 91 | verticalAlignment: Text.AlignTop 92 | wrapMode: Text.WordWrap 93 | font.underline: root.activeFocus 94 | } 95 | 96 | MouseArea { 97 | id: mouseArea 98 | hoverEnabled: true 99 | onClicked: root.clicked() 100 | anchors.fill: parent 101 | } 102 | 103 | Keys.onEnterPressed: clicked() 104 | Keys.onReturnPressed: clicked() 105 | Keys.onSpacePressed: clicked() 106 | 107 | Accessible.onPressAction: clicked() 108 | Accessible.role: Accessible.Button 109 | Accessible.name: label.text 110 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/Battery.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | 3 | import org.kde.plasma.core as PlasmaCore 4 | import org.kde.plasma.components as PlasmaComponents 5 | import org.kde.plasma.workspace.components as PW 6 | import org.kde.plasma.plasma5support as Plasma5Support 7 | import org.kde.kirigami as Kirigami 8 | 9 | Row { 10 | spacing: Kirigami.Units.smallSpacing 11 | visible: pmSource.data["Battery"]["Has Cumulative"] 12 | 13 | Plasma5Support.DataSource { 14 | id: pmSource 15 | engine: "powermanagement" 16 | connectedSources: ["Battery", "AC Adapter"] 17 | } 18 | 19 | PW.BatteryIcon { 20 | id: battery 21 | hasBattery: pmSource.data["Battery"]["Has Battery"] || false 22 | percent: pmSource.data["Battery"]["Percent"] || 0 23 | pluggedIn: pmSource.data["AC Adapter"] ? pmSource.data["AC Adapter"]["Plugged in"] : false 24 | 25 | height: batteryLabel.height 26 | width: height 27 | } 28 | 29 | PlasmaComponents.Label { 30 | id: batteryLabel 31 | font.pointSize: config.fontSize 32 | height: undefined 33 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","%1%", battery.percent) 34 | Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Battery at %1%", battery.percent) 35 | } 36 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/Clock.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Layouts 3 | import QtQuick.Controls 4 | import org.kde.plasma.core 5 | import org.kde.plasma.plasma5support as Plasma5Support 6 | import org.kde.kirigami as Kirigami 7 | 8 | ColumnLayout { 9 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software 10 | 11 | Label { 12 | text: Qt.formatTime(timeSource.data["Local"]["DateTime"]) 13 | color: Kirigami.Theme.textColor 14 | style: softwareRendering ? Text.Outline : Text.Normal 15 | styleColor: softwareRendering ? Kirigami.Theme.backgroundColor : "transparent" //no outline, doesn't matter 16 | font.pointSize: 48 17 | Layout.alignment: Qt.AlignHCenter 18 | } 19 | Label { 20 | text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate) 21 | color: Kirigami.Theme.textColor 22 | style: softwareRendering ? Text.Outline : Text.Normal 23 | styleColor: softwareRendering ? Kirigami.Theme.backgroundColor : "transparent" //no outline, doesn't matter 24 | font.pointSize: 24 25 | Layout.alignment: Qt.AlignHCenter 26 | } 27 | Plasma5Support.DataSource { 28 | id: timeSource 29 | engine: "time" 30 | connectedSources: ["Local"] 31 | interval: 1000 32 | } 33 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/KeyboardLayoutButton.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls as QQC 3 | 4 | import org.kde.plasma.components as PlasmaComponents 5 | import org.kde.plasma.workspace.keyboardlayout 6 | 7 | PlasmaComponents.ToolButton { 8 | 9 | property int fontSize: config.fontSize 10 | 11 | id: kbLayoutButton 12 | 13 | iconName: "input-keyboard" 14 | implicitWidth: minimumWidth 15 | text: layout.currentLayoutDisplayName 16 | font.pointSize: Math.max(fontSize,theme.defaultFont.pointSize) 17 | 18 | Accessible.name: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Button to change keyboard layout", "Switch layout") 19 | 20 | visible: layout.layouts.length > 1 21 | 22 | onClicked: layout.nextLayout() 23 | 24 | KeyboardLayout { 25 | id: layout 26 | function nextLayout() { 27 | var layouts = layout.layouts; 28 | var index = (layouts.indexOf(layout.currentLayout)+1) % layouts.length; 29 | layout.currentLayout = layouts[index]; 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /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 21 | 22 | import QtQuick.Layouts 23 | import QtQuick.Controls 24 | 25 | import org.kde.plasma.core as PlasmaCore 26 | import org.kde.plasma.components as PlasmaComponents 27 | import org.kde.kirigami as Kirigami 28 | 29 | Item { 30 | id: root 31 | 32 | /* 33 | * Any message to be displayed to the user, visible above the text fields 34 | */ 35 | property alias notificationMessage: notificationsLabel.text 36 | 37 | /* 38 | * A list of Items (typically ActionButtons) to be shown in a Row beneath the prompts 39 | */ 40 | property alias actionItems: actionItemsLayout.children 41 | 42 | /* 43 | * A model with a list of users to show in the view 44 | * The following roles should exist: 45 | * - name 46 | * - iconSource 47 | * 48 | * The following are also handled: 49 | * - vtNumber 50 | * - displayNumber 51 | * - session 52 | * - isTty 53 | */ 54 | property alias userListModel: userListView.model 55 | 56 | /* 57 | * Self explanatory 58 | */ 59 | property alias userListCurrentIndex: userListView.currentIndex 60 | property var userListCurrentModelData: userListView.currentItem === null ? [] : userListView.currentItem.m 61 | property bool showUserList: true 62 | 63 | property alias userList: userListView 64 | 65 | property int fontSize: config.fontSize 66 | 67 | default property alias _children: innerLayout.children 68 | 69 | UserList { 70 | id: userListView 71 | visible: showUserList && y > 0 72 | anchors { 73 | bottom: parent.verticalCenter 74 | left: parent.left 75 | right: parent.right 76 | } 77 | } 78 | 79 | //goal is to show the prompts, in ~16 grid units high, then the action buttons 80 | //but collapse the space between the prompts and actions if there's no room 81 | //ui is constrained to 16 grid units wide, or the screen 82 | ColumnLayout { 83 | id: prompts 84 | anchors.top: parent.verticalCenter 85 | anchors.topMargin: Kirigami.Units.gridUnit * 0.5 86 | anchors.left: parent.left 87 | anchors.right: parent.right 88 | anchors.bottom: parent.bottom 89 | PlasmaComponents.Label { 90 | id: notificationsLabel 91 | font.pointSize: Math.max(fontSize + 1,Kirigami.Theme.defaultFont.pointSize + 1) 92 | Layout.maximumWidth: Kirigami.Units.gridUnit * 16 93 | Layout.alignment: Qt.AlignHCenter 94 | Layout.fillWidth: true 95 | horizontalAlignment: Text.AlignHCenter 96 | wrapMode: Text.WordWrap 97 | font.italic: true 98 | } 99 | ColumnLayout { 100 | Layout.minimumHeight: implicitHeight 101 | Layout.maximumHeight: Kirigami.Units.gridUnit * 10 102 | Layout.maximumWidth: Kirigami.Units.gridUnit * 16 103 | Layout.alignment: Qt.AlignHCenter 104 | ColumnLayout { 105 | id: innerLayout 106 | Layout.alignment: Qt.AlignHCenter 107 | Layout.fillWidth: true 108 | } 109 | Item { 110 | Layout.fillHeight: true 111 | } 112 | } 113 | Row { //deliberately not rowlayout as I'm not trying to resize child items 114 | id: actionItemsLayout 115 | spacing: Kirigami.Units.largeSpacing / 2 116 | Layout.alignment: Qt.AlignHCenter 117 | } 118 | Item { 119 | Layout.fillHeight: true 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 22 | import org.kde.plasma.core as PlasmaCore 23 | import org.kde.plasma.components as PlasmaComponents 24 | import org.kde.kirigami as Kirigami 25 | 26 | Item { 27 | id: wrapper 28 | 29 | // If we're using software rendering, draw outlines instead of shadows 30 | // See https://bugs.kde.org/show_bug.cgi?id=398317 31 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software 32 | 33 | property bool isCurrent: true 34 | 35 | readonly property var m: model 36 | property string name 37 | property string userName 38 | property string avatarPath 39 | property string iconSource 40 | property bool constrainText: true 41 | property alias nameFontSize: usernameDelegate.font.pointSize 42 | property int fontSize: config.fontSize 43 | signal clicked() 44 | 45 | property real faceSize: Kirigami.Units.gridUnit * 7 46 | 47 | opacity: isCurrent ? 1.0 : 0.5 48 | 49 | Behavior on opacity { 50 | OpacityAnimator { 51 | duration: Kirigami.Units.longDuration 52 | } 53 | } 54 | 55 | // Draw a translucent background circle under the user picture 56 | Rectangle { 57 | anchors.centerIn: imageSource 58 | width: imageSource.width - 2 // Subtract to prevent fringing 59 | height: width 60 | radius: width / 2 61 | 62 | color: Kirigami.Theme.backgroundColor 63 | opacity: 0.6 64 | } 65 | 66 | Item { 67 | id: imageSource 68 | anchors { 69 | bottom: usernameDelegate.top 70 | bottomMargin: Kirigami.Units.largeSpacing 71 | horizontalCenter: parent.horizontalCenter 72 | } 73 | Behavior on width { 74 | PropertyAnimation { 75 | from: faceSize 76 | duration: Kirigami.Units.longDuration * 2; 77 | } 78 | } 79 | width: isCurrent ? faceSize : faceSize - Kirigami.Units.largeSpacing 80 | height: width 81 | 82 | //Image takes priority, taking a full path to a file, if that doesn't exist we show an icon 83 | Image { 84 | id: face 85 | source: wrapper.avatarPath 86 | sourceSize: Qt.size(faceSize, faceSize) 87 | fillMode: Image.PreserveAspectCrop 88 | anchors.fill: parent 89 | } 90 | 91 | Kirigami.Icon { 92 | id: faceIcon 93 | source: iconSource 94 | visible: (face.status == Image.Error || face.status == Image.Null) 95 | anchors.fill: parent 96 | anchors.margins: Kirigami.Units.gridUnit * 0.5 // because mockup says so... 97 | Kirigami.Theme.colorGroup: Kirigami.Theme.Active 98 | //colorGroup: Kirigami.Theme.colorGroup 99 | } 100 | } 101 | 102 | /*ShaderEffect { 103 | anchors { 104 | bottom: usernameDelegate.top 105 | bottomMargin: Kirigami.Units.largeSpacing 106 | horizontalCenter: parent.horizontalCenter 107 | } 108 | 109 | width: imageSource.width 110 | height: imageSource.height 111 | 112 | supportsAtlasTextures: true 113 | 114 | property var source: ShaderEffectSource { 115 | sourceItem: imageSource 116 | // software rendering is just a fallback so we can accept not having a rounded avatar here 117 | hideSource: wrapper.GraphicsInfo.api !== GraphicsInfo.Software 118 | live: true // otherwise the user in focus will show a blurred avatar 119 | } 120 | 121 | property var colorBorder: Kirigami.Theme.textColor 122 | 123 | //draw a circle with an antialiased border 124 | //innerRadius = size of the inner circle with contents 125 | //outerRadius = size of the border 126 | //blend = area to blend between two colours 127 | //all sizes are normalised so 0.5 == half the width of the texture 128 | 129 | //if copying into another project don't forget to connect themeChanged to update() 130 | //but in SDDM that's a bit pointless 131 | fragmentShader: " 132 | varying highp vec2 qt_TexCoord0; 133 | uniform highp float qt_Opacity; 134 | uniform lowp sampler2D source; 135 | 136 | uniform lowp vec4 colorBorder; 137 | highp float blend = 0.01; 138 | highp float innerRadius = 0.47; 139 | highp float outerRadius = 0.49; 140 | lowp vec4 colorEmpty = vec4(0.0, 0.0, 0.0, 0.0); 141 | 142 | void main() { 143 | lowp vec4 colorSource = texture2D(source, qt_TexCoord0.st); 144 | 145 | highp vec2 m = qt_TexCoord0 - vec2(0.5, 0.5); 146 | highp float dist = sqrt(m.x * m.x + m.y * m.y); 147 | 148 | if (dist < innerRadius) 149 | gl_FragColor = colorSource; 150 | else if (dist < innerRadius + blend) 151 | gl_FragColor = mix(colorSource, colorBorder, ((dist - innerRadius) / blend)); 152 | else if (dist < outerRadius) 153 | gl_FragColor = colorBorder; 154 | else if (dist < outerRadius + blend) 155 | gl_FragColor = mix(colorBorder, colorEmpty, ((dist - outerRadius) / blend)); 156 | else 157 | gl_FragColor = colorEmpty ; 158 | 159 | gl_FragColor = gl_FragColor * qt_Opacity; 160 | }" 161 | }*/ 162 | 163 | PlasmaComponents.Label { 164 | id: usernameDelegate 165 | font.pointSize: Math.max(fontSize + 2,Kirigami.Theme.defaultFont.pointSize + 2) 166 | anchors { 167 | bottom: parent.bottom 168 | horizontalCenter: parent.horizontalCenter 169 | } 170 | height: implicitHeight // work around stupid bug in Plasma Components that sets the height 171 | width: constrainText ? parent.width : implicitWidth 172 | text: wrapper.name 173 | style: softwareRendering ? Text.Outline : Text.Normal 174 | styleColor: softwareRendering ? Kirigami.Theme.backgroundColor : "transparent" //no outline, doesn't matter 175 | elide: Text.ElideRight 176 | horizontalAlignment: Text.AlignHCenter 177 | //make an indication that this has active focus, this only happens when reached with keyboard navigation 178 | font.underline: wrapper.activeFocus 179 | } 180 | 181 | MouseArea { 182 | anchors.fill: parent 183 | hoverEnabled: true 184 | 185 | onClicked: wrapper.clicked(); 186 | } 187 | 188 | Accessible.name: name 189 | Accessible.role: Accessible.Button 190 | function accessiblePressAction() { wrapper.clicked() } 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 21 | import org.kde.kirigami as Kirigami 22 | 23 | ListView { 24 | id: view 25 | readonly property string selectedUser: currentItem ? currentItem.userName : "" 26 | readonly property int userItemWidth: Kirigami.Units.gridUnit * 8 27 | readonly property int userItemHeight: Kirigami.Units.gridUnit * 8 28 | 29 | implicitHeight: userItemHeight 30 | 31 | activeFocusOnTab : true 32 | 33 | /* 34 | * Signals that a user was explicitly selected 35 | */ 36 | signal userSelected; 37 | 38 | orientation: ListView.Horizontal 39 | highlightRangeMode: ListView.StrictlyEnforceRange 40 | 41 | //centre align selected item (which implicitly centre aligns the rest 42 | preferredHighlightBegin: width/2 - userItemWidth/2 43 | preferredHighlightEnd: preferredHighlightBegin 44 | 45 | delegate: UserDelegate { 46 | avatarPath: model.icon || "" 47 | iconSource: model.iconName || "user-identity" 48 | 49 | name: { 50 | var displayName = model.realName || model.name 51 | 52 | if (model.vtNumber === undefined || model.vtNumber < 0) { 53 | return displayName 54 | } 55 | 56 | if (!model.session) { 57 | return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Nobody logged in on that session", "Unused") 58 | } 59 | 60 | 61 | var location = "" 62 | if (model.isTty) { 63 | location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console number", "TTY %1", model.vtNumber) 64 | } else if (model.displayNumber) { 65 | location = i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "User logged in on console (X display number)", "on TTY %1 (Display %2)", model.vtNumber, model.displayNumber) 66 | } 67 | 68 | if (location) { 69 | return i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "Username (location)", "%1 (%2)", displayName, location) 70 | } 71 | 72 | return displayName 73 | } 74 | 75 | userName: model.name 76 | 77 | width: userItemWidth 78 | height: userItemHeight 79 | 80 | //if we only have one delegate, we don't need to clip the text as it won't be overlapping with anything 81 | constrainText: ListView.view.count > 1 82 | 83 | isCurrent: ListView.isCurrentItem 84 | 85 | onClicked: { 86 | ListView.view.currentIndex = index; 87 | ListView.view.userSelected(); 88 | } 89 | } 90 | 91 | Keys.onEscapePressed: view.userSelected() 92 | Keys.onEnterPressed: view.userSelected() 93 | Keys.onReturnPressed: view.userSelected() 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 | 20 | import QtQuick 21 | import QtQuick.VirtualKeyboard 22 | 23 | InputPanel { 24 | id: inputPanel 25 | property bool activated: false 26 | active: activated && Qt.inputMethod.visible 27 | visible: active 28 | width: parent.width 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 21 | import QtQuick.Controls 22 | import QtQuick.Layouts 23 | import Qt5Compat.GraphicalEffects 24 | 25 | import org.kde.plasma.core as PlasmaCore 26 | import org.kde.plasma.components as PlasmaComponents 27 | import org.kde.kirigami as Kirigami 28 | 29 | import org.kde.plasma.private.sessions 30 | import "../components" 31 | 32 | Item { 33 | id: wallpaperFader 34 | property Item clock 35 | property Item mainStack 36 | property Item footer 37 | property alias source: wallpaperBlur.source 38 | state: lockScreenRoot.uiVisible ? "on" : "off" 39 | property real factor: 0 40 | readonly property bool lightBackground: Math.max(Kirigami.Theme.backgroundColor.r, Kirigami.Theme.backgroundColor.g, Kirigami.Theme.backgroundColor.b) > 0.5 41 | 42 | property bool alwaysShowClock: typeof config === "undefined" || config.alwaysShowClock === true 43 | 44 | Behavior on factor { 45 | NumberAnimation { 46 | target: wallpaperFader 47 | property: "factor" 48 | duration: 1000 49 | easing.type: Easing.InOutQuad 50 | } 51 | } 52 | FastBlur { 53 | id: wallpaperBlur 54 | anchors.fill: parent 55 | radius: 50 * wallpaperFader.factor 56 | } 57 | /*ShaderEffect { 58 | id: wallpaperShader 59 | anchors.fill: parent 60 | supportsAtlasTextures: true 61 | property var source: ShaderEffectSource { 62 | sourceItem: wallpaperBlur 63 | live: true 64 | hideSource: true 65 | textureMirroring: ShaderEffectSource.NoMirroring 66 | } 67 | 68 | readonly property real contrast: 0.65 * wallpaperFader.factor + (1 - wallpaperFader.factor) 69 | readonly property real saturation: 1.6 * wallpaperFader.factor + (1 - wallpaperFader.factor) 70 | readonly property real intensity: (wallpaperFader.lightBackground ? 1.7 : 0.6) * wallpaperFader.factor + (1 - wallpaperFader.factor) 71 | 72 | readonly property real transl: (1.0 - contrast) / 2.0; 73 | readonly property real rval: (1.0 - saturation) * 0.2126; 74 | readonly property real gval: (1.0 - saturation) * 0.7152; 75 | readonly property real bval: (1.0 - saturation) * 0.0722; 76 | 77 | property var colorMatrix: Qt.matrix4x4( 78 | contrast, 0, 0, 0.0, 79 | 0, contrast, 0, 0.0, 80 | 0, 0, contrast, 0.0, 81 | transl, transl, transl, 1.0).times(Qt.matrix4x4( 82 | rval + saturation, rval, rval, 0.0, 83 | gval, gval + saturation, gval, 0.0, 84 | bval, bval, bval + saturation, 0.0, 85 | 0, 0, 0, 1.0)).times(Qt.matrix4x4( 86 | intensity, 0, 0, 0, 87 | 0, intensity, 0, 0, 88 | 0, 0, intensity, 0, 89 | 0, 0, 0, 1 90 | )); 91 | 92 | 93 | fragmentShader: " 94 | uniform mediump mat4 colorMatrix; 95 | uniform mediump sampler2D source; 96 | varying mediump vec2 qt_TexCoord0; 97 | uniform lowp float qt_Opacity; 98 | 99 | void main(void) 100 | { 101 | mediump vec4 tex = texture2D(source, qt_TexCoord0); 102 | gl_FragColor = tex * colorMatrix * qt_Opacity; 103 | }" 104 | }*/ 105 | 106 | states: [ 107 | State { 108 | name: "on" 109 | PropertyChanges { 110 | target: mainStack 111 | opacity: 1 112 | } 113 | PropertyChanges { 114 | target: footer 115 | opacity: 1 116 | } 117 | PropertyChanges { 118 | target: wallpaperFader 119 | factor: 1 120 | } 121 | PropertyChanges { 122 | target: clock.shadow 123 | opacity: 0 124 | } 125 | PropertyChanges { 126 | target: clock 127 | opacity: 1 128 | } 129 | }, 130 | State { 131 | name: "off" 132 | PropertyChanges { 133 | target: mainStack 134 | opacity: 0 135 | } 136 | PropertyChanges { 137 | target: footer 138 | opacity: 0 139 | } 140 | PropertyChanges { 141 | target: wallpaperFader 142 | factor: 0 143 | } 144 | PropertyChanges { 145 | target: clock.shadow 146 | opacity: wallpaperFader.alwaysShowClock ? 1 : 0 147 | } 148 | PropertyChanges { 149 | target: clock 150 | opacity: wallpaperFader.alwaysShowClock ? 1 : 0 151 | } 152 | } 153 | ] 154 | transitions: [ 155 | Transition { 156 | from: "off" 157 | to: "on" 158 | //Note: can't use animators as they don't play well with parallelanimations 159 | NumberAnimation { 160 | targets: [mainStack, footer, clock] 161 | property: "opacity" 162 | duration: Kirigami.Units.longDuration 163 | easing.type: Easing.InOutQuad 164 | } 165 | }, 166 | Transition { 167 | from: "on" 168 | to: "off" 169 | NumberAnimation { 170 | targets: [mainStack, footer, clock] 171 | property: "opacity" 172 | duration: 500 173 | easing.type: Easing.InOutQuad 174 | } 175 | } 176 | ] 177 | } -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/faces/.face.icon: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/airootfs/usr/share/sddm/themes/Qogir/preview.png -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/real-wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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 -------------------------------------------------------------------------------- /airootfs/usr/share/wallpapers/real-wood/real-wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/airootfs/usr/share/wallpapers/real-wood/real-wood.jpg -------------------------------------------------------------------------------- /airootfs/usr/share/wallpapers/wall/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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 | yes | 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=alg-plasma-$(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 | -------------------------------------------------------------------------------- /buildiso: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if ! pacman -Qi archiso > /dev/null; then 4 | echo "archiso is not installed. Installing archiso..." 5 | sudo pacman -Sy archiso --needed --noconfirm 6 | fi 7 | 8 | if [ -d "work" ] || [ -d "out" ]; then 9 | sudo rm -rf work/ out/ 10 | fi 11 | 12 | if grep -wq "plasma" profiledef.sh && ! grep -q "\[chaotic-aur\]" /etc/pacman.conf; then 13 | echo "Adding Chaotic AUR to pacman.conf" 14 | sudo pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com 15 | sudo pacman-key --lsign-key 3056513887B78AEB 16 | sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 17 | sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' 18 | sudo sh -c "echo -e '\n[chaotic-aur]\nInclude = /etc/pacman.d/chaotic-mirrorlist' >> /etc/pacman.conf" 19 | sudo pacman -Syu 20 | fi 21 | 22 | echo "Building ISO" 23 | echo "Warning don't press ctrl+c or ctrl+z when iso is building" 24 | sudo mkarchiso -vvv -w ./work -o ./out ./ -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #set -e 4 | 5 | sudo rm -rvf out/ 6 | sudo rm -rvf work/ 7 | 8 | 9 | echo "D O N E!" 10 | -------------------------------------------------------------------------------- /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), FOSS GPU DRIVERS 5 | sort-key 01 6 | linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 7 | initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 8 | options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=free module_blacklist=nvidia,nvidia_modeset,nvidia_uvm,nvidia_drm nouveau.modeset=1 radeon.modeset=1 i915.modeset=1 nvme_load=yes 9 | -------------------------------------------------------------------------------- /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), LATEST NVIDIA GPUs ONLY 5 | sort-key 02 6 | linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 7 | initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 8 | options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=nonfree nvidia nvidia-drm.modeset=1 nouveau.modeset=0 radeon.modeset=1 i915.modeset=1 nvme_load=yes 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /grub/grub.cfg: -------------------------------------------------------------------------------- 1 | # Load partition table and file system modules 2 | insmod part_gpt 3 | insmod part_msdos 4 | insmod fat 5 | insmod iso9660 6 | insmod ntfs 7 | insmod ntfscomp 8 | insmod exfat 9 | insmod udf 10 | 11 | # Use graphics-mode output 12 | if loadfont "${prefix}/fonts/unicode.pf2" ; then 13 | insmod all_video 14 | set gfxmode="auto" 15 | terminal_input console 16 | terminal_output console 17 | fi 18 | 19 | # Enable serial console 20 | insmod serial 21 | insmod usbserial_common 22 | insmod usbserial_ftdi 23 | insmod usbserial_pl2303 24 | insmod usbserial_usbdebug 25 | if serial --unit=0 --speed=115200; then 26 | terminal_input --append serial 27 | terminal_output --append serial 28 | fi 29 | 30 | # Search for the ISO volume 31 | if [ -z "${ARCHISO_UUID}" ]; then 32 | if [ -z "${ARCHISO_HINT}" ]; then 33 | regexp --set=1:ARCHISO_HINT '^\(([^)]+)\)' "${cmdpath}" 34 | fi 35 | search --no-floppy --set=root --file '%ARCHISO_SEARCH_FILENAME%' --hint "${ARCHISO_HINT}" 36 | probe --set ARCHISO_UUID --fs-uuid "${root}" 37 | fi 38 | 39 | # Get a human readable platform identifier 40 | if [ "${grub_platform}" == 'efi' ]; then 41 | archiso_platform='UEFI' 42 | if [ "${grub_cpu}" == 'x86_64' ]; then 43 | archiso_platform="x64 ${archiso_platform}" 44 | elif [ "${grub_cpu}" == 'i386' ]; then 45 | archiso_platform="IA32 ${archiso_platform}" 46 | else 47 | archiso_platform="${grub_cpu} ${archiso_platform}" 48 | fi 49 | elif [ "${grub_platform}" == 'pc' ]; then 50 | archiso_platform='BIOS' 51 | else 52 | archiso_platform="${grub_cpu} ${grub_platform}" 53 | fi 54 | 55 | # Set default menu entry 56 | default=archlinux 57 | timeout=15 58 | timeout_style=menu 59 | 60 | 61 | # Menu entries 62 | 63 | menuentry "ALG with free and open source graphics drivers (nouveau) (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { 64 | set gfxpayload=keep 65 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisodevice=UUID=${ARCHISO_UUID} cow_spacesize=5G driver=free module_blacklist=nvidia,nvidia_modeset,nvidia_uvm,nvidia_drm nouveau.modeset=1 radeon.modeset=1 i915.modeset=1 copytoram=n nvme_load=yes 66 | initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 67 | } 68 | 69 | menuentry "ALG with proprietary NVIDIA drivers (maxwell and newer) (%ARCH%, ${archiso_platform})" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' { 70 | set gfxpayload=keep 71 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisodevice=UUID=${ARCHISO_UUID} cow_spacesize=4G driver=nonfree nvidia nvidia-drm.modeset=1 nouveau.modeset=0 radeon.modeset=1 i915.modeset=1 copytoram=n nvme_load=yes 72 | initrd /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 73 | } 74 | 75 | 76 | if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then 77 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 78 | set gfxpayload=800x600,1024x768 79 | linux /boot/memtest86+/memtest.efi 80 | } 81 | fi 82 | if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then 83 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 84 | set gfxpayload=800x600,1024x768 85 | linux /boot/memtest86+/memtest 86 | } 87 | fi 88 | if [ "${grub_platform}" == 'efi' ]; then 89 | if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then 90 | menuentry 'UEFI Shell' --class efi { 91 | chainloader /shellx64.efi 92 | } 93 | elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then 94 | menuentry 'UEFI Shell' --class efi { 95 | chainloader /shellia32.efi 96 | } 97 | fi 98 | 99 | menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { 100 | fwsetup 101 | } 102 | fi 103 | 104 | menuentry 'System shutdown' --class shutdown --class poweroff { 105 | echo 'System shutting down...' 106 | halt 107 | } 108 | 109 | menuentry 'System restart' --class reboot --class restart { 110 | echo 'System rebooting...' 111 | reboot 112 | } 113 | 114 | 115 | # GRUB init tune for accessibility 116 | play 600 988 1 1319 4 117 | -------------------------------------------------------------------------------- /grub/loopback.cfg: -------------------------------------------------------------------------------- 1 | # https://www.supergrubdisk.org/wiki/Loopback.cfg 2 | 3 | # Search for the ISO volume 4 | search --no-floppy --set=archiso_img_dev --file "${iso_path}" 5 | probe --set archiso_img_dev_uuid --fs-uuid "${archiso_img_dev}" 6 | 7 | # Get a human readable platform identifier 8 | if [ "${grub_platform}" == 'efi' ]; then 9 | archiso_platform='UEFI' 10 | if [ "${grub_cpu}" == 'x86_64' ]; then 11 | archiso_platform="x64 ${archiso_platform}" 12 | elif [ "${grub_cpu}" == 'i386' ]; then 13 | archiso_platform="IA32 ${archiso_platform}" 14 | else 15 | archiso_platform="${grub_cpu} ${archiso_platform}" 16 | fi 17 | elif [ "${grub_platform}" == 'pc' ]; then 18 | archiso_platform='BIOS' 19 | else 20 | archiso_platform="${grub_cpu} ${grub_platform}" 21 | fi 22 | 23 | # Set default menu entry 24 | default=archlinux 25 | timeout=15 26 | timeout_style=menu 27 | 28 | 29 | # Menu entries 30 | 31 | menuentry "Arch Linux install medium (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { 32 | set gfxpayload=keep 33 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}" 34 | initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 35 | } 36 | 37 | menuentry "Arch Linux install medium with speakup screen reader (%ARCH%, ${archiso_platform})" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' { 38 | set gfxpayload=keep 39 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}" accessibility=on 40 | initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 41 | } 42 | 43 | 44 | if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then 45 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 46 | set gfxpayload=800x600,1024x768 47 | linux /boot/memtest86+/memtest.efi 48 | } 49 | fi 50 | if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then 51 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 52 | set gfxpayload=800x600,1024x768 53 | linux /boot/memtest86+/memtest 54 | } 55 | fi 56 | if [ "${grub_platform}" == 'efi' ]; then 57 | if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then 58 | menuentry 'UEFI Shell' --class efi { 59 | chainloader /shellx64.efi 60 | } 61 | elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then 62 | menuentry 'UEFI Shell' --class efi { 63 | chainloader /shellia32.efi 64 | } 65 | fi 66 | 67 | menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { 68 | fwsetup 69 | } 70 | fi 71 | 72 | menuentry 'System shutdown' --class shutdown --class poweroff { 73 | echo 'System shutting down...' 74 | halt 75 | } 76 | 77 | menuentry 'System restart' --class reboot --class restart { 78 | echo 'System rebooting...' 79 | reboot 80 | } 81 | -------------------------------------------------------------------------------- /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 | bcachefs-tools 9 | bind 10 | broadcom-wl 11 | btrfs-progs 12 | clonezilla 13 | cloud-init 14 | cryptsetup 15 | darkhttpd 16 | ddrescue 17 | dhclient 18 | dhcpcd 19 | diffutils 20 | dmraid 21 | dnsmasq 22 | dosfstools 23 | e2fsprogs 24 | edk2-shell 25 | efibootmgr 26 | espeakup 27 | ethtool 28 | exfatprogs 29 | f2fs-tools 30 | fatresize 31 | fsarchiver 32 | gnu-netcat 33 | gpart 34 | gpm 35 | gptfdisk 36 | grml-zsh-config 37 | hdparm 38 | intel-ucode 39 | irssi 40 | iwd 41 | jfsutils 42 | lftp 43 | linux 44 | linux-atm 45 | linux-firmware 46 | linux-firmware-marvell 47 | livecd-sounds 48 | lsscsi 49 | lvm2 50 | man-db 51 | man-pages 52 | mc 53 | mdadm 54 | memtest86+ 55 | mkinitcpio 56 | mkinitcpio-archiso 57 | mkinitcpio-nfs-utils 58 | modemmanager 59 | mtools 60 | nano 61 | nbd 62 | ndisc6 63 | nfs-utils 64 | nilfs-utils 65 | nmap 66 | ntfs-3g 67 | nvme-cli 68 | openconnect 69 | openssh 70 | openvpn 71 | partclone 72 | parted 73 | partimage 74 | pv 75 | ppp 76 | pptpclient 77 | qemu-guest-agent 78 | reflector 79 | reiserfsprogs 80 | rp-pppoe 81 | rsync 82 | sdparm 83 | sg3_utils 84 | smartmontools 85 | sof-firmware 86 | squashfs-tools 87 | sudo 88 | syslinux 89 | systemd-resolvconf 90 | tcpdump 91 | testdisk 92 | udftools 93 | usb_modeswitch 94 | usbmuxd 95 | usbutils 96 | vim 97 | vpnc 98 | wireless-regdb 99 | wireless_tools 100 | wpa_supplicant 101 | wvdial 102 | xfsprogs 103 | xl2tpd 104 | zsh 105 | 106 | #Arch Linux GUI KDE Plasma Core 107 | xorg 108 | sddm 109 | bash-completion 110 | networkmanager 111 | linux-headers 112 | base-devel 113 | xf86-input-libinput 114 | pacman-contrib 115 | virtualbox-guest-utils 116 | 117 | #ALG Plasma 118 | plasma 119 | alg-plasma-settings 120 | alg-welcome 121 | 122 | #System Utilities for ALG Plasma 123 | konsole 124 | kate 125 | dolphin 126 | dolphin-plugins 127 | xdg-user-dirs 128 | spectacle 129 | ark 130 | gwenview 131 | filelight 132 | kcalc 133 | neofetch 134 | bluez-utils 135 | packagekit-qt5 136 | pipewire-pulse 137 | #pulseaudio-bluetooth 138 | 139 | #Installer 140 | grub 141 | calamares 142 | alg-theme-cala-config 143 | os-prober 144 | 145 | #Browser 146 | firefox 147 | alg-firefox-settings 148 | 149 | #Office 150 | okular 151 | 152 | #fonts 153 | ttf-ms-fonts 154 | ttf-roboto 155 | noto-fonts-cjk 156 | 157 | #printing 158 | cups 159 | 160 | #Video 161 | vlc 162 | 163 | #Icons 164 | tela-circle-icon 165 | mcmojave-cursors 166 | 167 | #AUR Helper 168 | paru 169 | 170 | #NVIDIA Drivers & Tools 171 | nvidia 172 | nvidia-utils 173 | nvidia-settings 174 | -------------------------------------------------------------------------------- /pacman.conf: -------------------------------------------------------------------------------- 1 | # 2 | # /etc/pacman.conf 3 | # 4 | # See the pacman.conf(5) manpage for option and repository directives 5 | 6 | # 7 | # GENERAL OPTIONS 8 | # 9 | [options] 10 | # The following paths are commented out with their default values listed. 11 | # If you wish to use different paths, uncomment and update the paths. 12 | #RootDir = / 13 | #DBPath = /var/lib/pacman/ 14 | #CacheDir = /var/cache/pacman/pkg/ 15 | #LogFile = /var/log/pacman.log 16 | #GPGDir = /etc/pacman.d/gnupg/ 17 | #HookDir = /etc/pacman.d/hooks/ 18 | HoldPkg = pacman glibc 19 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u 20 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u 21 | #CleanMethod = KeepInstalled 22 | Architecture = auto 23 | 24 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup 25 | #IgnorePkg = 26 | #IgnoreGroup = 27 | 28 | #NoUpgrade = 29 | #NoExtract = 30 | 31 | # Misc options 32 | #UseSyslog 33 | Color 34 | #NoProgressBar 35 | # We cannot check disk space from within a chroot environment 36 | #CheckSpace 37 | #VerbosePkgLists 38 | ParallelDownloads = 5 39 | 40 | # By default, pacman accepts packages signed by keys that its local keyring 41 | # trusts (see pacman-key and its man page), as well as unsigned packages. 42 | SigLevel = Required DatabaseOptional 43 | LocalFileSigLevel = Optional 44 | #RemoteFileSigLevel = Required 45 | 46 | # NOTE: You must run `pacman-key --init` before first using pacman; the local 47 | # keyring can then be populated with the keys of all official Arch Linux 48 | # packagers with `pacman-key --populate archlinux`. 49 | 50 | # 51 | # REPOSITORIES 52 | # - can be defined here or included from another file 53 | # - pacman will search repositories in the order defined here 54 | # - local/custom mirrors can be added here or in separate files 55 | # - repositories listed first will take precedence when packages 56 | # have identical names, regardless of version number 57 | # - URLs will have $repo replaced by the name of the current repo 58 | # - URLs will have $arch replaced by the name of the architecture 59 | # 60 | # Repository entries are of the format: 61 | # [repo-name] 62 | # Server = ServerName 63 | # Include = IncludePath 64 | # 65 | # The header [repo-name] is crucial - it must be present and 66 | # uncommented to enable the repo. 67 | # 68 | 69 | # The testing repositories are disabled by default. To enable, uncomment the 70 | # repo name header and Include lines. You can add preferred servers immediately 71 | # after the header, and they will be used before the default mirrors. 72 | 73 | #[core-testing] 74 | #Include = /etc/pacman.d/mirrorlist 75 | 76 | [core] 77 | Include = /etc/pacman.d/mirrorlist 78 | 79 | #[extra-testing] 80 | #Include = /etc/pacman.d/mirrorlist 81 | 82 | [extra] 83 | Include = /etc/pacman.d/mirrorlist 84 | 85 | # If you want to run 32 bit applications on your x86_64 system, 86 | # enable the multilib repositories as required here. 87 | 88 | #[multilib-testing] 89 | #Include = /etc/pacman.d/mirrorlist 90 | 91 | #[multilib] 92 | #Include = /etc/pacman.d/mirrorlist 93 | 94 | # An example of a custom package repository. See the pacman manpage for 95 | # tips on creating your own repositories. 96 | #[custom] 97 | #SigLevel = Optional TrustAll 98 | #Server = file:///home/custompkgs 99 | 100 | [alg-repo] 101 | SigLevel = Optional TrustedOnly 102 | Server = https://arch-linux-gui.github.io/$repo/$arch 103 | 104 | [alg-settings] 105 | SigLevel = Optional TrustedOnly 106 | Server = https://arch-linux-gui.github.io/$repo/$arch 107 | -------------------------------------------------------------------------------- /profiledef.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # shellcheck disable=SC2034 3 | 4 | iso_name="alg-plasma" 5 | iso_label="ALG_KDE_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)" 6 | iso_publisher="DemonKiller " 7 | iso_application="ALG Live/Rescue CD" 8 | iso_version="$(date +%Y.%m)" 9 | install_dir="arch" 10 | bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-ia32.grub.esp' 'uefi-x64.grub.esp' 'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito') 11 | arch="x86_64" 12 | pacman_conf="pacman.conf" 13 | airootfs_image_type="squashfs" 14 | airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '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-finalisation"]="0:0:755" 25 | ) 26 | -------------------------------------------------------------------------------- /services.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #set -e 3 | #================================================================================= 4 | #Author: DemonKiller 5 | #SPDX-License-Identifier: GPL-3.0 6 | #Warning! DO NOT RUN THIS SCRIPT BLINDLY. MAKE CHANGES ACCORDING TO YOUR WORKFLOW. 7 | #RUN AT YOUR OWN RISK. 8 | #================================================================================= 9 | 10 | cd .. 11 | cd makeiso/airootfs/etc/systemd/system/ 12 | tput setaf 2 13 | echo "Enabling SDDM and Graphical Target.." 14 | tput sgr0 15 | ln -sv /usr/lib/systemd/system/graphical.target default.target 16 | 17 | ln -sv /usr/lib/systemd/system/sddm.service display-manager.service 18 | 19 | tput setaf 2 20 | echo "Enabling Network Manager..." 21 | tput sgr0 22 | ln -sv /usr/lib/systemd/system/NetworkManager.service multi-user.target.wants/NetworkManager.service 23 | 24 | ln -sv /usr/lib/systemd/system/NetworkManager-wait-online.service network-online.target.wants/NetworkManager-wait-online.service 25 | 26 | ln -sv /usr/lib/systemd/system/NetworkManager-dispatcher.service dbus-org.freedesktop.nm-dispatcher.service 27 | 28 | tput setaf 2 29 | echo "Enabling Printing Services..." 30 | tput sgr0 31 | 32 | mkdir printer.target.wants 33 | ln -sv /usr/lib/systemd/system/cups.service printer.target.wants/cups.service 34 | 35 | ln -sv /usr/lib/systemd/system/cups.socket sockets.target.wants/cups.socket 36 | 37 | ln -sv /usr/lib/systemd/system/cups.path multi-user.target.wants/cups.path 38 | 39 | tput setaf 2 40 | echo "Enabling Bluetooth..." 41 | tput sgr0 42 | 43 | ln -sv /usr/lib/systemd/system/bluetooth.service dbus-org.bluez.service 44 | 45 | mkdir bluetooth.target.wants 46 | ln -sv /usr/lib/systemd/system/bluetooth.service bluetooth.target.wants/bluetooth.service 47 | -------------------------------------------------------------------------------- /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 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 11 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux.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 22 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux.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 33 | INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux.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 with open-source GPU drivers. 7 | Allows you to install Arch Linux or perform system maintenance with GUI. 8 | ENDTEXT 9 | MENU LABEL Arch Linux installer (x86_64, BIOS), FOSS GPU DRIVERS 10 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 11 | INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 12 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=free module_blacklist=nvidia,nvidia_modeset,nvidia_uvm,nvidia_drm nouveau.modeset=1 radeon.modeset=1 i915.modeset=1 copytoram=n nvme_load=yes 13 | 14 | LABEL arch64 non-free 15 | TEXT HELP 16 | Boot the Arch Linux installer on BIOS with LATEST NVIDIA, NO LEGACY 17 | Allows you to install Arch Linux or perform system maintenance with GUI. 18 | ENDTEXT 19 | MENU LABEL Arch Linux installer (x86_64, BIOS), LATEST NVIDIA DRIVERS ONLY 20 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 21 | INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 22 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=4G driver=nonfree nvidia nvidia-drm.modeset=1 nouveau.modeset=0 radeon.modeset=1 i915.modeset=1 copytoram=n nvme_load=yes 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/alg-plasma/1bd11781e73d87d9ed9fa6756af38bc37f1dd2f5/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 | --------------------------------------------------------------------------------