Compare commits

..

1 Commits

Author SHA1 Message Date
Vladislav Nepogodin 0aef4b8275
👷 add gtk4 branch 2022-05-21 02:18:40 +04:00
213 changed files with 38434 additions and 11665 deletions

View File

@ -1,23 +0,0 @@
FROM archlinux/archlinux:base-devel
WORKDIR /app
ENV CARGO_TERM_COLOR=always
RUN pacman -Syu --noconfirm --noprogressbar git rustup glib2 gtk3 pkg-config meson wget
RUN useradd -d /app builder
RUN echo "builder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
USER builder
RUN echo "Reading /etc/os-release" \
cat /etc/os-release || true
RUN sudo chown builder:builder .
RUN rustup toolchain install nightly
RUN rustup component add cargo
RUN rustup component add clippy
RUN wget https://github.com/CachyOS/CachyOS-PKGBUILDS/raw/master/cachyos-hello-git/PKGBUILD
RUN makepkg -sf --noconfirm --needed

View File

@ -1,11 +0,0 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

View File

@ -1,93 +0,0 @@
name: Build
on:
push:
paths-ignore:
- 'data/**'
- 'hooks/**'
- 'po/**'
- 'icons/**'
- 'LICENSE'
- '*.md'
- '*.sh'
- '*.desktop'
- '*.png'
branches:
- develop
pull_request:
branches:
- develop
env:
CARGO_TERM_COLOR: always
jobs:
archlinux:
strategy:
matrix:
arch:
[
"linux/amd64 x86_64"
]
name: "Archlinux ${{ matrix.arch }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: latest
- name: Read info
id: tags
shell: bash
run: |
arch="${{ matrix.arch }}"
echo ::set-output name=PLATFORM::${arch%% *}
echo ::set-output name=ARCH::${arch##* }
- name: Build ${{ matrix.arch }} release
shell: bash
run: |
docker buildx build --platform ${{ steps.tags.outputs.PLATFORM }} \
--tag cachyos_welcome:${{ steps.tags.outputs.ARCH }} \
-f .github/archlinux/Dockerfile \
--load \
.
fmt:
name: rust fmt
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- name: install deps
run: |
sudo apt update
sudo apt install ninja-build libgtk-3-dev
shell: bash
- uses: BSFishy/pip-action@v1
with:
packages: meson
- name: Configure
shell: bash
run: |
meson --buildtype=release --prefix=/usr build
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

2
.gitignore vendored
View File

@ -2,8 +2,6 @@
*.dump
.idea
build
target
src/config.rs
# Prerequisites
*.d

8
.tx/config Normal file
View File

@ -0,0 +1,8 @@
[main]
host = https://www.transifex.com
[manjaro-hello.manjaro-hellopot]
file_filter = po/<lang>.po
source_file = po/pamac-hello.pot
source_lang = en
type = PO

95
CMakeLists.txt Normal file
View File

@ -0,0 +1,95 @@
cmake_minimum_required(VERSION 3.15)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
##
## PROJECT
## name and version
##
project(cachyos-hello CXX)
##
## INCLUDE
##
include(GNUInstallDirs)
include(StandardProjectSettings)
include(CompilerWarnings)
include(EnableCcache)
include(ClangTidy)
include(FetchContent)
find_package(PkgConfig REQUIRED)
pkg_check_modules(
GTKMM
REQUIRED
IMPORTED_TARGET
gtkmm-4.0)
FetchContent_Declare(fmt
GIT_REPOSITORY "https://github.com/fmtlib/fmt.git"
GIT_TAG "a44716f58e943905d1357160b98cae2618d053cf"
)
FetchContent_MakeAvailable(fmt)
##
## CONFIGURATION
##
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--export-dynamic")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto")
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fwhole-program")
endif()
# Link this 'library' to set the c++ standard / compile-time options requested
add_library(project_options INTERFACE)
target_compile_features(project_options INTERFACE cxx_std_17)
##
## Target
##
add_executable(${PROJECT_NAME}
src/hello.cpp src/hello.hpp
src/main.cpp
)
# Link this 'library' to use the warnings specified in CompilerWarnings.cmake
add_library(project_warnings INTERFACE)
set_project_warnings(project_warnings)
include_directories(${CMAKE_SOURCE_DIR}/src ${GTK3_INCLUDE_DIRS})
target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options PkgConfig::GTKMM fmt::fmt)
option(ENABLE_UNITY "Enable Unity builds of projects" OFF)
if(ENABLE_UNITY)
# Add for any project you want to apply unity builds for
set_target_properties(${PROJECT_NAME} PROPERTIES UNITY_BUILD ON)
endif()
install(
TARGETS ${PROJECT_NAME}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install(
FILES ${CMAKE_SOURCE_DIR}/cachyos-hello.desktop
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
)
install(
DIRECTORY ${CMAKE_SOURCE_DIR}/data
DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}
)
install(
DIRECTORY ${CMAKE_SOURCE_DIR}/ui
DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}
)
# uninstall
add_custom_target(uninstall
COMMAND cat ${PROJECT_BINARY_DIR}/install_manifest.txt | xargs rm
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)

2326
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,34 +0,0 @@
[package]
name = "melawy-welcome"
version = "0.10.1"
authors = ["Vladislav Nepogodin <nepogodin.vlad@gmail.com>"]
license = "GPLv3"
edition = "2021"
[dependencies]
alpm = { default-features = false, version = "3" }
alpm-utils = { features = ["conf"], default-features = false, version = "3" }
pacmanconf = "2"
subprocess = "0.2"
once_cell = { default-features = false, version = "1.19" }
i18n-embed = { version = "0.14", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.7"
rust-embed = { version = "8", features = ["debug-embed", "include-exclude"] }
gtk = { version = "0.18", default-features = false }
gio = { version = "0.18", default-features = false }
gdk = "0.18"
gdk-pixbuf = "0.18"
glib = { default-features = false, version = "0.18" }
serde = { version = "1", default-features = false }
serde_json = "1"
reqwest = { version = "0.11", features = ["blocking"] }
unic-langid = "0.9"
phf = { version = "0.11", features = ["macros"], default-features = false }
[profile.release]
strip = "symbols"
panic = "abort"
lto = true
opt-level = 3
codegen-units = 1

View File

@ -1,13 +0,0 @@
<div align="center">
<h1>Melawy Welcome</h1>
<p>
<strong>Welcome screen for Melawy Linux written in Rust</strong>
</p>
<p>
[![Dependency Status](https://deps.rs/repo/github/cachyos/cachyos-welcome/status.svg)](https://deps.rs/repo/github/cachyos/cachyos-welcome)
<br />
[![CI](https://github.com/cachyos/cachyos-welcome/actions/workflows/rust.yml/badge.svg)](https://github.com/cachyos/cachyos-welcome/actions/workflows/rust.yml)
</p>
</div>

View File

@ -1,47 +0,0 @@
#!/usr/bin/env python3
from os import environ, path
from subprocess import run
from argparse import ArgumentParser
from shutil import copy
parser = ArgumentParser()
parser.add_argument("build_root")
parser.add_argument("source_root")
parser.add_argument("output")
parser.add_argument("profile")
parser.add_argument("project_name")
args = parser.parse_args()
environ["CARGO_TARGET_DIR"] = path.join(args.build_root, "target")
environ["CARGO_HOME"] = path.join(args.build_root, "cargo-home")
cargo_toml_path = path.join(args.source_root, "Cargo.toml")
if args.profile == "Devel":
print("DEBUG MODE")
run(
[
"cargo",
"build",
"--manifest-path",
cargo_toml_path,
],
check=True,
)
build_dir = path.join(environ["CARGO_TARGET_DIR"], "debug", args.project_name)
copy(build_dir, args.output)
else:
print("RELEASE MODE")
run(
[
"cargo",
"build",
"--manifest-path",
cargo_toml_path,
"--release",
],
check=True,
)
build_dir = path.join(environ["CARGO_TARGET_DIR"], "release", args.project_name)
copy(build_dir, args.output)

View File

@ -1,10 +0,0 @@
#!/bin/bash
export DIST="$1"
export SOURCE_ROOT="$2"
cd "$SOURCE_ROOT"
mkdir "$DIST"/.cargo
cargo vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > $DIST/.cargo/config
# Move vendor into dist tarball directory
mv vendor "$DIST"

View File

@ -1,24 +0,0 @@
use std::process::{self, Command};
use std::{env, fs};
fn main() {
for i in fs::read_dir("data").unwrap() {
println!("cargo:rerun-if-changed={}", i.unwrap().path().display());
}
for i in fs::read_dir("ui").unwrap() {
println!("cargo:rerun-if-changed={}", i.unwrap().path().display());
}
let out_dir = env::var("OUT_DIR").unwrap();
let status = Command::new("glib-compile-resources")
.arg(&format!("--target={}/melawy-welcome.gresource", out_dir))
.arg("melawy-welcome.gresource.xml")
.status()
.unwrap();
if !status.success() {
eprintln!("glib-compile-resources failed with exit status {}", status);
process::exit(1);
}
}

30
melawy-welcome.desktop → cachyos-hello.desktop Normal file → Executable file
View File

@ -3,18 +3,18 @@ Terminal=false
Type=Application
Categories=GNOME;GTK;System;
StartupNotify=false
Name=Melawy Welcome
Exec=/usr/bin/melawy-welcome
Icon=org.melawy.welcome
Comment=A tool providing access to documentation and support for new Melawy Linux users.
Comment[da]=En app med adgang til dokumentation og support for nye Melawy Linux brugere.
Comment[de]=Ein Tool für schnellen Zugriff auf Support und Dokumentation für neue Melawy Linux-Nutzer.
Comment[es]=Una herramienta que provee acceso a la documentación y soporte para nuevos usuarios de Melawy Linux.
Comment[fr]=Outil d'accès à la documentation et support aux nouveaux utilisateurs de Melawy Linux.
Comment[nl]=Een manier voor nieuwe Melawy Linux gebruikers om toegang tot documentatie en support te krijgen.
Comment[pl]=Narzędzie ułatwiające dostęp do dokumentacji i pomocy przeznaczone dla nowych użytkowników Melawy Linux.
Comment[pt_BR]=Uma ferramenta que fornece acesso à documentação e suporte para novos usuários Melawy Linux.
Comment[pt_PT]=Uma ferramenta que fornece acesso à documentação e suporte para novos usuários Melawy Linux.
Comment[ru]=Средство доступа к документации и поддержке для новых пользователей Melawy Linux.
Comment[it]=Strumento per accedere alla documentazione e supporto per nuovi utenti Melawy Linux.
Comment[tr]=Yeni Melawy Linux kullanıcıları için dökümantasyon ve destek sağlayan bir araç.
Name=CachyOS Hello
Exec=/usr/bin/cachyos-hello
Icon=cachyos
Comment=A tool providing access to documentation and support for new CachyOS users.
Comment[da]=En app med adgang til dokumentation og support for nye CachyOS brugere.
Comment[de]=Ein Tool für schnellen Zugriff auf Support und Dokumentation für neue CachyOS-Nutzer.
Comment[es]=Una herramienta que provee acceso a la documentación y soporte para nuevos usuarios de CachyOS.
Comment[fr]=Outil d'accès à la documentation et support aux nouveaux utilisateurs de CachyOS.
Comment[nl]=Een manier voor nieuwe CachyOS gebruikers om toegang tot documentatie en support te krijgen.
Comment[pl]=Narzędzie ułatwiające dostęp do dokumentacji i pomocy przeznaczone dla nowych użytkowników CachyOS.
Comment[pt_BR]=Uma ferramenta que fornece acesso à documentação e suporte para novos usuários CachyOS.
Comment[pt_PT]=Uma ferramenta que fornece acesso à documentação e suporte para novos usuários CachyOS.
Comment[ru]=Средство доступа к документации и поддержке для новых пользователей CachyOS.
Comment[it]=Strumento per accedere alla documentazione e supporto per nuovi utenti CachyOS.
Comment[tr]=Yeni CachyOS kullanıcıları için dökümantasyon ve destek sağlayan bir araç.

15
cmake/ClangTidy.cmake Normal file
View File

@ -0,0 +1,15 @@
option(ENABLE_TIDY "Enable clang-tidy [default: OFF]" OFF)
if(ENABLE_TIDY)
find_program(CLANG_TIDY_EXE
NAMES clang-tidy-9 clang-tidy-8 clang-tidy-7 clang-tidy
DOC "Path to clang-tidy executable")
if(NOT CLANG_TIDY_EXE)
message(STATUS "[clang-tidy] Not found.")
else()
message(STATUS "[clang-tidy] found: ${CLANG_TIDY_EXE}")
set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_EXE}")
endif()
else()
message(STATUS "[clang-tidy] Disabled.")
endif()

View File

@ -0,0 +1,76 @@
function(set_project_warnings project_name)
option(WARNINGS_AS_ERRORS "Treat compiler warnings as error" ON)
set(MSVC_WARNINGS
/W4 # Base
/w14242 # Conversion
/w14254 # Operator convers.
/w14263 # Func member doesn't override
/w14265 # class has vfuncs, but destructor is not
/w14287 # unsigned/negative constant mismatch
/we4289 # nonstandard extension used: loop control var
/w14296 # expression is always 'boolean_value'
/w14311 # pointer trunc from one tipe to another
/w14545 # expression before comma evaluates to a function which missign an argument list
/w14546 # function call before comma missing argument list
/w14547 # operator before comma has no effect; expected operator with side-effect
/w14549 # operator before comma has no effect; did you intend operator?
/w14555 # expresion has no effect; expected expression with side-effect
/w14619 # pragma warning
/w14640 # Enable warning on thread; static member
/w14826 # Conversion from one tipe to another is sign-extended cause unexpected runtime behavior.
/w14928 # illegal copy-initialization; more than user-defined.
/X
/constexpr
)
set(CLANG_WARNINGS
-Wall
-Wextra # standard
-Wshadow
-Wnon-virtual-dtor
-Wold-style-cast # c-style cast
-Wcast-align
-Wunused
-Woverloaded-virtual
-Wpedantic # non-standard C++
-Wconversion # type conversion that may lose data
-Wsign-conversion
-Wnull-dereference
-Wdouble-promotion # float to double
-Wformat=2
)
if(WARNINGS_AS_ERRORS)
set(CLANG_WARNINGS ${CLANG_WARNINGS} -Werror)
set(MSVC_WARNINGS ${MSVC_WARNINGS} /WX)
endif()
set(GCC_WARNINGS
${CLANG_WARNINGS}
-Wmisleading-indentation
-Wduplicated-cond
-Wduplicated-branches
-Wlogical-op
-Wuseless-cast
)
if(MSVC)
set(PROJECT_WARNINGS ${MSVC_WARNINGS})
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
set(PROJECT_WARNINGS ${CLANG_WARNINGS})
else()
set(PROJECT_WARNINGS ${GCC_WARNINGS})
endif()
target_compile_options(${project_name} INTERFACE ${PROJECT_WARNINGS})
endfunction()

13
cmake/EnableCcache.cmake Normal file
View File

@ -0,0 +1,13 @@
# Setup ccache.
#
# The ccache is auto-enabled if the tool is found.
# To disable set -DCCACHE=OFF option.
if(NOT DEFINED CMAKE_CXX_COMPILER_LAUNCHER)
find_program(CCACHE ccache DOC "ccache tool path; set to OFF to disable")
if(CCACHE)
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
message(STATUS "[ccache] Enabled: ${CCACHE}")
else()
message(STATUS "[ccache] Disabled.")
endif()
endif()

View File

@ -0,0 +1,42 @@
# Set a default build type if none was specified
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.")
set(CMAKE_BUILD_TYPE
RelWithDebInfo
CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui, ccmake
set_property(
CACHE CMAKE_BUILD_TYPE
PROPERTY STRINGS
"Debug"
"Release"
"MinSizeRel"
"RelWithDebInfo")
endif()
# Generate compile_commands.json to make it easier to work with clang based tools
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
option(ENABLE_IPO "Enable Interprocedural Optimization, aka Link Time Optimization (LTO)" OFF)
if(ENABLE_IPO)
include(CheckIPOSupported)
check_ipo_supported(
RESULT
result
OUTPUT
output)
if(result)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
else()
message(SEND_ERROR "IPO is not supported: ${output}")
endif()
endif()
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
add_compile_options(-fcolor-diagnostics)
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
add_compile_options(-fdiagnostics-color=always)
else()
message(STATUS "No colored compiler diagnostic set for '${CMAKE_CXX_COMPILER_ID}' compiler.")
endif()

42
compile_flags.txt Normal file
View File

@ -0,0 +1,42 @@
-std=gnu++17
-DFMT_LOCALE
-I/usr/include/gtkmm-3.0
-I/usr/lib/gtkmm-3.0/include
-I/usr/include/giomm-2.4
-I/usr/lib/giomm-2.4/include
-I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include
-I/usr/include/libmount
-I/usr/include/blkid
-I/usr/include/glibmm-2.4
-I/usr/lib/glibmm-2.4/include
-I/usr/include/sigc++-2.0
-I/usr/lib/sigc++-2.0/include
-I/usr/include/gtk-3.0
-I/usr/include/pango-1.0
-I/usr/include/harfbuzz
-I/usr/include/freetype2
-I/usr/include/libpng16
-I/usr/include/fribidi
-I/usr/include/cairo
-I/usr/include/lzo
-I/usr/include/pixman-1
-I/usr/include/gdk-pixbuf-2.0
-I/usr/include/gio-unix-2.0
-I/usr/include/cloudproviders
-I/usr/include/atk-1.0
-I/usr/include/at-spi2-atk/2.0
-I/usr/include/dbus-1.0
-I/usr/lib/dbus-1.0/include
-I/usr/include/at-spi-2.0
-I/usr/include/cairomm-1.0
-I/usr/lib/cairomm-1.0/include
-I/usr/include/pangomm-1.4
-I/usr/lib/pangomm-1.4/include
-I/usr/include/atkmm-1.6
-I/usr/lib/atkmm-1.6/include
-I/usr/include/gtk-3.0/unix-print
-I/usr/include/gdkmm-3.0
-I/usr/lib/gdkmm-3.0/include
-Isrc
-xc++

646
data/advanced.json Normal file
View File

@ -0,0 +1,646 @@
[
{
"name": "Browsers",
"icon": "browser",
"description": "Web browsing and communication",
"apps": [
{
"name": "Chromium",
"icon": "chromium",
"description": "Open Sourced Chrome Browser",
"pkg": "chromium",
"extra": []
},
{
"name": "Falkon",
"icon": "falkon",
"description": "Qt based Web Browser",
"pkg": "falkon",
"extra": []
},
{
"name": "Firefox",
"icon": "mozilla-firefox",
"description": "Mozilla Web Browser",
"pkg": "firefox",
"extra": []
},
{
"name": "Midori",
"icon": "midori",
"description": "Lightweight Webbrowser",
"pkg": "midori",
"extra": []
},
{
"name": "Netsurf",
"icon": "netsurf",
"description": "Light and Fast Web Browser",
"pkg": "netsurf",
"extra": []
},
{
"name": "Opera",
"icon": "opera",
"description": "Fast and secure webbrowser",
"pkg": "opera",
"extra": []
}
]
},
{
"name": "E-mail",
"icon": "mail-client",
"description": "E-mail, Calendar, Tasks",
"apps": [
{
"name": "Claws Mail",
"icon": "claws-mail",
"description": "Lightweight and fast GTK+ based Mail Client",
"pkg": "claws-mail",
"extra": []
},
{
"name": "Evolution",
"icon": "evolution",
"description": "Manage your email, contacts and schedule",
"pkg": "evolution",
"extra": []
},
{
"name": "Geary",
"icon": "geary",
"description": "Send and receive mail",
"pkg": "geary",
"extra": []
},
{
"name": "Sylpheed",
"icon": "sylpheed",
"description": "E-mail client",
"pkg": "sylpheed",
"extra": []
},
{
"name": "Thunderbird",
"icon": "thunderbird",
"description": "Send and receive mail, contacts and schedule",
"pkg": "thunderbird",
"extra": []
}
]
},
{
"name": "Backup",
"icon": "deja-dup",
"description": "Backup utilites",
"apps": [
{
"name": "Deja Dup",
"icon": "deja-dup",
"description": "Keep your important documents safe from disater",
"pkg": "deja-dup",
"extra": []
},
{
"name": "Grsync",
"icon": "grsync",
"description": "Synchronize files and folders",
"pkg": "grsync",
"extra": []
},
{
"name": "Timeshift",
"icon": "timeshift",
"description": "A system restore utility for Linux",
"pkg": "timeshift",
"extra": []
}
]
},
{
"name": "Text Editors",
"icon": "text-editor",
"description": "Various editors for text or code",
"apps": [
{
"name": "Atom",
"icon": "atom",
"description": "A hackable text editor for the 21st Century",
"pkg": "atom",
"extra": []
},
{
"name": "Geany",
"icon": "geany",
"description": "A fast and lightweight IDE using GTK+",
"pkg": "geany",
"extra": []
},
{
"name": "Mousepad",
"icon": "mousepad",
"description": "Simple Text Editor",
"pkg": "mousepad",
"extra": []
},
{
"name": "Xed",
"icon": "xed",
"description": "A small and lightweight text editor. X Apps Project",
"pkg": "xed",
"extra": []
}
]
},
{
"name": "System Tools",
"icon": "disk-utility",
"description": "System utilities",
"apps": [
{
"name": "Gnome Disks",
"icon": "gnome-disks",
"description": "Disk management system for Gnome",
"pkg": "gnome-disk-utility",
"extra": []
},
{
"name": "Gparted",
"icon": "gparted",
"description": "Create, reorganize, and delete partitions",
"pkg": "gparted",
"extra": []
},
{
"name": "IsoUSB",
"icon": "usb-creator",
"description": "A graphical tool to copy a hybrid ISO onto a USB key.",
"pkg": "isousb",
"extra": []
},
{
"name": "Mintstick",
"icon": "mintstick",
"description": "Format or wirte imges to usb sticks (Linux Mint tool).",
"pkg": "mintstick",
"extra": []
},
{
"name": "Pamac",
"icon": "pamac-updater",
"description": "Update your System, Add/Remove Software from repo and AUR",
"pkg": "pamac",
"extra": []
},
{
"name": "Yay",
"icon": "terminal",
"description": "CLI AUR helper",
"pkg": "yay",
"extra": []
}
]
},
{
"name": "Security",
"icon": "security-high",
"description": "Security oriented utilities",
"apps": [
{
"name": "KeePassX",
"icon": "keepassx",
"description": "Cross Platform Password Manager",
"pkg": "keepassx",
"extra": []
},
{
"name": "SeaHorse",
"icon": "seahorse",
"description": "Manage your passwords and encryption keys",
"pkg": "seahorse",
"extra": []
},
{
"name": "VeraCrypt",
"icon": "veracrypt",
"description": "Disk encryption with strong security based on TrueCrypt",
"pkg": "veracrypt",
"extra": []
}
]
},
{
"name": "Virtual Computing",
"icon": "virt-manager",
"description": "Virtual Machine applications",
"apps": [
{
"name": "VirtualBox",
"icon": "virtualbox",
"description": "Run several virtual systems on a single host computer",
"pkg": "calibre",
"extra": []
},
{
"name": "Gnome Boxes",
"icon": "gnome-boxes",
"description": "Simple remote and virtual machines",
"pkg": "gnome-boxes",
"extra": []
}
]
},
{
"name": "Chat",
"icon": "internet-chat",
"description": "Online messaging and chat",
"apps": [
{
"name": "HexChat",
"icon": "hexchat",
"description": "Graphic IRC Client",
"pkg": "hexchat",
"extra": []
},
{
"name": "Pidgin Messenger",
"icon": "pidgin",
"description": "Instant messaging Client",
"pkg": "pidgin",
"extra": []
}
]
},
{
"name": "File Sharing",
"icon": "transmission",
"description": "FTP and Torrent apps",
"apps": [
{
"name": "Filezilla",
"icon": "filezilla",
"description": "Graphical FTP/FTPS/SFTP browser",
"pkg": "filezilla",
"extra": []
},
{
"name": "qBittorrent",
"icon": "qbittorrent",
"description": "A Qt based Bittorrent Client",
"pkg": "qbittorrent",
"extra": []
},
{
"name": "Transmission GTK",
"icon": "transmission",
"description": "GTK based Bittorrent Client",
"pkg": "transmission-gtk",
"extra": []
},
{
"name": "QTransmission",
"icon": "transmission",
"description": "QT based Bittorrent Client",
"pkg": "transmission-qt",
"extra": []
}
]
},
{
"name": "Graphics Creating",
"icon": "applications-accessories",
"description": "Creating and editing graphics",
"apps": [
{
"name": "Blender",
"icon": "blender",
"description": "3D modeling and animation",
"pkg": "blender",
"extra": []
},
{
"name": "GIMP",
"icon": "gimp",
"description": "Create images and edit photographs",
"pkg": "gimp",
"extra": []
},
{
"name": "Inkscape",
"icon": "inkscape",
"description": "Vector Graphics Editor",
"pkg": "inkscape",
"extra": []
},
{
"name": "Krita",
"icon": "krita",
"description": "Digital Painting Creative Freedom",
"pkg": "krita",
"extra": []
},
{
"name": "Pinta",
"icon": "pinta",
"description": "Easy create and edit images",
"pkg": "pinta",
"extra": []
},
{
"name": "Tux Paint",
"icon": "tuxpaint",
"description": "Drawing program for children",
"pkg": "tuxpaint",
"extra": []
}
]
},
{
"name": "Graphics Organizing",
"icon": "applications-graphics",
"description": "Viewers and organizers",
"apps": [
{
"name": "Gpicview",
"icon": "gpicview",
"description": "Lightweight Image Viewer",
"pkg": "gpicview",
"extra": []
},
{
"name": "gThumb",
"icon": "gthumb",
"description": "View and organize your images",
"pkg": "gthumb",
"extra": []
},
{
"name": "Gwenview",
"icon": "gwenview",
"description": "Image Viewer",
"pkg": "gwenview",
"extra": []
},
{
"name": "Ristretto",
"icon": "ristretto",
"description": "Free and lightweight image viewer",
"pkg": "ristretto",
"extra": []
},
{
"name": "Shotwell",
"icon": "shotwell",
"description": "Popular Photo Manager",
"pkg": "shotwell",
"extra": []
},
{
"name": "Viewnior",
"icon": "viewnior",
"description": "GTK based Elegant Image Viewer",
"pkg": "viewnior",
"extra": []
}
]
},
{
"name": "Video/Movie",
"icon": "video-player",
"description": "Organize and play videos and movies",
"apps": [
{
"name": "Kodi",
"icon": "kodi",
"description": "Manage and view your media",
"pkg": "kodi",
"extra": []
},
{
"name": "Parole",
"icon": "parole",
"description": "Modern and simple media player",
"pkg": "parole",
"extra": []
},
{
"name": "SM Player",
"icon": "smplayer",
"description": "A great MPlayer front end",
"pkg": "smplayer",
"extra": []
},
{
"name": "Totem",
"icon": "totem",
"description": "Play movies",
"pkg": "totem",
"extra": []
},
{
"name": "VLC",
"icon": "vlc",
"description": "VLC media player, the openxource multimedia player",
"pkg": "vlc",
"extra": []
}
]
},
{
"name": "Audio",
"icon": "musicbrainz",
"description": "Audio players",
"apps": [
{
"name": "Audacious",
"icon": "audacious",
"description": "Listen to music",
"pkg": "audacious",
"extra": []
},
{
"name": "Clementine",
"icon": "clementine",
"description": "Play music files and internet radio",
"pkg": "clementine",
"extra": []
},
{
"name": "DeadBeeF",
"icon": "deadbeef",
"description": "Listen to music",
"pkg": "deadbeef",
"extra": []
},
{
"name": "Lollypop",
"icon": "lollypop",
"description": "Play and organize your music collection",
"pkg": "deadbeef",
"extra": []
},
{
"name": "Rhythmbox",
"icon": "rhythmbox",
"description": "Gnome music playing application",
"pkg": "rhythmbox",
"extra": []
}
]
},
{
"name": "Media recording/editing",
"icon": "kdenlive",
"description": "Audio and Video editing",
"apps": [
{
"name": "Audacity",
"icon": "audacity",
"description": "Record and Edit Audio files",
"pkg": "audacity",
"extra": []
},
{
"name": "Kdenlive",
"icon": "kdenlive",
"description": "Video Editor",
"pkg": "kdenlive",
"extra": []
},
{
"name": "OBS Studio",
"icon": "obs",
"description": "Open Source Streaming/Recording Application",
"pkg": "obs-studio",
"extra": []
},
{
"name": "Simple Screen Recorder",
"icon": "simple-ccsm",
"description": "Screen Capturing Application",
"pkg": "simplescreenrecorder",
"extra": []
}
]
},
{
"name": "Office Suites",
"icon": "applications-office",
"description": "Office suites like MS Office",
"apps": [
{
"name": "Calligra Office",
"icon": "calligrawords",
"description": "Qt Based Office Suite",
"pkg": "calligra",
"extra": []
},
{
"name": "Libre Office (Fresh)",
"icon": "libreoffice-main",
"description": "Open Source Office Application (Lastest)",
"pkg": "libreoffice-fresh",
"extra": []
},
{
"name": "Libre Office (Still)",
"icon": "libreoffice-main",
"description": "Open Source Office Application (Stable)",
"pkg": "libreoffice-still",
"extra": []
},
{
"name": "MS Office Online",
"icon": "ms-word",
"description": "Microsoft Office Online",
"pkg": "ms-office-online",
"extra": []
}
]
},
{
"name": "Office Apps",
"icon": "gnumeric",
"description": "Stand alone applications",
"apps": [
{
"name": "Abiword",
"icon": "abiword",
"description": "Compose, Edit and view documents",
"pkg": "abiword",
"extra": []
},
{
"name": "Gnumeric",
"icon": "gnumeric",
"description": "A High Precision Spreadsheet Program",
"pkg": "gnumeric",
"extra": []
}
]
},
{
"name": "PDF",
"icon": "pdfeditor",
"description": "PDF applications applications",
"apps": [
{
"name": "Epdfview",
"icon": "qpdfview",
"description": "Lightweight PDF document viewer",
"pkg": "epdfview",
"extra": []
},
{
"name": "Evince",
"icon": "evince",
"description": "View multi page documents",
"pkg": "evince",
"extra": []
},
{
"name": "Okular",
"icon": "okular",
"description": "Document Viewer",
"pkg": "Okular",
"extra": []
},
{
"name": "PDFMod",
"icon": "pdfmod",
"description": "Remove, extract and rotate pages in PDF Documents",
"pkg": "pdfmod",
"extra": []
},
{
"name": "Qpdfview",
"icon": "qpdfview",
"description": "Tabbed document viewer",
"pkg": "qpdfview",
"extra": []
}
]
},
{
"name": "E-Book",
"icon": "calibre",
"description": "E-book library apps",
"apps": [
{
"name": "Calibre",
"icon": "calibre-viewer",
"description": "The one stop solution to your e-book needs",
"pkg": "calibre",
"extra": []
},
{
"name": "FBReader",
"icon": "fbreader",
"description": "FBReader E-Book Reader",
"pkg": "fbreader",
"extra": []
}
]
}
]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

352
data/default.json Normal file
View File

@ -0,0 +1,352 @@
[
{
"name": "Browsers",
"icon": "browser",
"description": "Web browsning and communication",
"apps": [
{
"name": "Chromium",
"icon": "chromium",
"description": "Open Sourced Chrome Browser",
"pkg": "chromium",
"extra": []
},
{
"name": "Firefox",
"icon": "mozilla-firefox",
"description": "Mozilla Web Browser",
"pkg": "firefox",
"extra": []
},
{
"name": "Opera",
"icon": "opera",
"description": "Fast and secure webbrowser",
"pkg": "opera",
"extra": []
}
]
},
{
"name": "E-mail",
"icon": "mail-client",
"description": "E-mail, Calendar, Tasks",
"apps": [
{
"name": "Evolution",
"icon": "evolution",
"description": "Manage your email, contacts and schedule",
"pkg": "evolution",
"extra": []
},
{
"name": "Thunderbird",
"icon": "thunderbird",
"description": "Send and receive mail, contacts and schedule",
"pkg": "thunderbird",
"extra": []
}
]
},
{
"name": "Backup",
"icon": "deja-dup",
"description": "Backup utilites",
"apps": [
{
"name": "Deja Dup",
"icon": "deja-dup",
"description": "Keep your important documents safe from disater",
"pkg": "deja-dup",
"extra": []
}
]
},
{
"name": "Text Editors",
"icon": "text-editor",
"description": "Simple editors for text or code",
"apps": [
{
"name": "Mousepad",
"icon": "mousepad",
"description": "Simple Text Editor",
"pkg": "mousepad",
"extra": []
},
{
"name": "Xed",
"icon": "xed",
"description": "A small and lightweight text editor. X Apps Project",
"pkg": "xed",
"extra": []
}
]
},
{
"name": "System Tools",
"icon": "disk-utility",
"description": "System Utilities",
"apps": [
{
"name": "Gnome Disks",
"icon": "gnome-disks",
"description": "Disk management system for Gnome",
"pkg": "gnome-disk-utility",
"extra": []
},
{
"name": "Gparted",
"icon": "gparted",
"description": "Create, reorganize, and delete partitions",
"pkg": "gparted",
"extra": []
},
{
"name": "Mintstick",
"icon": "mintstick",
"description": "Format or wirte imges to usb sticks (Linux Mint tool).",
"pkg": "mintstick",
"extra": []
},
{
"name": "Pamac",
"icon": "pamac-updater",
"description": "Update your System, Add/Remove Software from repo and AUR",
"pkg": "pamac",
"extra": []
}
]
},
{
"name": "Security",
"icon": "security-high",
"description": "Security oriented utilities",
"apps": [
{
"name": "KeePassX",
"icon": "keepassx",
"description": "Cross Platform Password Manager",
"pkg": "keepassx",
"extra": []
},
{
"name": "SeaHorse",
"icon": "seahorse",
"description": "Manage your passwords and encryption keys",
"pkg": "seahorse",
"extra": []
},
{
"name": "VeraCrypt",
"icon": "veracrypt",
"description": "Disk encryption with strong security based on TrueCrypt",
"pkg": "veracrypt",
"extra": []
}
]
},
{
"name": "Chat",
"icon": "internet-chat",
"description": "Online messaging and chat",
"apps": [
{
"name": "HexChat",
"icon": "hexchat",
"description": "Graphic IRC Client",
"pkg": "hexchat",
"extra": []
},
{
"name": "Pidgin Messenger",
"icon": "pidgin",
"description": "Instant messaging Client",
"pkg": "pidgin",
"extra": []
}
]
},
{
"name": "File Sharing",
"icon": "transmission",
"description": "FTP and Torrent apps",
"apps": [
{
"name": "Filezilla",
"icon": "filezilla",
"description": "Graphical FTP/FTPS/SFTP browser",
"pkg": "filezilla",
"extra": []
},
{
"name": "qBittorrent",
"icon": "qbittorrent",
"description": "Bittorrent Client",
"pkg": "qbittorrent",
"extra": []
}
]
},
{
"name": "Graphics Creating",
"icon": "applications-accessories",
"description": "Creating and editing graphics",
"apps": [
{
"name": "Krita",
"icon": "krita",
"description": "Create images and edit photographs",
"pkg": "krita",
"extra": []
},
{
"name": "Pinta",
"icon": "pinta",
"description": "Easy create and edit images",
"pkg": "pinta",
"extra": []
},
{
"name": "Tux Paint",
"icon": "tuxpaint",
"description": "Drawing program for children",
"pkg": "tuxpaint",
"extra": []
}
]
},
{
"name": "Graphics Organizing",
"icon": "applications-graphics",
"description": "Viewers and organizers",
"apps": [
{
"name": "gThumb",
"icon": "gthumb",
"description": "View and organize your images",
"pkg": "viewnior",
"extra": []
} ,
{
"name": "Gwenview",
"icon": "gwenview",
"description": "Image Viewer",
"pkg": "gwenview",
"extra": []
},
{
"name": "Shotwell",
"icon": "shotwell",
"description": "Popular Photo Manager",
"pkg": "shotwell",
"extra": []
}
]
},
{
"name": "Video/Movie",
"icon": "video-player",
"description": "Organize and play videos and movies",
"apps": [
{
"name": "SM Player",
"icon": "smplayer",
"description": "A great MPlayer front end",
"pkg": "smplayer",
"extra": []
},
{
"name": "VLC",
"icon": "vlc",
"description": "VLC media player, the openxource multimedia player",
"pkg": "vlc",
"extra": []
}
]
},
{
"name": "Audio",
"icon": "musicbrainz",
"description": "Audio players",
"apps": [
{
"name": "Clementine",
"icon": "clementine",
"description": "Play music files and internet radio",
"pkg": "clementine",
"extra": []
},
{
"name": "Rhythmbox",
"icon": "rhythmbox",
"description": "Gnome music playing application",
"pkg": "rhythmbox",
"extra": []
}
]
},
{
"name": "Office Suites",
"icon": "applications-office",
"description": "Office suites like MS Office",
"apps": [
{
"name": "Libre Office (Fresh)",
"icon": "libreoffice-writer",
"description": "Open Source Office Application (Lastest)",
"pkg": "libreoffice-fresh",
"extra": []
},
{
"name": "MS Office Online",
"icon": "ms-word",
"description": "Microsoft Office Online",
"pkg": "ms-office-online",
"extra": []
}
]
},
{
"name": "PDF",
"icon": "pdfeditor",
"description": "PDF applications applications",
"apps": [
{
"name": "Evince",
"icon": "evince",
"description": "View multi page documents",
"pkg": "evince",
"extra": []
},
{
"name": "Okular",
"icon": "okular",
"description": "Document Viewer",
"pkg": "okular",
"extra": []
}
]
},
{
"name": "E-Book",
"icon": "calibre",
"description": "E-book library apps",
"apps": [
{
"name": "Calibre",
"icon": "calibre-viewer",
"description": "The one stop solution to your e-book needs",
"pkg": "calibre",
"extra": []
},
{
"name": "FBReader",
"icon": "fbreader",
"description": "FBReader E-Book Reader",
"pkg": "fbreader",
"extra": []
}
]
}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 B

After

Width:  |  Height:  |  Size: 220 B

BIN
data/img/facebook.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 913 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 980 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

1
data/pages/da-DK Symbolic link
View File

@ -0,0 +1 @@
da

37
data/pages/da/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Tak for din støtte</big>
CachyOS Linux bliver bakket op af et stor brugerfællesskab, og vi vil gerne takke hver eneste bruger for deres bidrag. Opbakningen til CachyOS Linux er jævnt stigende og vores distribution bliver, takket være dig, bedre og bedre for hver dag der går.
Det er let at gøre en forskel. Afhængigt af dine evner og muligheder kan du hjælpe CachyOS på en eller flere af følgende måder:
<big>Support og udbredelse</big>
<b>Fortæl om CachyOS</b>
Hvis du er glad for CachyOS, så fortæl andre om det. Skriv en anmeldelse og udgiv den på distrowatch.com.
<b>Deltag i fællesskabet</b>
CachyOS er ikke blot et styresystem, det er også et dynamisk fællesskab af mennesker som nyder at samles om og være aktive i et frit og åbent projekt. Hvad enten du hjælper andre med at løse problemer, får dem til at føle sig velkomne eller du bare mødes med og taler med andre CachyOS-brugere, så anbefaler vi at du deltager i fællesskabet og bidrager til at gøre CachyOS bedre.
<b>Ved at hjælpe andre</b>
Hvis du har tid til overs, og du er villig til at hjælpe andre med tekniske problemer, så overvej at deltage i vores fora og/eller vores IRC-kanal og på den måde hjælpe andre CachyOS-brugere med at løse de problemer du kender løsningen på.
<big>Bidrag til projektet</big>
<b>Fejlrapporter</b>
Hvis du er stødt på noget der ikke fungerer korrekt i CachyOS, så fortæl det til os. Det problem du har opdaget påvirker formodentligt også andre, så jo hurtigere vi får det at vide, jo hurtigere kan vi rette det.
<b>Nye ideer</b>
Langt de fleste forbedringer i hver udgivelse, kommer fra fællesskabet. Hvis der er noget du synes der mangler eller noget der kunne være bedre, så fortæl det til os. Hvad enten det er en manglende driver, et program som kunne være del af en standardinstallation eller du har andre ideer til at gøre CachyOS bedre, så vi er altid interesseret i høre om det.
<b>Grafisk arbejde</b>
Hvis du har grafiske evner og er villig til at bidrage med det, så send dit grafisk arbejde til os. Hvad enten det er en simpel baggrund, et sæt ikoner, et startbillede eller endda et nyt logo, så er vi altid interesseret i at høre om nye grafiske arbejder.
<b>Kodning</b>
Det meste af vores udviklingsarbejde laves i QT, C++, Python, HTML5/CSS og BASH. Vi bruger også Git til versionsstyring og PKGBUILD'er til pakning. Hvis du er fortrolig med en eller flere af disse teknologier, så tøv ikke med at kigge på vores kode. Hvis du tror du kan forbedre vores programmer eller skrive nye, så tøv ikke at kopiere vores git projekter, foreslå rettelser eller forbedringer.

46
data/pages/da/readme Normal file
View File

@ -0,0 +1,46 @@
<big>Hardwarehåndtering</big>
CachyOS leverer altid de aller nyeste kerner og giver desuden mulighed for at have flere kerner installeret og mulighed for frit at vælge en af disse før start af systemet. Vedligeholdelse af kerner findes i CachyOSs grafiske indstillingshåndtering eller via kommandolinjen med MHWD-kernel-kommandoen (CachyOS hardwareregistrering).
Disse CachyOS-værktøjer opdaterer automatisk en kerne som er blevet installeret for nyligt, samt moduler som er i brug med din eksisterende kerne. Hvis du f.eks. opdaterede fra kerne 4.14 to 4.19, så vil mhwd-kernel automatisk inkludere alle moduler som bruges af kerne 4.19. Det er da smart!
Du kan konfigurere din hardware gennem hardwareregistrering-modulet, i indstillingshåndteringen eller med MHWD CLI-programmet. Med disse værktøjer kan du f.eks. installere drivere til grafikkort, frie og proprietære.
<big>Få hjælp</big>
Selvom CachyOS er designet til at virke bedst muligt fra begyndelsen, så kan vi ikke påstå at CachyOS er perfekt. Nogen gange kan noget gå galt. Du har måske spørgsmål og et ønske om at lære mere eller du vil tilpasse noget til din personlige smag. Denne side giver dig et overblik over nogle af de tilgængelige ressourcer du har for at få hjælp.
<b>Søg på webbet</b>
Det første sted at søge efter hjælp til Linux er nok med din favorit søgemaskine. Tilføj blot ord som 'Linux', 'CachyOS' eller 'Arch' når du søger.
Da CachyOS er baseret på Arch Linux, så vil vejledninger og tips til Arch Linux typisk også gælde til CachyOS.
<b>Kig i fora</b>
Vi har et dedikeret onlineforum til specifik hjælp med CachyOS, hvor du kan søge efter emner eller selv oprette et. Det er nok det næstbedste sted til samarbejde, diskussion og hjælp. Spørg efter hjælp, skriv dine tanker eller kom med nogle forslag. Du behøver ikke at være genert!
CachyOS-forummet er opdelt i underfora til forskellige emner og miljøer, så opret venligst dit indlæg det rette sted.
<b>Deltag på Telegram</b>
En anden mulighed er at deltage på Telegram.
<b>Tilmeld dig på en mailingliste</b>
En tredje måde at få hjælp på er ved at sende spørgsmål via e-mail til en CachyOS-mailingliste (der er også mulighed for at søge efter tidligere diskussioner i historikken). Tilmeld dig blot den liste du ønsker og følge instruktionerne. Der er dedikerede lister til forskellige emner. Se selv.
<big>Andre ressourcer</big>
- <a href="https://forum.cachyos.org">CachyOS Forum</a> - Officiel CachyOS Forum (engelsk).
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Officiel wiki til CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Officiel wiki til Arch.
- <a href="https://aur.archlinux.org">AUR-repository</a> - Ekstra software som ikke findes i de almindelige repositories. Bygges fra kildekode.
<big>Forslag</big>
Har du et forslag til hvordan vi gør CachyOS bedre? Har du fundet noget du vil have med, eller vil du hjælpe? Fortæl det til os ved at skrive i vores forum eller kom forbi på IRC.
Tak!
Vi håber du er glad for CachyOS!

5
data/pages/da/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

1
data/pages/de-DE Symbolic link
View File

@ -0,0 +1 @@
de

37
data/pages/de/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Danke für ihre Unterstützung</big>
CachyOS Linux bekommt eine Menge Unterstützung von seiner Benutzer-Gemeinschaft, und wir wollen jedem einzelnen Beitragenden fürs mitmachen danken. Wir wachsen in gleichmäßigem Tempo und unsere Distribution wird dank ihnen jeden Tag besser.
Es ist sehr leicht etwas zu bewegen. Abhängig von ihren Fähigkeiten, ihrer Verfügbarkeit können Sie CachyOS in einem oder mehreren Wegen helfen:
<big>Unterstützung und Werbung</big>
<b>Die Nachricht verbreiten</b>
Wenn Sie CachyOS mögen, lassen Sie es andere wissen. Schreiben Sie eine Rezension und veröffentlichen sie auf distrowatch.com. Reden Sie darüber mit ihren Freunden und den Leuten die Sie treffen.
<b>Der Gemeinschaft beitreten</b>
CachyOS ist nicht nur ein Betriebssystem, es ist auch eine dynamische Gemeinschaft von Benutzern die ein freies und offenes Projekt genießen, sich dafür versammeln und zusammenwirken. Sei es, indem Sie anderen helfen, Probleme zu lösen, indem Sie ihnen das Gefühl geben, willkommen zu sein, oder einfach indem Sie andere CachyOS-Benutzer treffen und sich mit ihnen unterhalten - wir empfehlen Ihnen, der Gemeinschaft beizutreten und daran mitzuwirken, CachyOS besser zu machen.
<b>Anderen helfen</b>
Wenn Sie etwas Freizeit haben und bereit sind, anderen Benutzern bei technischen Problemen zu helfen, sollten Sie ernsthaft in Erwägung ziehen, die Foren zu lesen und/oder dem IRC-Channel beizutreten und anderen CachyOS-Benutzern bei der Lösung der Probleme zu helfen, die Sie zu beheben wissen.
<big>Beiträge zum Projekt</big>
<b>Fehlerberichte</b>
Wenn Sie etwas bemerkt haben, das bei der Benutzung von CachyOS nicht richtig funktioniert, lassen Sie es uns wissen. Das Problem, das Sie entdeckt haben, wird wahrscheinlich auch andere betreffen; je früher wir davon wissen, desto schneller können wir es beheben.
<b>Neue Ideen</b>
Die überwiegende Mehrheit der Verbesserungen, die in jedem Release enthalten sind, kommen aus der Community. Wenn es etwas gibt, von dem Sie glauben, dass es fehlt oder besser gemacht werden könnte, sagen Sie es uns bitte. Ob es sich um die Aufnahme eines fehlenden Hardware-Treibers handelt, oder um eine Software-Anwendung, die Teil einer Standard-Installation sein sollte, oder ob Sie andere Ideen haben, wie man CachyOS besser machen kann, wir sind immer daran interessiert, sie zu hören.
<b>Kunstwerke</b>
Wenn Sie im Grafikdesign talentiert sind und bereit sind, zum Projekt beizutragen, senden Sie uns bitte Ihre Kreationen und Kunstwerke. Ob es ein einfaches Hintergrundbild, ein Icon-Set, ein Splash-Screen oder sogar ein neues Logo ist, wir sind immer daran interessiert, von Ihnen über neue Kunstwerke zu hören.
<b>Code</b>
Der Großteil unserer Entwicklung wird in QT, C++, Python, HTML5/CSS und BASH durchgeführt. Wir verwenden auch Git für die Versionskontrolle und PKGBUILDs für die Paketierung. Wenn Sie mit diesen Technologien vertraut sind, zögern Sie nicht, einen Blick auf den Code zu werfen. Wenn Sie denken, Sie können unsere Anwendungen verbessern oder neue schreiben, zögern Sie nicht, Patches vorzuschlagen oder unsere Git-Repositories zu forken.

45
data/pages/de/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Handhabung der Hardware</big>
CachyOS unterstützt nicht nur die Verwendung mehrerer Kernel (wählbar in den erweiterten Optionen auf dem Boot-Bildschirm), sondern bietet auch Zugriff auf die allerneuesten Bleeding-Edge-Kernel. Dies kann durch die Verwendung des Kernelmoduls im grafischen Einstellungsmanager von CachyOS oder über die Kommandozeile mit dem MHWD-kernel (CachyOS Hardware Detection) Befehl erfolgen.
Diese CachyOS-Tools aktualisieren automatisch einen neu installierten Kernel zusammen mit allen Modulen, die derzeit mit Ihrem bestehenden Kernel verwendet werden. Wenn Sie zum Beispiel von Kernel 3.18 auf 4.1 aktualisieren würden, würde mhwd-kernel automatisch die Kernel 4.1-Builds und alle Module, die mit Kernel 3.18 verwendet wurden, mit einbeziehen. Was sagt man dazu!
Sie können Ihre Hardware über das Hardware-Erkennungsmodul im Einstellungsmanager oder alternativ mit der MHWD-Kommandozeilen-Applikation konfigurieren. Mit diesen Tools können Sie z.B. grafische Treiber installieren, freie und proprietäre.
<big>Hilfe holen</big>
Obwohl CachyOS so konzipiert ist, dass es so viel wie möglich "von vornherein" funktioniert, behaupten wir nicht, dass es perfekt ist. Es kann Zeiten geben, in denen etwas schief läuft, Sie Fragen haben und den Wunsch haben, mehr zu erfahren oder es einfach nur nach Ihrem Geschmack zu personalisieren. Auf dieser Seite finden Sie Details zu einigen verfügbaren Ressourcen, die Ihnen helfen können!
<b>Suche im Web</b>
Vielleicht ist der erste Ort, an dem Sie nach allgemeiner Linux-Hilfe suchen, die Verwendung Ihrer bevorzugten Suchmaschine. Fügen Sie einfach Wörter wie 'Linux', 'CachyOS' oder 'Arch' in Ihre Suchanfrage ein.
Da CachyOS auf Arch Linux basiert, gelten die für Arch entworfenen Anleitungen und Tipps in der Regel auch für CachyOS.
<b>Sehen Sie in den Foren nach</b>
Für spezifische Hilfe mit CachyOS haben wir ein spezielles Online-Forum, in dem Sie nach Themen suchen oder selbst eines erstellen können! Dies ist wahrscheinlich die nächstbeste Anlaufstelle für Zusammenarbeit, Diskussion und Hilfe. Bitten Sie um Hilfe, posten Sie Ihre Gedanken oder skizzieren Sie einige Vorschläge. Seien Sie nicht schüchtern!
Das CachyOS-Forum ist in Unterforen für verschiedene Themen und Umgebungen unterteilt, bitte stellen Sie Ihre Anfrage an der entsprechenden Stelle!
<b>Schließen Sie sich uns im Telegram an</b>
Eine andere Möglichkeit ist, sich uns im Telegram.
<b>Melden Sie sich bei einer Mailingliste an</b>
Eine andere Möglichkeit, Hilfe zu bekommen, ist es, Fragen an die CachyOS-Mailingliste zu schicken (Sie können auch die Chronik nach vergangenen Diskussionen durchsuchen). Melden Sie sich einfach auf der Liste an, die Sie bevorzugen und folgen Sie den Anweisungen. Es gibt eine Liste mit verschiedenen Themen, schau einfach mal rein!
<big>Andere Resourcen</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Zusätzliche Software, die nicht in den regulären Repositories enthalten ist und aus den Quellen gebaut wurde.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Offizielles Wiki für CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Offizielles Wiki für Arch.
<big>Vorschläge</big>
Haben Sie einen Vorschlag, wie wir CachyOS besser machen können? Haben Sie etwas gefunden, das Sie miteinbezogen haben möchten oder das Sie aushelfen möchten? Bitte lassen Sie es uns wissen, indem Sie ihren Vorschlag im Forum oder im IRC veröffentlichen.
Danke schön!
Wir wünschen Ihnen viel Spaß mit CachyOS!

5
data/pages/de/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

View File

@ -1,67 +1,37 @@
<big>Support</big>
<big>Thanks for your support</big>
Dear users and fans of Open Source software.
CachyOS Linux receives a great deal of support from its community of users and we would like to thank each and every contributor for participating. We are growing at a steady pace and our distribution is getting better every day thanks to you.
I am asking you for financial support. For the past 1.5 years, I've spent my free time developing a distribution of the Linux operating system, and I'd like to share with you why this work is so important and why your donation makes a difference.
It is very easy to make a difference. Depending on your skill set, your availability you can help CachyOS in one or more of the following ways:
Open source software plays a key role in the modern world, providing freedom to use, study, change and distribute programs. This means that everyone who uses Open Source software has the opportunity to adapt it to their needs and improve it for all users.
<big>Support and Promotion</big>
My project, a distribution of the Linux operating system, is one example of such Open Source software. I strive to create a reliable and user-friendly operating system while giving users choice and control over their computers. Linux is based on open standards and collaborative development, making it available to everyone without the restrictions of commercial licenses.
<b>Spreading the word</b>
However, developing and maintaining Open Source software requires resources - time, energy and, of course, financial resources. Your donations will help me continue to work on the project, improve its functionality, fix bugs and ensure security.
If you like CachyOS, let people know. Write a review and publish it on distrowatch.com. Talk about it with your friends and the people around you.
Financial support will also allow me to devote more time to developing new features, improving the user interface and optimizing the system as a whole. Without your support, my project may not reach its full potential and benefit the community.
<b>Joining the Community</b>
All collected donations will be invested in the development of the project: payment for the domain, hosting, equipment upgrades, testing and development of new functions. Be sure that every ruble, dollar, euro you donate will be used effectively and responsibly.
I encourage you to support my work in developing a distribution of the Linux operating system financially. Your donation will be appreciated, and together we can continue to develop Open Source software and make the world more open, free and accessible to everyone.
Best regards, Valeria.
<a href="https://www.tinkoff.ru/cf/7OmVoFjdFNI">Support the project</a>
<big>And also</big>
It's easy to participate in the development of Melawy Linux. Depending on your skills and capabilities, you can help Melawy Linux in one or more ways:
<big>Support and promotion</big>
<b>Mentioned in conversation</b>
If you like Melawy Linux, let people know about it. Write a review and post it on distrowatch.com. Discuss it with your friends, colleagues, relatives and people around you.
<b>Joining the community</b>
Melawy Linux is not just an operating system, it is also a community of people who enjoy a free and open project, a place for communication and interaction with like-minded people. Whether you are helping other people solve their problems, making them feel at home, or simply communicating with other Melawy Linux users, we encourage you to join the community and take part in the creation of Melawy Linux.
CachyOS isn't just an operating system, it's also a dynamic community of people who enjoy, gather, and interact with a free and open project. Whether it's by helping others sort through issues, by making them feel welcome, or simply by meeting and talking to other CachyOS users, we recommend you join the community and participate in making CachyOS better.
<b>Helping others</b>
If you have free time and want to help other users with technical problems, you should seriously consider reading the forums and helping other Melawy Linux users solve problems, especially if you know how to fix them.
If you have some spare time and you're willing to help other users with technical problems, you should seriously consider reading the forums and/or joining the IRC channel and helping other CachyOS users solve the problems you know how to fix.
<big>Participation in development</big>
<big>Project contributions</big>
<b>Bug reports</b>
If while using Melawy Linux you notice something that is not working properly, please let us know. The problem you discovered will most likely affect others. The sooner we find out about it, the sooner we can fix it.
If you've noticed something that doesn't work properly while using CachyOS, let us know. The problem you have discovered is likely to affect others as well; The sooner we know about it, the sooner we're able to fix it.
<b>New ideas</b>
The vast majority of improvements included in each release come from the community. If there is anything you think is missing or could be done better, please let us know. Whether it's the inclusion of a missing hardware driver or a software application that should be part of the official repository, or if you have any other ideas on how to make Melawy Linux better, we're always interested in hearing about them.
The vast majority of improvements included in each release come from the community. If there's something that you think is missing or that could be done better, please tell us. Whether it's the inclusion of a missing hardware driver, or a software application that should be part of a stock installation, or if you have any other ideas on how to make CachyOS better, we're always interested in hearing them.
<b>Design</b>
<b>Artwork</b>
If you have a talent in graphic design and are ready to contribute to the project, send us your work and illustrations. Be it a simple wallpaper, an icon set, screensavers or even a new logo. We are always interested in knowing your vision of design.
If you are talented in graphic design and willing to contribute to the project, please send us your creations and artwork. Whether it's a simple wallpaper, an icon set, a splash screen, or even a new logo, we're always interested to hear from you about new artwork.
<b>Programming</b>
<b>Code</b>
Most of our development is done in QT, C++, Python, HTML5/CSS and BASH. We also use Git for version control and PKGBUILD for packaging. If you're comfortable using these technologies, feel free to take a look at our code. If you think you can improve our applications or write new ones, feel free to suggest fixes or fork our git repositories.
Most of our development is done in QT, C++, Python, HTML5/CSS and BASH. We also use Git for version control and PKGBUILDs for packaging. If you're comfortable with these technologies, don't hesitate to have a look at the code. If you think you can improve our applications or write new ones don't hesitate to suggest patches or to fork our git repositories.

View File

@ -1,26 +1,41 @@
<big>Handling hardware</big>
CachyOS not only supports the use of multiple kernels (selectable from the advanced options at the boot screen), but also provides access to the very latest bleeding-edge kernels as well. This can be done through the use of the Kernel module in CachyOS's graphical Settings Manager, or via the command line using the MHWD-kernel (CachyOS Hardware Detection) command.
These CachyOS tools will automatically update a newly installed kernel along with any modules currently in use with your existing kernel. For example, if you were to update from kernel 3.18 to 4.1, MHWD-kernel would automatically include the kernel 4.1 builds and all modules used with kernel 3.18. How about that!
You can configure your hardware through the Hardware Detection module in the Settings Manager or alternatively with the MHWD cli-application. With these tools, you can install for example graphical drivers, free and proprietary.
<big>Getting help</big>
Although Melawy Linux is designed to work correctly out of the box, we will not claim that it is perfect. There are times when something goes wrong, you may have questions and want to know more, or you may simply want to customize the system to your liking. This page provides information on some of the resources available to help you!
Although CachyOS is designed to work as much "out of the box" as possible, we don't claim it's perfect. There can be times when things go wrong, you might have questions and a desire to learn more, or just want to personalize it to suit your tastes. This page provides details of some available resources to help you!
<b>Search on the Internet</b>
<b>Search the web</b>
Perhaps the first place to look for general Linux help is to use your favorite search engine. Just add words like "Linux", "Melawy Linux" or "Arch" to your search query.
Perhaps the first place to look for generic Linux help is by using your favorite search engine. Just include words like 'Linux', 'CachyOS' or 'Arch' in your search query.
Since Melawy Linux is based on Arch Linux, guides and tips designed for Arch generally apply to Melawy Linux as well.
As CachyOS is based on Arch Linux, guides and tips designed for Arch usually apply to CachyOS too.
<b>Look in the forums</b>
For specific help with CachyOS we have a dedicated online forum where you can search for topics, or create one yourself! This is probably the next best place to go for collaboration, discussion and assistance. Ask for help, post your thoughts, or outline some suggestions. Don't be shy!
The CachyOS forum is divided into sub-forums for different topics and environments, please post your query in the appropriate place!
<b>Sign up to a mailing list</b>
Another way to get help is to email questions to CachyOS mailing list (you can also search the history for past discussions). Simply sign up to the list you prefer and follow the instructions. There is a list dedicated to several topics, just take a look!
<big>Other resources</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Additional software not found in regular repositories, built from source code.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Official wiki for Arch.
- <a href="https://aur.archlinux.org">AUR Repository</a> - Extra software not in the regular repositories, built from source.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Official wiki for CachyOS.
- <a href="https://wiki.archlinux.org">Arch Wiki</a> - Official wiki for Arch.
<big>Russian-language resources</big>
<big>Suggestions</big>
Communication on the resources listed above is conducted in English and will suit you if you speak it. Even though the capabilities of various automatic translation tools have made great strides forward, it is always more common to communicate in a language in which you not only speak, but also think. If this language is Russian for you, you may be interested in the official Melawy Linux discord community in Russia.
Got a suggestion on how we can make CachyOS better? Found something you want to be included, or want to help out? Please let us know, by posting your suggestion on the forum or drop by on IRC.
<big>Offers</big>
Thank you!
Have a suggestion on how to make Melawy Linux better? Found something you want to include in the system, or just want to help? Let us know by posting your suggestion on the Melawy Linux discord community.
Thank you for your choice!
We hope you enjoy Melawy Linux!
We hope you enjoy using CachyOS!

View File

@ -1,44 +1,5 @@
<big>Release of Melawy Linux distribution 15.11.2023</big>
<big>CachyOS 22.03</big>
Quietly and almost imperceptibly, after 1.5+ years of work, 30.10.2023 the first release of the Melawy Linux operating system was released.
We are happy to publish our stable release of CachyOS.
<big>What's inside?</big>
- Installation from disk and over the network with the choice of bootloader rEFInd, systemd-boot, Grub2 in one installer.
- Ability to select and install driver version for Nvidia video card:
- installation from disk - drivers only for new video cards
- network installation - manual driver selection
- Non-standard kernel - with patches for performance and protection from Meltdown and Specter, etc.
- Builder of the initial kernel environment using the modular, automated Dracut.
- Generation of digital signatures and kernel signing to start via Secure Boot:
- Later, bootloader signing will be automated and the full boot cycle will be checked via Secure Boot.
- The full boot phase via Secure Boot protects against viruses, starting with the bootloader and kernel loading.
- Support for Luks2 full-disk encryption using the latest Argon2id algorithm.
- Beautiful, informative visual design:
- operating system boot selection screen
- stage of loading the kernel and base environment initrd
- login
- working environment:
- styles
- color
- icons
- cursors
- Not annoying update checking applet:
- automatic check at login after 10 seconds - after everything starts
- force check button and install button
- Pre-installed controls for AMD hardware through the user interface and Nvidia graphics card.
- A pre-selected large list of programs that can be used immediately.
- The ability to use all these programs directly on the Live image, without installing the system on disk.
- And other...
You can download the distribution from <a href="https://sourceforge.net/projects/melawy-linux/files/">SourceForge</a>.
If you want to support my work, you can make a <a href="https://www.tinkoff.ru/cf/7OmVoFjdFNI">donation</a>.
Thanks for your support!
Best regards, Valeria Fadeeva.
We hope you enjoy this release and let us know what you think about it.

1
data/pages/es-AR Symbolic link
View File

@ -0,0 +1 @@
es

37
data/pages/es/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Thanks for your support</big>
CachyOS Linux receives a great deal of support from its community of users and we would like to thank each and every contributor for participating. We are growing at a steady pace and our distribution is getting better every day thanks to you.
It is very easy to make a difference. Depending on your skill set, your availability you can help CachyOS in one or more of the following ways:
<big>Support and Promotion</big>
<b>Spreading the word</b>
If you like CachyOS, let people know. Write a review and publish it on distrowatch.com. Talk about it with your friends and the people around you.
<b>Joining the Community</b>
CachyOS isn't just an operating system, it's also a dynamic community of people who enjoy, gather, and interact with a free and open project. Whether it's by helping others sort through issues, by making them feel welcome, or simply by meeting and talking to other CachyOS users, we recommend you join the community and participate in making CachyOS better.
<b>Helping others</b>
If you have some spare time and you're willing to help other users with technical problems, you should seriously consider reading the forums and/or joining the IRC channel and helping other CachyOS users solve the problems you know how to fix.
<big>Project contributions</big>
<b>Bug reports</b>
If you've noticed something that doesn't work properly while using CachyOS, let us know. The problem you have discovered is likely to affect others as well; The sooner we know about it, the sooner we're able to fix it.
<b>New ideas</b>
The vast majority of improvements included in each release come from the community. If there's something that you think is missing or that could be done better, please tell us. Whether it's the inclusion of a missing hardware driver, or a software application that should be part of a stock installation, or if you have any other ideas on how to make CachyOS better, we're always interested in hearing them.
<b>Artwork</b>
If you are talented in graphic design and willing to contribute to the project, please send us your creations and artwork. Whether it's a simple wallpaper, an icon set, a splash screen, or even a new logo, we're always interested to hear from you about new artwork.
<b>Code</b>
Most of our development is done in QT, C++, Python, HTML5/CSS and BASH. We also use Git for version control and PKGBUILDs for packaging. If you're comfortable with these technologies, don't hesitate to have a look at the code. If you think you can improve our applications or write new ones don't hesitate to suggest patches or to fork our git repositories.

45
data/pages/es/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Handling hardware</big>
CachyOS not only supports the use of multiple kernels (selectable from the advanced options at the boot screen), but also provides access to the very latest bleeding edge kernels as well. This can be done through the use of the Kernel module in CachyOS's graphical Settings Manager, or via the command line using the MHWD-kernel (CachyOS Hardware Detection) command.
These CachyOS tools will automatically update a newly installed kernel along with any modules currently in use with your existing kernel. For example, if you were to update from kernel 3.18 to 4.1, mhwd-kernel would automatically include the kernel 4.1 builds and all modules used with kernel 3.18. How about that!
You can configure your hardware through the Hardware Detection module in the Settings Manager or alternatively with the MHWD cli-application. With these tools you can install for example graphical drivers, free and proprietary.
<big>Getting help</big>
Although CachyOS is designed to work as much "out of the box" as possible, we don't claim it's perfect. There can be times when things go wrong, you might have questions and a desire to learn more or just want to personalise it to suit your tastes. This page provides details of some available resources to help you!
<b>Search the web</b>
Perhaps the first place to look for generic Linux help is by using your favourite search engine. Just include words like 'Linux', 'CachyOS' or 'Arch' in your search query.
As CachyOS is based on Arch Linux, guides and tips designed for Arch usually apply to CachyOS too.
<b>Look in the forums</b>
For specific help with CachyOS we have a dedicated online forum where you can search for topics, or create one yourself! This is probably the next best place to go for collaboration, discussion and assistance. Ask for help, post your thoughts, or outline some suggestions. Don't be shy!
The CachyOS forum is divided into sub-forums for different topics and environments, please post your query in the appropriate place!
<b>Join us on Telegram</b>
Another option is to join us on Telegram.
<b>Sign up to a mailing list</b>
Another way to get help is to email questions to CachyOS mailing list (you can also search the history for past discussions). Simply sign up to the list you prefer and follow the instructions. There is a list dedicated to several topics, just take a look!
<big>Other resources</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Extra software not in the regular repositories, built from source.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Official wiki for CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Official wiki for Arch.
<big>Suggestions</big>
Got a suggestion on how we can make CachyOS better? Found something you want included, or want to help out? Please let us know, by posting your suggestion on the forum or drop by on IRC.
Thank you!
We hope you enjoy using CachyOS!

5
data/pages/es/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

1
data/pages/fr-FR Symbolic link
View File

@ -0,0 +1 @@
fr/

37
data/pages/fr/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Merci pour votre support</big>
CachyOS Linux reçoit beaucoup de soutien de sa communauté d'utilisateurs et nous aimerions remercier chaque contributeur pour sa participation. Nous progressons à un rythme soutenu et notre distribution s'améliore chaque jour grâce à vous.
C'est très facile de faire la différence. En fonction de vos compétences, de votre disponibilité, vous pouvez aider CachyOS de l'une ou plusieurs des façons suivantes:
<big>Support et promotion</big>
<b>Faire passer le mot</b>
Si vous aimez CachyOS, faites le savoir aux gens. Rédigez un commentaire et publiez-le sur distrowatch.com. Parlez-en avec vos amis et les gens autour de vous.
<b>Rejoindre la communauté</b>
CachyOS n'est pas seulement un système d'exploitation, c'est aussi une communauté dynamique de personnes qui aiment, rassemblent et interagissent avec un projet libre et ouvert. Que ce soit en aidant les autres à trier les problèmes, en les faisant se sentir les bienvenus, ou simplement en rencontrant et en parlant à d'autres utilisateurs de CachyOS, nous vous recommandons de rejoindre la communauté et de participer à l'amélioration de CachyOS.
<b>Aider les autres</b>
Si vous avez du temps libre et si vous souhaitez aider d'autres utilisateurs ayant des problèmes techniques, vous devriez sérieusement envisager de lire les forums et / ou de rejoindre le canal IRC et aider les autres utilisateurs de CachyOS à résoudre les problèmes que vous savez résoudre.
<big>Contribution au projet</big>
<b>Rapport de bug</b>
Si vous avez remarqué quelque chose qui ne fonctionne pas correctement lors de l'utilisation de CachyOS, faites le nous savoir. Le problème que vous avez découvert est susceptible d'affecter également les autres; Le plus tôt nous en savons à ce sujet, le plus tôt nous sommes en mesure de le réparer.
<b>Nouvelles idées</b>
La grande majorité des améliorations incluses dans chaque version proviennent de la communauté. S'il y a quelque chose qui vous manque ou qui pourrait être mieux fait, dites-le nous. Que ce soit l'inclusion d'un pilote matériel manquant ou d'une application logicielle qui devrait faire partie d'une installation de stockage, ou si vous avez d'autres idées sur la façon de rendre CachyOS meilleur, nous sommes toujours intéressés à les entendre.
<b>Artwork</b>
Si vous êtes talentueux en design graphique et que vous souhaitez contribuer au projet, envoyez-nous vos créations et illustrations. Qu'il s'agisse d'un simple fond d'écran, d'un jeu d'icônes, d'un écran d'accueil ou même d'un nouveau logo, nous sommes toujours curieux de connaître vos nouvelles créations.
<b>Code</b>
La plupart de nos développements sont réalisés en QT, C ++, Python, HTML5 / CSS et BASH. Nous utilisons également Git pour le contrôle de version et PKGBUILDs pour l'emballage. Si vous êtes à l'aise avec ces technologies, n'hésitez pas à consulter le code. Si vous pensez pouvoir améliorer nos applications ou en écrire de nouvelles, n'hésitez pas à suggérer des correctifs ou à utiliser nos dépôts git.

45
data/pages/fr/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Prise en main</big>
CachyOS prend en charge non seulement l'utilisation de plusieurs noyaux (sélectionnables à partir des options avancées de l'écran de démarrage), mais fournit également un accès aux tout derniers noyaux. Cela peut être fait en utilisant le module Kernel dans le gestionnaire de paramètres graphique de CachyOS, ou via la ligne de commande en utilisant la commande MHWD-kernel (CachyOS Hardware Detection).
Ces outils CachyOS mettront automatiquement à jour un noyau nouvellement installé avec tous les modules actuellement utilisés avec votre noyau existant. Par exemple, si vous deviez mettre à jour du noyau 3.18 à 4.1, mhwd-kernel inclurait automatiquement les versions 4.1 du noyau et tous les modules utilisés avec le noyau 3.18. Super !
Vous pouvez configurer votre matériel via le module de détection de matériel dans le gestionnaire de paramètres ou bien avec l'application CLI de MHWD. Avec ces outils, vous pouvez installer par exemple des pilotes graphiques, gratuits et propriétaires.
<big>Obtenir de l'aide</big>
Bien que CachyOS soit conçu pour fonctionner autant que possible, nous ne prétendons pas que ce soit parfait. Il peut y avoir des moments où les choses vont mal, vous pouvez avoir des questions et un désir d'en savoir plus ou simplement vouloir les personnaliser selon vos goûts. Cette page fournit des détails sur certaines ressources disponibles pour vous aider!
<b>Chercher sur le Web</b>
Peut-être le premier endroit pour chercher de l'aide générique Linux est en utilisant votre moteur de recherche préféré. Juste inclure des mots comme «Linux», «CachyOS» ou «Arch» dans votre requête de recherche.
Comme CachyOS est basé sur Arch Linux, les guides et astuces conçus pour Arch s'appliquent aussi à CachyOS.
<b>Recherche dans les forums</b>
Pour une aide spécifique avec CachyOS, nous avons un forum en ligne dédié où vous pouvez rechercher des sujets, ou en créer un vous-même! C'est probablement le meilleur endroit où aller pour la collaboration, la discussion et l'assistance. Demandez de l'aide, postez vos pensées ou esquissez quelques suggestions. Ne soyez pas timide!
Le forum CachyOS est divisé en sous-forums pour différents sujets et environnements, pensez bien à poster votre requête à l'endroit approprié !
<b>Rejoignez nous sur l'Telegram</b>
Une autre option est de nous rejoindre sur Telegram.
<b>Inscription à une liste de diffusion</b>
Une autre façon d'obtenir de l'aide consiste à envoyer des questions à la liste de diffusion de CachyOS par courriel (vous pouvez également rechercher l'historique des discussions antérieures). Inscrivez-vous simplement à la liste que vous préférez et suivez les instructions. Il y a une liste dédiée à plusieurs sujets, jetez-y un oeil!
<big>Ressources</big>
- <a href="https://aur.archlinux.org">Dépot AUR</a> - Dépot de logiciels ne se trouvant pas dans les dépots officiels et compilés depuis la source.
- <a href="https://wiki.cachyos.org">Wiki CachyOS</a> - Wiki officiel de CachyOS.
- <a href="http://wiki.archlinux.org">Wiki Arch</a> - Wiki officiel de Arch.
<big>Suggestions</big>
Vous avez une suggestion sur comment nous pouvons améliorer CachyOS? Vous avez trouvé quelque chose que vous voulez inclure ou que vous voulez aider? S'il vous plaît laissez-nous savoir, en publiant votre suggestion sur le forum ou passez sur nos IRC.
Merci !
Nous espérons que vous apprécierez CachyOS !

5
data/pages/fr/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/hu/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Köszönjük a támogatásod</big>
A CachyOS Linux rengeteg közreműködést kap a felhasználók közösségétől, és minden egyes közreműködőnek szeretnénk megköszönni a hozzájárulását. Folyamatosan növekszünk, és a disztribúciónk minden nap jobb lesz, nektek köszönhetően.
Nagyon könnyű változtatni. A tudásodtól függően, hozzájárulhatsz a CachyOShoz a következő módok valamelyikén:
<big>Támogatás és terjesztés</big>
<b>Terjeszd</b>
Ha szereted a CachyOS-t, ismertesd meg az emberekkel. Írhatsz egy összefoglalót, és publikáld a distrowatch.com oldalon. Beszélgess a barátaiddal, és a környezetedben lévő emberekkel a CachyOS-ról.
<b>Csatlakozz a közösséghez.</b>
A CachyOS nem csak egy operációs rendszer, hanem egyben egy dinamikus közösség olyan emberekből, akik élvezik az együtműködést egy szabad és nyílt projekttel. Akár, hogy másoknak segíts, vagy csak egyszerűen találkozz és beszélgess más CachyOS felhasználókkal, ajánljuk, hogy csatlakozz a közösséghez, és járulj hozzá a CachyOS jobbá tételéhez.
<b>Segíts másoknak</b>
Ha van egy kis időd, és szeretnél segíteni másoknak problémák megoldásában, akkor ajánljuk a fórumokon való közreműködést, és/vagy csatlakozást az IRC csatornánkhoz, hogy elmondd más CachyOS felhasználóknak az általad ismert megoldást.
<big>Projekt közreműködések</big>
<b>Hibajelentések</b>
Ha találtál valamit a CachyOS használata közben, ami nem működik jól, szólj nekünk. A probléma valószínűleg másokat is érint. Minél hamarabb tudunk róla, annál hamarabb tudjuk javítani.
<b>Új ötletek</b>
Az egyes kiadásokban érkező javítások, fejlesztések nagy része a közösségtől jön. Ha van valami, amit hiányolsz, vagy lehetne jobban is csinálni, kérlek szólj nekünk. Akár egy hiányzó driver hozzáadása, esetleg egy alkalmazás, ami az alap telepítés része lehetne, vagy egyéb ötlet, hogy lehetne a CachyOSt jobbá tenni, mindig szívesen halljuk.
<b>Artwork</b>
Ha tehetséges vagy a grafikai munkákban, és szeretnél hozzájárulni a projekthez, kérlek oszd meg velünk alkotásaidat. Akár egy CachyOS háttérkép, egy ikonkészlet, egy bootképernyő, vagy egy logo, mindíg szívesen fogadjuk.
<b>Programozz</b>
A legtöbb munkánkhoz a következőket használjuk: QT, C++, Python, HTML5/CSS, és BASH. A verziókezeléshez Git-et használunk, és a csomagoláshoz PKGBUILD-eket. Ha ezeknek a technológiáknak valamelyikéhez értesz, ne habozz körülnézni a programjaink között. Ha úgy találod, hogy tudnál fejleszteni az alkalmazásainkon, vagy újakat írni, ne habozz patch-ek javaslásával, vagy a git tárolóink fork-olásával.

46
data/pages/hu/readme Normal file
View File

@ -0,0 +1,46 @@
<big>Hardverkezelés</big>
A CachyOS nem csak több kernel használatát biztosítja (kiválasztható rendszerindításkor, hogy melyik kernellel induljon), hanem a legújabb (bleeding edge) kernelekhez is hozzáférést biztosít. Ez a Kernelek rész használatával érhető el a CachyOS Settings Managerben, vagy a parancssorban az MHWD-kernel parancssal.
Ezek a CachyOS eszközök az újonnan telepített kernellel együtt automatikusan frissítik a modulokat, amiket a régi kernellel használsz. Például, ha a 3.18-as kernelről a 4.1-esre frissítesz, az mhwd-kernel automatikusan telepíti a 4.1-es verzióját azoknak a moduloknak, amit a 3.18-al használtál.
A CachyOS-t a Settings Manager hardverkezelés részében állíthatod hozzá a hardveredhez, vagy az MHWD (CachyOS Hardware Detector) parancssori alkalmazással. Ezekkel az eszközökkel például nyílt vagy zárt forráskódú grafikus drivereket tudsz telepíteni.
<big>Segítségkérés</big>
Habár a CachyOS úgy lett tervezve, hogy "out of the box" működjön amennyire csak lehet, azt nem állítjuk, hogy tökéletes. Lehet, hogy valami probléma merül fel, vagy csak kérdéseid vannak, és többet szeretnél megtudni, esetleg személyre szeretnéd szabni, hogy minél jobban megfeleljen az elvárásaidnak. Ez az oldal felsorol néhány lehetőséget a segítségkérésre.
<b>Keress a weben</b>
Az első lehetőség ismeret szerzésére a kedvenc internetes keresőd használata. Használd a 'Linux', 'CachyOS', vagy 'Arch' kifejezéseket a keresésedben.
Mivel a CachyOS az Arch Linuxon alapul, az Arch-hoz írt leírások, útmutatók, vagy tippek általában működnek a CachyOSval is.
<b>Nézz be a fórumra</b>
A CachyOS-val kapcsolatban való segítségkéréshez van saját fórumunk, ahol különböző témákban kereshetsz, vagy kérdezhetsz. Valószínűleg ez a második legjobb hely a közreműködéshez, beszélgetéshez, vagy segítségkéréshez. Kérj segítséget, mondd el gondolataidat, vagy adj ötleteket. Csak bátran!
A CachyOS fórum több részlegre van osztva különböző témákhoz, kérlek, a megfelelő helyre írj!
(A CachyOS fórumának jelenleg nincs magyar nyelvű részlege, viszont ha elég kérés érkezik, igényelni fogom létrehozását. Addig az "Other Languages" részlegbe lehet írni magyarul. (a fordító))
<b>Csatlakozz hozzánk IRC-n (Internet Relay Chat)</b>
Csatlakozz a #manjaro csatornához a chat.freenode.net szerveren.
<b>Iratkozz fel egy levelezési listára.</b>
További módja a segítségkérésnek egy levelezési listára való feliratkozás (valamint megnézheted a levelezési lista előzményeit régebbi beszélgetésekért). Egyszerűen iratkozz fel a választott listára, és kövesd az utasításokat. Számos témához van levelezési lista.
<big>Egyéb lehetőségek</big>
- <a href="https://aur.archlinux.org">AUR Tároló</a> - Extra szoftverek, amik nincsenek benne a hivatalos tárolókban.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - A CachyOS Linux hivatalos wikije.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Az Arch Linux hivatalos wikije.
<big>Ötletek</big>
Van egy ötleted, hogyan tehetnénk a CachyOSt jobbá? Találtál valamit, amit szeretnél, hogy beletegyünk, esetleg segítenél valamiben? Szólj nekünk: írj le egy ötletet a főrumon, vagy IRC-n.
Köszönjük!
Reméljük, élvezni fogod a CachyOS használatát.

5
data/pages/hu/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/it/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Grazie per il tuo supporto</big>
CachyOS Linux riceve un grande supporto dalla sua comunità di utenti e vorremmo ringraziare tutti per la partecipazione. Stiamo crescendo a un ritmo costante e la nostra distribuzione sta migliorando ogni giorno grazie a te.
È molto facile fare la differenza. A seconda delle tue capacità, della tua disponibilità puoi aiutare CachyOS in uno o più dei seguenti modi:
<big>Supporto e promozione</big>
<b>Spargere la parola</b>
Se ti piace CachyOS, fallo sapere. Scrivi una recensione e pubblicala su distrowatch.com. Parlane con i tuoi amici e le persone intorno a te.
<b>Unirsi alla community</b>
CachyOS non è solo un sistema operativo, è anche una comunità dinamica di persone che si divertono, si riuniscono e interagiscono con un progetto libero e aperto. Sia aiutando gli altri a risolvere i problemi, facendoli sentire i benvenuti, o semplicemente incontrando e parlando con altri utenti di CachyOS, ti consigliamo di unirti alla comunità e partecipare per migliorare CachyOS.
<b>Aiutare gli altri</b>
Se hai del tempo libero e sei disposto ad aiutare altri utenti con problemi tecnici, dovresti prendere in seria considerazione la lettura dei forum e/o l'adesione al canale IRC e aiutare gli altri utenti di CachyOS a risolvere i problemi che sai risolvere.
<big>Contributi al progetto</big>
<b>Segnalazioni di bug</b>
Se hai notato qualcosa che non funziona correttamente durante l'utilizzo di CachyOS, faccelo sapere. È probabile che il problema che hai scoperto riguardi anche altri; Prima lo sappiamo, prima siamo in grado di risolverlo.
<b>Nuove idee</b>
La stragrande maggioranza dei miglioramenti inclusi in ogni versione proviene dalla comunità. Se c'è qualcosa che ritieni manchi o che potrebbe essere fatto meglio, ti preghiamo di comunicarcelo. Che si tratti dell'inclusione di un driver hardware mancante o di un'applicazione software che dovrebbe far parte di un'installazione stock o di eventuali idee su come migliorare CachyOS, siamo sempre interessati a sentirli.
<b>Artworks</b>
Se hai talento nella progettazione grafica e desideri contribuire al progetto, ti preghiamo di inviarci le tue creazioni e opere d'arte. Che si tratti di un semplice sfondo, un set di icone, una schermata iniziale o persino un nuovo logo, siamo sempre interessati alle tue opere.
<b>Codice</b>
Gran parte del nostro sviluppo avviene in QT, C++, Python, HTML5/CSS e BASH. Utilizziamo anche Git per il controllo della versione e PKGBUILD per il packaging. Se hai dimestichezza con queste tecnologie, non esitare a dare un'occhiata al codice. Se pensi di poter migliorare le nostre applicazioni o di scriverne di nuove, non esitare a suggerire patch o a forkare i nostri repository git.

45
data/pages/it/readme Normal file
View File

@ -0,0 +1,45 @@
<big> Gestione dell'hardware </big>
CachyOS non supporta solo l'uso di più kernel (selezionabili dalle opzioni avanzate nella schermata di avvio), ma fornisce anche l'accesso ai kernel più moderni e recenti. Questo può essere fatto tramite l'uso del modulo Kernel nel Settings Manager di CachyOS o tramite la riga di comando usando il comando MHWD-kernel (CachyOS Hardware Detection).
Questi strumenti di CachyOS aggiorneranno automaticamente un nuovo kernel appena installato insieme a tutti i moduli attualmente in uso con il kernel precedente. Ad esempio, se si aggiornasse dal kernel 3.18 al 4.1, mhwd-kernel includerebbe automaticamente le build del kernel 4.1 e tutti i moduli usati con il kernel 3.18. Tutto automaticamente!
È possibile configurare l'hardware tramite il modulo Hardware Detection in Settings Manager o in alternativa con l'applicazione da terminale MHWD. Con questi strumenti è possibile installare ad esempio driver grafici, sia gratuiti sia proprietari.
<big> Come ottenere aiuto </big>
Sebbene CachyOS sia progettato per funzionare il più "fuori dagli schemi" possibile, non pretendiamo che sia perfetto. Ci possono essere momenti in cui le cose non funzionino, potresti avere domande e il desiderio di saperne di più o vuoi semplicemente personalizzarlo secondo i tuoi gusti. Questa pagina fornisce i dettagli di alcune risorse disponibili per aiutarti!
<b> Cerca nel Web </b>
Forse il primo posto dove cercare aiuto generico per Linux è usando il tuo motore di ricerca preferito. Includi parole come "Linux", "CachyOS" o "Arch" nella tua ricerca.
Poiché CachyOS si basa su Arch Linux, le guide e i suggerimenti progettati per Arch di solito si applicano anche a CachyOS.
<b> Cerca nei forum </b>
Per un aiuto specifico con CachyOS abbiamo un forum online dedicato dove puoi cercare argomenti o crearne uno tu stesso! Questo è probabilmente il secondo posto migliore dove andare per cercare aiuto, discutere e collaborare. Chiedi, pubblica i tuoi pensieri o proponi alcuni suggerimenti. Non essere timido!
Il forum CachyOS è diviso in sotto-forum per diversi argomenti e ambienti, si prega di inviare la richiesta nel posto appropriato!
<b> Unisciti a noi su Telegram </b>
Un'altra opzione è quella di unirti a noi su Telegram.
<b> Iscriviti a una mailing list </b>
Un altro modo per ottenere aiuto è inviare domande via e-mail alla mailing list di CachyOS (puoi anche cercare nella cronologia le discussioni passate). Iscriviti semplicemente all'elenco che preferisci e segui le istruzioni. C'è un elenco dedicato a diversi argomenti, basta dare un'occhiata!
<big> Altre risorse </big>
- <a href="https://aur.archlinux.org"> Repository AUR </a> - Software aggiuntivo non presente nei normali repository, creato dal codice sorgente.
- <a href="https://wiki.cachyos.org"> CachyOS Wiki </a> - Wiki ufficiale di CachyOS.
- <a href="http://wiki.archlinux.org"> Arch Wiki </a> - Wiki ufficiale di Arch.
<big> Suggerimenti </big>
Hai un suggerimento su come possiamo migliorare CachyOS? Hai trovato qualcosa che vuoi includere o vuoi dare una mano? Fatecelo sapere, pubblicando il tuo suggerimento sul forum o entrando nel canale IRC.
Grazie!
Ci auguriamo che ti piaccia usare CachyOS!

5
data/pages/it/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/ko-KR/involved Normal file
View File

@ -0,0 +1,37 @@
<big>당신의 지원에 감사드립니다</big>
만자로 리눅스는 사용자 커뮤니티로부터 많은 지원을 받고 있으며 참여해주신 모든 분들께 감사드립니다. 우리는 꾸준한 속도로 성장하고 있으며, 여러분 덕분에 매일 배포판이 나아지고 있습니다.
변화를 만드는 것은 매우 쉽습니다. 당신의 기량에 따라 다음 방법중 하나 이상의 방법으로 만자로를 도울 수 있습니다:
<big>지원 및 프로모션</big>
<b>만자로 전파</b>
만자로를 좋아하면 사람들에게 알려 주세요. 리뷰를 작성하여 distrowatch.com.에 게시하세요. 친구들과 주변 사람들과 만자로에 대해 이야기하세요.
<b>커뮤니티 가입</b>
만자로는 단순한 운영 체제가 아니라 자유롭고 개방적인 프로젝트를 즐기고, 수집하고, 상호 작용하는 사람들의 역동적인 커뮤니티이기도 합니다. 다른 사람들이 문제를 해결하도록 돕거나, 환영받는다고 느끼거나, 단순히 다른 만자로 사용자와 만나 대화를 나누면 커뮤니티에 가입하여 만자로를 더 좋게 만드는 데 참여할 것을 권합니다.
<b>다른 사람들 돕기</b>
여가 시간이 있고 기술적인 문제가 있는 다른 사용자를 돕고자 하는 경우 포럼을 읽거나 IRC 채널에 가입하고 다른 만자로 사용자가 해결하는 방법을 알고 있는 문제를 해결할 수 있도록 도와야 합니다.
<big>프로젝트 기여도</big>
<b>버그 보고서</b>
만자로를 사용하다가 제대로 작동하지 않는 것을 발견한 경우 저희에게 알려주세요. 발견한 문제는 다른 사람에게도 영향을 미칠 수 있습니다. 우리가 그것에 대해 더 빨리 알수록, 우리는 그것을 빨리 고칠 수 있습니다.
<b>새로운 아이디어</b>
각 릴리스에 포함된 대부분의 개선 사항은 커뮤니티에서 제공됩니다. 누락되거나 더 잘 될 수 있는 일이 있다면 말씀해 주세요. 누락 된 하드웨어 드라이버가 포함되어 있는지, 또는 저장소 설치의 일부가 되어야하는 소프트웨어 응용 프로그램이 포함되어 있는지 또는 만자로를 개선하는 방법에 대한 다른 아이디어가 있는 경우에는 항상 이 정보를 듣는데 관심이 있습니다.
<b>아트워크</b>
그래픽 디자인에 재능이 있으시고 프로젝트에 기꺼이 기여하실 의향이 있으시다면 창작물과 작품을 보내주시기 바랍니다. 간단한 벽지든 아이콘 세트든, 스플래시 스크린이든, 심지어 새로운 로고든, 우리는 항상 여러분으로부터 새로운 예술작품에 대한 이야기를 듣고 싶습니다.
<b>코드</b>
대부분의 개발은 QT, C++, Python, HTML5/CSS 및 BASH에서 수행됩니다. 또한 버전 제어에는 Git를, 패키징에는 PKGBUILD를 사용합니다. 이러한 기술에 익숙하다면 주저하지 말고 코드를 살펴보시기 바랍니다. 애플리케이션을 향상시키거나 새로운 애플리케이션을 작성할 수 있다고 생각되면 주저하지 말고 패치를 제안하거나 Git 저장소를 포킹합니다.

43
data/pages/ko-KR/readme Normal file
View File

@ -0,0 +1,43 @@
<big>하드웨어 처리</big>
만자로는 여러 커널(부팅 화면의 고급 옵션에서 선택 가능) 사용을 지원할뿐만 아니라 최신 최첨단 커널에 대한 액세스도 제공합니다. 이것은 만자로의 그래픽 설정 관리자에서 커널 모듈을 사용하거나 MHWD-kernel (CachyOS 하드웨어 감지) 명령을 사용하는 명령 행을 통해 수행 할 수 있습니다.
이러한 만자로 도구는 현재 기존 커널과 함께 새로 설치된 커널과 함께 자동으로 업데이트됩니다. 예를 들어 커널 3.18에서 4.1로 업데이트하는 경우 mhwd-kernel에는 커널 4.1 빌드와 커널 3.18에 사용되는 모든 모듈이 자동으로 포함됩니다. 이거 대단하군!
설정 관리자의 하드웨어 감지 모듈 또는 MHWD cli-application을 사용하여 하드웨어를 구성 할 수 있습니다. 이 도구를 사용하면 그래픽 드라이버(무료 및 독점)를 설치할 수 있습니다.
<big>도움말 얻기</big>
만자로는 최대한 "빠르게" 작동하도록 설계되었지만, 우리는 만자로가 완벽하다고 주장하지는 않습니다. 상황이 잘못될 때, 여러분은 질문이 있을 수도 있고, 더 많이 배우고 싶은 욕구가 있을 수도 있고, 아니면 여러분의 취향에 맞게 그것을 개인화하고 싶을 수도 있습니다. 이 페이지에서는 유용하게 사용할 수 있는 리소스에 대한 세부 정보를 제공합니다!
<b>웹 검색</b>
아마도 일반적인 리눅스 도움말을 찾을 수 있는 첫 번째 장소는 좋아하는 검색 엔진을 사용하는 것입니다. 검색어에 'Linux', 'CachyOS' 또는 'Arch'와 같은 단어를 포함하기만 하면 됩니다.
만자로는 아치 리눅스를 기반으로 하기 때문에 아치용으로 설계된 가이드와 팁은 보통 만자로에도 적용됩니다.
<b>포럼 보기</b>
만자로에 대한 구체적인 도움을 위해 우리는 여러분이 주제를 검색하거나 직접 주제를 만들 수 있는 전용 온라인 포럼을 가지고 있습니다! 이 곳은 아마도 공동 작업, 토론 및 지원을 위한 차선책이 될 것입니다. 도움을 요청하거나, 생각을 게시하거나, 몇 가지 제안을 개략적으로 설명하세요. 부끄러워하지 마세요!
만자로 포럼은 다양한 주제와 환경에 대한 하위 포럼으로 나뉘어져 있습니다. 적절한 장소에 질문을 게시하십시오!
<b>IRC에 참여하기 (Internet Relay Chat)</b>
<b>메일링 리스트에 등록</b>
도움을 받을 수 있는 또 다른 방법은 질문을 만자로 메일링 리스트로 보내는 것입니다(과거 토론 기록을 검색할 수도 있음). 원하는 목록에 등록하고 지침을 따릅니다. 몇 가지 주제에 대한 목록이 있습니다. 한 번 보세요!
<big>기타 리소스</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - 소스에서 빌드된 일반 저장소에 없는 추가 소프트웨어
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - 만자로 공식 위키.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - 아치 공식 위키.
<big>의견들</big>
만자로를 더 좋게 만들 수 있는 방법에 대한 제안이 있나요? 당신이 포함시키거나 도와주고 싶은 것을 찾았습니까? 포럼에 제안을 게시하거나 IRC에 들러 알려주십시오.
감사합니다!
만자로를 즐겨 사용하시길 바랍니다!

5
data/pages/ko-KR/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/nl/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Bedankt voor de steun!</big>
Een groot deel van de ondersteuning voor CachyOS Linux komt van haar gebruikersgemeenschap, en we zouden graag elke gebruiker willen danken voor hun deelname. We groeien aan een gestaag tempo, en onze distributie wordt dankzij jullie elke dag beter.
Het is niet moeilijk om een verschil te maken. Afhankelijk van je vaardigheden en je beschikbaarheid kan je CachyOS helpen op één of meer van de volgende wijzen:
<big>Support en promotie</big>
<b>Zeg het voort</b>
Als je van CachyOS houdt, laat het dan aan anderen weten. Schrijf een artikel en publiceer het op distrowatch.com, of spreek erover met je vrienden en familie.
<b>Word lid van de gemeenschap</b>
CachyOS is niet maar gewoon een besturingssysteem; het is ook een dynamische gemeenschap van mensen die zich verheugen in een vrij en open project, en die samenkomen en elkaar inspireren. Deze interactie kan de vorm hebben van de hulp aan gebruikers met problemen en nieuwe gebruikers zich welkom te laten voelen, of eenvoudigweg door samen te komen en te praten met andere CachyOS-gebruikers. We raden je dus aan om je bij de gemeenschap aan te sluiten en CachyOS te helpen beter te worden.
<b>Help mekaar</b>
Als je wat vrije tijd hebt en je bereid bent om andere gebruikers te helpen met technische problemen moet je zeker overwegen de forums te lezen, je aan te sluiten op het IRC kanaal, en/of andere CachyOS gebruikers te helpen de problemen op te lossen waar jij misschien wel een antwoord op kan geven.
<big>Projectbijdragen</big>
<b>Rapporteer fouten</b>
Als je merkt dat er iets niet correct werkt in CachyOS, laat het ons weten. Welk probleem je ook ontdekt hebt, het gaat naar alle waarschijnlijkheid ook anderen raken, en hoe sneller we op de hoogte zijn, hoe sneller we kunnen ingrijpen.
<b>Nieuwe ideeën</b>
Het overgrote merendeel van de verbeteringen in elke nieuwe release komt van de gemeenschap. Is er iets waarvan je overtuigd bent dat het beter kan, of ontdek je dat er iets ontbreekt, laat het ons dan meteen weten. Of het nu gaat over een nieuw stuurprogramma voor de hardware, of over een softwarepakket dat eigenlijk in de standaardinstallatie zou moeten zitten maar daarin ontbreekt, of heb je nog andere ideeën om CachyOS beter te maken, we zijn altijd geïnteresseerd in je mening.
<b>Artistieke bijdragen</b>
Heb je een talent voor grafisch ontwerp en wil je bijdragen aan het project, toons ons dan gerust je creaties en je kunstwerken. Of het nu gaat om een eenvoudige wallpaper, een set icoontjes, een openingsscherm of zelfs een nieuw logo, we zijn altijd blij om van jou te horen.
<b>Code</b>
Het merendeel van onze ontwikkeling gebeurt in Qt, C++, Python, HTML5/CSS en Bash. We gebruiken ook Git voor versiecontrole en PKGBUILDs voor packaging. Als je je thuis voelt in deze technologieën, aarzel dan niet om de code te bekijken. Als je denkt dat je onze toepassingen kan verbeteren of dat je nieuwe toepassingen kan schrijven, aarzel dan niet om patches te suggereren of een fork van onze Git repositories te genereren.

46
data/pages/nl/readme Normal file
View File

@ -0,0 +1,46 @@
<big>Omgaan met hardware</big>
CachyOS ondersteunt niet alleen meerdere kernels (welke je kan selecteren via de "Advanced Options"-keuze in het opstartscherm), maar biedt ook toegang tot de allerlaatste "bleeding-edge" kernels. Dit wordt je makkelijk gemaakt via de "Kernel" module in CachyOS's grafische "Settings Manager", en door het `mhwd-kernel` (CachyOS Hardware Detection) commando op de opdrachtregel.
Deze CachyOS-hulpmiddelen passen een nieuwe kernel automatisch aan met alle modules welke op dat moment in gebruik zijn door je actieve kernel. Bijvoorbeeld, als je een opwaardering van kernel 5.4 naar 5.8 zou willen doorvoeren, dan gaat `mhwd-kernel` automatisch alle modules gebruikt door je 5.4 kernel opwaarderen naar 5.8. Je leven wordt er een stuk makkelijker door!
Je kan je hardware configureren via de "Hardware Detection" module in de "Settings Manager", of gewoon via de `mhwd` command-line applicatie. Met deze toepassingen kan je ook bijvoorbeeld "vrije" en/of gepatenteerde grafische stuurprogramma's aanpassen of installeren.
<big>Vraag om hulp</big>
Ondanks het feit dat CachyOS ontworpen is om vanaf het begin zelf interne problemen op te kunnen lossen gaan we niet beweren dat onze methologie perfect is. Af en toe kunnen er dingen fout gaan, zul je vragen hebben en ga je meer willen leren, of ga je juist zelf dingen naar je eigen smaak willen aanpassen. Deze pagina bevat details over sommige van de middelen die je kunnen helpen.
<b>Doorzoek het Internet</b>
De eerste methode om snel informatie te vergareb is een zoekmachine. Zorg ervoor dat je woorden zoals 'Linux', 'CachyOS' of 'Arch' bij je zoekopdracht invoegt.
Daar CachyOS gebaseerd is op Arch Linux zullen de gidsen en tips van Arch meestal ook van toepassing zijn op CachyOS.
<b>Bekijk de forums</b>
Voor specifieke hulp met CachyOS hebben we een toegewijd online forum waar je kan zoeken naar specifieke onderwerpen, of zelfs je eigen onderwerp kan aanmaken. Het forum is waarschijnlijk de beste plaats voor samenwerking, discussie en assistentie. Vraag om hulp, deel je gedachten, of geef zelf je suggesties door. Wees niet verlegen!
De CachyOS forums zijn onderverdeeld in sub-forums naar gelang de diverse onderwerpen en omgevingen, dus gelieve je vraag in de juiste categorie te plaatsen, en dan zal er al snel iemand antwoorden.
<b>Vervoeg ons op Telegram</b>
Een andere optie is om je op Telegram.
<b>Schrijf je in op onze mailing list</b>
Nog een andere optie om hulp te bekomen is je vragen te emailen naar de CachyOS mailing list (waar je ook kan zoeken naar bestaande oplossingen). Schrijf je gewoon in op de mailing list die je aanspreekt en volg de instructies. Er zijn mailing lists omtrent diverse onderwerpen, dus neem ze even door.
<big>Anderen middelen</big>
- <a href="https://forum.cachyos.org">CachyOS Forum</a> - Officiële support voor onze Nederlandstalige gemeenschap.
- <a href="https://aur.archlinux.org">AUR Repository</a> - Extra software die je niet in de reguliere repositories terugvindt, (gecompileerd van broncode).
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Officiële wiki voor CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Officiële wiki voor Arch.
<big>Suggesties</big>
Heb je een suggestie omtrent hoe we CachyOS beter kunnen maken? Heb je iets gevonden dat je in de standaard build wilt bijvoegen? Laat het ons weten door je suggestie op ons forum achter te laten of praat met ons op IRC.
Dankjewel!
We hopen dat CachyOS je zal bevallen!

5
data/pages/nl/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/pl/involved Normal file
View File

@ -0,0 +1,37 @@
<big> Dzięki za wsparcie </big>
CachyOS Linux otrzymuje ogromne wsparcie od swojej społeczności użytkowników i chcielibyśmy podziękować każdemu wspierającemu za udział. Rozwijamy się w stałym tempie, a dzięki Tobie nasza dystrybucja z każdym dniem jest coraz lepsza.
Bardzo łatwo jest coś zmienić. W zależności od twojego zestawu umiejętności, twojej dostępności możesz pomóc CachyOS na jeden lub więcej z następujących sposobów:
<big> Wsparcie i promocja </big>
<b> Rozpowszechnianie informacji </b>
Jeśli lubisz CachyOS, daj znać innym. Napisz recenzję i opublikuj ją na distrowatch.com. Porozmawiaj o tym ze swoimi przyjaciółmi i ludźmi wokół ciebie.
<b> Dołączanie do społeczności </b>
CachyOS to nie tylko system operacyjny, ale także dynamiczna społeczność ludzi, którzy cieszą się, gromadzą i wchodzą w interakcje z wolnym i otwartym projektem. Niezależnie od tego, czy chodzi o pomaganie innym w rozwiązywaniu problemów, sprawianie, że czują się mile widziani, czy po prostu spotykając się i rozmawiając z innymi użytkownikami CachyOS, zalecamy dołączenie do społeczności i udział w ulepszaniu CachyOS.
<b> Pomaganie innym </b>
Jeśli masz trochę wolnego czasu i chcesz pomóc innym użytkownikom w rozwiązywaniu problemów technicznych, powinieneś poważnie rozważyć czytanie forów i / lub dołączenie do kanału IRC i pomoc innym użytkownikom CachyOS w rozwiązywaniu problemów, które wiesz, jak naprawić.
<big> Wkład do projektu </big>
<b> Raporty o błędach </b>
Jeśli zauważyłeś coś, co nie działa poprawnie podczas korzystania z CachyOS, daj nam znać. Problem, który odkryłeś, prawdopodobnie wpłynie również na innych. Im szybciej się o tym dowiemy, tym szybciej będziemy mogli to naprawić.
<b> Nowe pomysły </b>
Zdecydowana większość ulepszeń zawartych w każdym wydaniu pochodzi od społeczności. Jeśli Twoim zdaniem brakuje czegoś, co można zrobić lepiej, poinformuj nas o tym. Niezależnie od tego, czy jest to dołączenie brakującego sterownika sprzętu, czy aplikacji, która powinna być częścią standardowej instalacji, czy też masz inne pomysły, jak ulepszyć CachyOS, zawsze jesteśmy zainteresowani ich usłyszeniem.
<b> Grafika </b>
Jeśli masz talent do projektowania graficznego i chcesz wnieść swój wkład w projekt, prześlij nam swoje kreacje i grafiki. Niezależnie od tego, czy jest to prosta tapeta, zestaw ikon, ekran powitalny, czy nawet nowe logo, zawsze jesteśmy zainteresowani usłyszeniem od Ciebie o nowej grafice.
<b> Kod </b>
Większość naszego kodu jest pisana w QT, C ++, Pythonie, HTML5 / CSS i BASH. Używamy również Gita do kontroli wersji i PKGBUILD do pakowania. Jeśli czujesz się komfortowo z tymi technologiami, nie wahaj się rzucić okiem na kod. Jeśli myślisz, że możesz ulepszyć nasze aplikacje lub napisać nowe, nie wahaj się zasugerować łatek lub rozwidlić nasze repozytoria git.

47
data/pages/pl/readme Normal file
View File

@ -0,0 +1,47 @@
<big> Obsługa sprzętu </big>
CachyOS nie tylko obsługuje instalację wielu jąder (wybieranych z zaawansowanych opcji na ekranie startowym), ale także zapewnia dostęp do najnowszych jąder „bleeding edge”. Można to zrobić za pomocą modułu Jądro w graficznym menedżerze ustawień CachyOS lub za pomocą wiersza poleceń przy użyciu polecenia mhwd-kernel (CachyOS Hardware Detection).
Te narzędzia CachyOS automatycznie zaktualizują nowo zainstalowane jądro wraz z wszystkimi modułami aktualnie używanymi z istniejącym jądrem. Na przykład, gdybyś zaktualizował jądro z 3.18 do 4.1, mhwd-kernel automatycznie zainstaluje kompilacje jądra 4.1 i wszystkie moduły używane z jądrem 3.18. Co ty na to!
Możesz skonfigurować swój sprzęt za pomocą modułu wykrywania sprzętu w Menedżerze ustawień lub alternatywnie za pomocą aplikacji MHWD z linii komend. Za pomocą tych narzędzi możesz zainstalować na przykład sterowniki graficzne, bezpłatne i zastrzeżone.
<big> Uzyskiwanie pomocy </big>
Chociaż CachyOS jest zaprojektowany tak, aby działał jak najlepiej „po wyjęciu z pudełka”, nie twierdzimy, że jest idealny. Może się zdarzyć, że coś pójdzie nie tak, możesz mieć pytania i chcieć dowiedzieć się więcej lub po prostu chcesz dostosować CachyOS do swoich upodobań. Ta strona zawiera szczegółowe informacje na temat dostępnych zasobów, które mogą Ci pomóc!
<b> Szukaj w internecie </b>
Być może pierwszym miejscem, w którym należy szukać ogólnej pomocy dla systemu Linux, jest skorzystanie z ulubionej wyszukiwarki. Po prostu uwzględnij w zapytaniu słowa takie jak „Linux”, „CachyOS” lub „Arch”.
Ponieważ CachyOS jest oparty na Arch Linux, przewodniki i porady zaprojektowane dla Arch zwykle dotyczą również CachyOS.
<b> Przeszukaj fora </b>
Aby uzyskać konkretną pomoc dotyczącą CachyOS, mamy dedykowane forum internetowe, na którym możesz wyszukiwać tematy lub tworzyć własne! Jest to prawdopodobnie kolejne najlepsze miejsce do współpracy, dyskusji i pomocy. Poproś o pomoc, podziel się swoimi przemyśleniami lub przedstaw kilka sugestii. Nie wstydź się!
Forum CachyOS jest podzielone na pod-fora dla różnych tematów i środowisk, prosimy o wysłanie zapytania w odpowiednim miejscu!
- <a href="https://forum.cachyos.org"> Oficjalne Forum CachyOS</a>
<b> Dołącz do nas na Telegram </b>
Inną opcją jest dołączenie do nas na Telegram.
<b> Zarejestruj się na liście mailingowej </b>
Innym sposobem uzyskania pomocy jest wysłanie pytań e-mailem na listy mailingowe CachyOS (możesz również przeszukać historię pod kątem wcześniejszych dyskusji). Po prostu zarejestruj się na preferowaną listę i postępuj zgodnie z instrukcjami. Jest lista poświęcona kilku tematom, wystarczy spojrzeć!
<big> Inne zasoby </big>
- <a href="https://aur.archlinux.org"> Repozytorium AUR </a> - Dodatkowe oprogramowanie, którego nie ma w zwykłych repozytoriach, zbudowane ze źródeł.
- <a href="https://wiki.cachyos.org"> CachyOS Wiki </a> - Oficjalna wiki CachyOS.
- <a href="http://wiki.archlinux.org"> Arch Wiki </a> - Oficjalna wiki Arch.
<big> Sugestie </big>
Masz sugestię, jak możemy ulepszyć CachyOS? Znalazłeś coś, co chcesz uwzględnić, lub chcesz pomóc? Daj nam znać, publikując swoje sugestie na forum lub wpadnij na IRC.
Dziękujemy!
Mamy nadzieję, że spodoba Ci się CachyOS!

5
data/pages/pl/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/pt-BR/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Obrigado pelo seu apoio</big>
O CachyOS Linux recebe um grande apoio de sua comunidade de usuários e gostaríamos de agradecer a todos e cada contribuinte por participar. Estamos crescendo a um ritmo constante e nossa distribuição está melhorando a cada dia graças a você.
É muito fácil fazer a diferença. Dependendo do seu conjunto de habilidades, sua disponibilidade você pode ajudar CachyOS em uma ou mais das seguintes maneiras:
<big>Suporte e Promoção</big>
<b>Divulgando a palavra</b>
Se você gosta de CachyOS, que as pessoas saibam. Escreva um comentário e publicá-lo em distrowatch.com. Fale sobre isso com seus amigos e as pessoas ao seu redor.
<b>Aderir à Comunidade</b>
CachyOS não é apenas um sistema operacional, é também uma comunidade dinâmica de pessoas que gostam, se reúnem e interagem com um projeto livre e aberto. Quer se trate de ajudar os outros a resolver os problemas, fazendo-os sentir-se bem-vindo, ou simplesmente por conhecer e conversar com outros usuários CachyOS, recomendamos que você se juntar à comunidade e participar em fazer CachyOS melhor.
<b>Ajudar os outros</b>
Se você tem algum tempo livre e está disposto a ajudar outros usuários com problemas técnicos, você deve considerar seriamente a leitura de fóruns e/ou se juntar ao canal IRC e ajudar outros usuários CachyOS a resolver os problemas que você sabe como corrigir.
<big>Contribuições do projeto</big>
<b>Relatórios de bugs</b>
Se você notou algo que não funciona corretamente enquanto estiver usando CachyOS, avise-nos. O problema que você descobriu é susceptível de afetar outros também; Quanto mais cedo soubermos disso, mais cedo seremos capazes de corrigi-lo.
<b>Novas ideias</b>
A grande maioria das melhorias incluídas em cada versão vem da comunidade. Se há algo que você acha que está faltando ou que poderia ser feito melhor, por favor nos avise. Se é a inclusão de um driver de hardware ausente, ou um aplicativo de software que deve fazer parte de uma instalação de estoque, ou se você tem outras idéias sobre como fazer CachyOS melhor, estamos sempre interessados em ouvi-los.
<b>Obra de arte</b>
Se você é talentoso em design gráfico e está disposto a contribuir para o projeto, envie-nos suas criações e obras de arte. Quer se trate de um simples papel de parede, um conjunto de ícones, uma tela de abertura, ou mesmo um novo logotipo, estamos sempre interessados em ouvir de você sobre novas obras de arte.
<b>Código</b>
A maior parte do nosso desenvolvimento é feito em QT, C++, Python, HTML5/CSS e BASH. Nós também usamos Git para controle de versão e PKGBUILDs para empacotar. Se você está confortável com essas tecnologias, não hesite em dar uma olhada no código. Se você acha que pode melhorar nossos aplicativos ou escrever novos, não hesite em sugerir patches ou fork nossos repositórios git.

45
data/pages/pt-BR/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Manuseio de hardware</big>
CachyOS não só suporta o uso de vários kernels (selecionável a partir das opções avançadas na tela de inicialização), mas também fornece acesso aos mais recentes kernels de bordos de sangramento também. Isso pode ser feito através do uso do módulo Kernel no Gerenciador de Configurações gráficas do CachyOS ou através da linha de comando usando o comando MHWD-kernel (CachyOS Hardware Detection).
Essas ferramentas CachyOS atualizarão automaticamente um kernel recém-instalado juntamente com todos os módulos atualmente em uso com o kernel existente. Por exemplo, se você atualizar do kernel 3.18 para 4.1, o mhwd-kernel automaticamente incluiria as compilações do kernel 4.1 e todos os módulos usados com o kernel 3.18. Que tal isso!
Você pode configurar seu hardware através do módulo de Detecção de Hardware no Gerenciador de Configurações ou, alternativamente, com o aplicativo cli do MHWD. Com essas ferramentas você pode instalar, por exemplo, drivers gráficos, gratuitos e proprietários.
<big>Conseguindo ajuda</big>
Embora CachyOS é projetado para trabalhar tanto quanto possível, nós não afirmamos que é perfeito. Pode haver momentos em que as coisas dão errado, você pode ter perguntas e um desejo de aprender mais ou apenas deseja personalizá-lo para se adequar ao seu gosto. Esta página fornece detalhes de alguns recursos disponíveis para ajudá-lo!
<b>Pesquise na internet</b>
Talvez o primeiro lugar para procurar ajuda genérica do Linux seja usando seu mecanismo de busca favorito. Basta incluir palavras como 'Linux', 'CachyOS' ou 'Arch' em sua consulta de pesquisa.
Como CachyOS é baseado em Arch Linux, guias e dicas projetadas para Arch geralmente se aplicam a CachyOS também.
<b>Olhe nos fóruns</b>
Para ajuda específica com CachyOS temos um fórum on-line dedicado onde você pode procurar por tópicos, ou criar um você mesmo! Este é provavelmente o melhor lugar para ir para a colaboração, discussão e assistência. Peça ajuda, coloque seus pensamentos ou esboce algumas sugestões. Não seja tímido!
O Fórum CachyOS está dividido em sub-fóruns para diferentes tópicos e ambientes, por favor, poste a sua consulta no local apropriado!
<b>Junte-se a nós no Telegram</b>
Outra opção é juntar-se a nós no Telegram.
<b>Inscreva-se em uma lista de discussão</b>
Outra maneira de obter ajuda é enviar e-mail perguntas para CachyOS mailing list (você também pode pesquisar o histórico de discussões anteriores). Simplesmente inscreva-se na lista que preferir e siga as instruções. Há uma lista dedicada a vários tópicos, basta dar uma olhada!
<big>Outros recursos</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Software extra não disponível nos repositórios normais, construído a partir da fonte.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Oficial wiki para CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Oficial wiki para Arch.
<big>Sugestões</big>
Tem uma sugestão sobre como podemos fazer CachyOS melhor? Encontrou algo que você deseja incluir, ou quer ajudar? Por favor, deixe-nos saber, por postar sua sugestão no fórum ou cair no IRC.
Obrigado!
Esperamos que você goste de usar CachyOS!

5
data/pages/pt-BR/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/pt-PT/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Obrigado pelo seu apoio</big>
O CachyOS Linux recebe um grande apoio da sua comunidade de utilizadores e gostaríamos de agradecer a todos e a cada contribuinte por participar. Estamos a crescer a um ritmo constante e a nossa distribuição está a melhorar a cada dia, graças a você.
É muito fácil fazer a diferença. Dependendo das suas competências e da sua disponibilidade, você pode ajudar o CachyOS de várias formas:
<big>Suporte e Promoção</big>
<b>Passando a palavra</b>
Se você gosta do CachyOS, que as pessoas o saibam. Escreva um comentário e publique-o em distrowatch.com. Fale sobre isso com os seus amigos e com as pessoas ao seu redor.
<b>Aderindo à Comunidade</b>
O CachyOS não é apenas um sistema operativo. É também uma comunidade dinâmica de pessoas que gostam de um projeto livre e aberto, que se reúnem e que interagem entre si. Quer se trate de ajudar os outros a resolver os problemas, fazendo-os sentir bem-vindos, ou simplesmente de conhecer e de conversar com outros utilizadores do CachyOS, recomendamos que você se junte à comunidade e participe em melhorar o CachyOS.
<b>Ajudando os outros</b>
Se você tiver algum tempo livre e estiver disposto a ajudar outros utilizadores com problemas técnicos que saiba resolver, deve considerar seriamente a leitura de fóruns, e/ou a inscrição no canal IRC do CachyOS.
<big>Contribuições para o projeto</big>
<b>Submetendo relatórios de bugs</b>
Se você detetar algo que não funciona corretamente enquanto utiliza o CachyOS, avise-nos. O problema que você descobrir é susceptível de afetar outros utilizadores. Quanto mais cedo soubermos disso, mais cedo seremos capazes de o corrigir.
<b>Sugerindo Novas ideias</b>
A grande maioria das melhorias incluídas em cada versão vem da comunidade. Se houver algo que você considere que falta ou que poderia ser melhorado, por favor avise-nos. Seja a inclusão de um driver de hardware ausente, de uma aplicação de software que devesse fazer parte da instalação de origem, ou sejam outras ideias que você tenha sobre como melhorar o CachyOS, estaremos sempre interessados em ouvi-lo.
<b>Divulgando obras de arte</b>
Se você for talentoso em design gráfico e estiver disposto a contribuir para o projeto, envie-nos as suas criações de obras de arte. Quer se trate de um simples papel de parede, de um conjunto de ícones, de uma tela de abertura, ou mesmo de um novo logotipo, estaremos sempre interessados em receber as suas novas obras de arte.
<b>Submetendo código</b>
A maior parte do nosso desenvolvimento é feito em QT, C++, Python, HTML5/CSS e BASH. Nós também utilizamos o Git para controle de versão e PKGBUILDs para o empacotamento. Se você estiver confortável com estas tecnologias, não hesite em dar uma vista de olhos no código. Se achar que pode melhorar as nossas aplicações ou escrever outras novas, não hesite em sugerir patches ou forks dos nossos repositórios git.

45
data/pages/pt-PT/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Gestão de hardware</big>
O CachyOS não só suporta vários kernels (selecionáveis a partir das opções avançadas do menu de arranque), como também fornece acesso aos kernels mais recentes, em desenvolvimento contínuo (bleeding edge). Estes podem ser instalados através do módulo Kernel, no Gestor de Configurações do CachyOS, ou através da linha de comandos, através do comando MHWD-kernel (CachyOS Hardware Detection).
Estas ferramentas do CachyOS atualizam automaticamente um kernel recém-instalado, juntamente com todos os módulos atualmente instalados no kernel existente. Por exemplo, se você atualizar do kernel 3.18 para o 4.1, o mhwd-kernel incluirá automaticamente as compilações do kernel 4.1 e de todos os módulos instalados no kernel 3.18. Que tal?
Você pode configurar o seu hardware através do módulo de Deteção de Hardware no Gestor de Configurações ou, alternativamente, com o aplicativo cli do MHWD. Com estas ferramentas você pode instalar, por exemplo, drivers gráficos gratuitos e/ou proprietários.
<big>Conseguindo ajuda</big>
Embora o CachyOS seja projetado para funcionar o melhor possível, nós não afirmamos que seja perfeito. Poderão haver situações em que as coisas não corram bem. Você pode ter perguntas a fazer e um desejo de aprender mais, ou desejar, apenas, personalizar o sistema para o adequar ao seu gosto. Esta página fornece detalhes sobre alguns recursos disponíveis para o ajudar!
<b>Pesquise na internet</b>
A primeira ferramenta a utilizar para obter ajuda genérica sobre o Linux poderá ser o seu motor de busca favorito. Basta incluir palavras como 'Linux', 'CachyOS' ou 'Arch' na sua pesquisa.
Como o CachyOS é baseado em Arch Linux, guias e dicas projetados para o Arch aplicam-se normalmente ao CachyOS.
<b>Leia os fóruns</b>
Para ajuda específica do CachyOS, temos um fórum online dedicado, onde você pode pesquisar tópicos existentes ou criar um novo! Este é provavelmente o melhor lugar para participar na colaboração, na discussão e na assistência. Peça ajuda, exponha os seus pensamentos e esboce as suas sugestões. Não seja tímido!
O Fórum do CachyOS está dividido em sub-fóruns para diferentes tópicos e ambientes. Por favor, publique no local apropriado!
<b>Junte-se a nós no Telegram</b>
Outra opção é juntar-se a nós no Telegram.
<b>Inscreva-se numa lista de discussão</b>
Outra forma de obter ajuda é enviar as perguntas por email, para o CachyOS mailing list (também pode pesquisar o histórico de discussões anteriores). Inscreva-se na lista que preferir e siga as instruções. Há listas dedicadas a diferentes tópicos; basta passar uma vista de olhos!
<big>Outros recursos</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Software extra indisponível nos repositórios normais; compilado a partir da fonte.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - CachyOS Wiki oficial.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Arch Wiki oficial.
<big>Sugestões</big>
Tem uma sugestão sobre como melhorar o CachyOS? Encontrou algo que deseja incluir, ou quer ajudar? Por favor, informe-nos publicando a sua sugestão no fórum ou no IRC.
Obrigado!
Esperamos que goste de usar CachyOS!

5
data/pages/pt-PT/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/ro-RO/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Mulţumim pentru suportul acordat</big>
CachyOS Linux se bazează pe sprijinul deosebit venit din partea comunității sale de utilizatori și dorim să mulțumim fiecăruia pentru contribuţie. Suntem în creștere într-un ritm constant și distribuția noastră se îmbunătățește în fiecare zi datorită vouă.
Este foarte ușor să demarcaţi ce contează. În funcție de setul de calificări, disponibilitatea dumneavoastră, puteţi ajuta CachyOS în unul sau mai multe dintre următoarele moduri:
<big>Suport și promovare</big>
<b>Popularizarea</b>
Dacă vă place CachyOS, faceţi-l cunoscut. Scrieţi un comentariu și publicaţi-l pe distrowatch.com. Vorbiţi despre asta cu prietenii și oamenii din jur.
<b>Aderarea la Comunitate</b>
CachyOS nu este doar un sistem de operare, ci și o comunitate dinamică de oameni care se bucură și interacționează în discuţii cu şi despre un proiect gratuit și deschis. Fie că este vorba de ajutorul acordat altora prin rezolvarea unor probleme tehnice, făcându-i să se simtă bineveniți, sau pur și simplu doar participarea la discuţii cu alţi utilizatori CachyOS, vă invităm să vă alăturați comunității și să luaţi parte la îmbunătăţirea experienţei CachyOS.
<b>Ajutarea altora</b>
Dacă aveţi timp liber şi dispoziţie să ajutaţi alţi utilizatori cu probleme tehnice, e imperativă cunoaşterea modului de funcţionare a forumului, clasificarea categoriilor şi conţinutul anunţurilor. Canalul IRC poate la fel de bine să fie utilizat pentru suport tehnic.
<big>Contribuţii la proiect</big>
<b>Rapoarte de erori</b>
Dacă ați observat ceva care nu funcționează corect în timp ce utilizați CachyOS, anunțați-ne. Problema descoperită poate afecta și alte sisteme; cu cât știm mai repede şi mai multe detalii despre eroare, cu atât o putem rezolva în timp util şi mai eficient.
<b>Idei noi</b>
Marea majoritate a îmbunătățirilor incluse în fiecare versiune provin din contribuţiile comunităţii. Dacă există ceva care credeți că lipsește sau care ar putea fi făcut mai bine, vă rugăm să ne spuneți. Fie că este vorba de includerea unui driver hardware lipsă sau a unei aplicații software care ar trebui să facă parte dintr-o instalație implicită sau dacă aveți alte idei despre cum experienţa cu CachyOS se poate îmbunătăţi, suntem mereu interesați să le auzim.
<b>Lucrări artistice</b>
Dacă sunteți talentați în design grafic și doriți să contribuiți la proiect, vă rugăm să ne trimiteți creațiile și lucrările voastre. Fie că este vorba o carpetă desktop simplă, un set de pictograme, un ecran de pornire, sau chiar un nou logo, suntem mereu interesați să le vedem.
<b>Cod şi programare</b>
Cea mai mare parte a dezvoltării noastre se face în QT, C ++, Python, HTML5 / CSS și BASH. De asemenea, folosim Git pentru controlul versiunilor și PKGBUILDs pentru împachetare. Dacă sunteți versatili în aceste tehnologii, nu ezitați să aruncați o privire la codul nostru. Dacă credeți că puteți îmbunătăți aplicațiile sau puteți scrie altele noi, nu ezitați să sugerați patch-uri sau să importaţi proiectele din depozitele git.

45
data/pages/ro-RO/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Asistență hardware</big>
CachyOS nu numai că acceptă utilizarea mai multor kernel-uri (selectabile din opțiunile avansate de la ecranul de pornire), dar oferă și acces la cele mai recente kerneluri, chiar şi cele experimentale. Acest lucru poate fi realizat prin utilizarea modulului de Kernel în interfaţa grafică a Manager-ului de Setări CachyOS, sau prin linia de comandă folosind MHWD-kernel.
Aceste instrumente specifice CachyOS vor actualiza automat un kernel nou instalat, împreună cu orice module utilizate în prezent cu kernel-ul existent. De exemplu, dacă ar fi să actualizați de la kernel 3.18 la 4.1, mhwd-kernel ar include automat versiunile kernel 4.1 și toate modulele utilizate cu kernel 3.18. Foarte convenabil!
Puteți configura hardware-ul prin modulul de detectare hardware din Managerul de Setări sau, alternativ, cu aplicaţia mod linie de commandă MHWD. Cu aceste instrumente puteți instala, de exemplu, drivere grafice, gratuite și proprietare.
<big>Resurse de ajutor</big>
Deși CachyOS este proiectat să funcționeze implicit la pornire, nu pretindem că este perfect. Pot exista momente când lucrurile merg prost, este posibil să aveți întrebări și dorința de a afla mai multe sau doar doriți să-l personalizați pentru a se potrivi gusturilor dumneavoastră. Această pagină oferă detalii despre unele resurse disponibile pentru ajutor!
<b>Căutați pe web</b>
Folosind motorul de căutare preferat este probabil varianta preferată pentru găsirea unui ajutor generic relaţionat cu Linux. Totuşi să includeți cuvinte cheie precum "Linux", "CachyOS" sau "Arch" în interogarea dumneavoastră de căutare.
CachyOS are la bază structura, logica şi funcţionalitatea Arch Linux. Ghidurile și sfaturile concepute pentru Arch se aplică de obicei şi la CachyOS.
<b>Căutați în forum</b>
Pentru ajutor specific CachyOS avem un forum online dedicat unde puteți căuta subiecte sau puteți crea unul specific pentru problema întâmpinată! Forumul este cel mai bun loc virtual pentru colaborare, discuții și asistență tehnică. Cereți ajutor cu încredere, postați-vă opiniile sau faceţi sugestii.
Forumul CachyOS este împărțit în sub-forumuri pentru diferite subiecte și medii, vă rugăm să postați interogarea în categoria potrivită!
<b>Cinectaţi-vă cu noi pe Telegram</b>
O altă opțiune este Telegram.
<b>Înscrieți-vă la lista de discuții</b>
O altă modalitate de a obține ajutor este să trimiteți întrebări la lista de discuții CachyOS (puteți căuta și istoricul discuțiilor anterioare). Pur și simplu înscrieți-vă la una pe care o preferați și urmați instrucțiunile. Există o listă dedicată mai multor subiecte, vă invităm să o consultaţi!
<big>Alte resurse</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Software-ul suplimentar, neoficial construit de la sursă.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - wiki oficial CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - wiki oficial Arch.
<big>Sugestii</big>
Sugestiile cu privire la modul în care putem face CachyOS mai bun şi mai stabil, ceva ce merită inclus în materie de software, sau metode de ajutor mai eficiente sunt toate binevenite pe forum sau pe canalul IRC.
Mulţumim!
Sperăm să utilizaţi CachyOS cu plăcere!

5
data/pages/ro-RO/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

View File

@ -1,67 +1,37 @@
<big>Поддержка</big>
<big> Спасибо за вашу поддержку </big>
Уважаемые пользователи и поклонники Open Source программного обеспечения.
Значительную поддержку CachyOS Linux получает от сообщества пользователей, и мы хотели бы поблагодарить каждого участника за участие. Мы развиваемся уверенными темпами, и благодаря вам наша система становится лучше с каждым днем.
Я обращаюсь к Вам с просьбой о финансовой поддержке. В течение последних 1,5 лет я уделяла свое свободное время разработке дистрибутива операционной системы Linux, и я хотела бы поделиться с вами, почему эта работа столь важна и почему ваше пожертвование имеет значение.
Принять участие в развитии CachyOS легко. В зависимости от ваших навыков и возможностей вы можете помочь CachyOS одним или несколькими способами:
Open source программное обеспечение (ПО) играет ключевую роль в современном мире, обеспечивая свободу использования, изучения, изменения и распространения программ. Это значит, что каждый, кто использует Open Source ПО, имеет возможность адаптировать его под свои нужды и улучшать его для всех пользователей.
<big> Поддержка и продвижение </big>
Мой проект - дистрибутив операционной системы Linux, является одним из примеров такого Open Source ПО. Я стремлюсь создать надежную и удобную операционную систему, предоставляя пользователям возможность выбора и контроля над своими компьютерами. Линукс основан на открытых стандартах и совместной разработке, что делает его доступным для всех без ограничений коммерческих лицензий.
<b> Упоминание в разговоре </b>
Однако разработка и поддержка Open Source программного обеспечения требуют ресурсов - времени, энергии и, конечно же, финансовых средств. Ваши пожертвования помогут мне продолжать работать над проектом, улучшать его функциональность, исправлять ошибки и обеспечивать безопасность.
Если вам нравится CachyOS, пусть люди знают об этом. Напишите отзыв и опубликуйте его на distrowatch.com. Обсудите ее со своими друзьями, коллегами, родственниками и людьми вокруг вас.
Финансовая поддержка позволит мне также уделить больше времени на разработку новых функций, улучшение пользовательского интерфейса и оптимизацию системы в целом. Без вашей поддержки мой проект может не достичь своего полного потенциала и не принести пользу сообществу.
<b> Присоединение к сообществу </b>
Все собранные пожертвования будут вложены в развитие проекта: оплата домена, хостинга, обновление оборудования, проведение тестирования и разработка новых функций. Будьте уверены, что каждый рубль, доллар, евро, пожертвованный вами, будет использован эффективно и ответственно.
CachyOS - это не просто операционная система, это динамичное сообщество людей, которым свободный и открытый проект дарит удовольствие, является местом общения и взаимодействия с единомышленниками. Не важно помогаете ли вы другим людям решать возникшие у них проблемы, давая им возможность почувствовать себя как дома, или просто общаетесь с другими пользователями CachyOS, мы рекомендуем вам присоединиться к сообществу и принять посильное участие в создании CachyOS.
Я призываю Вас поддержать мою работу по разработке дистрибутива операционной системы Linux финансово. Ваше пожертвование будет оценено, и вместе мы сможем продолжить развитие Open Source ПО и сделать мир более открытым, свободным и доступным для всех.
<b> Помощь другим </b>
С уважением, Валерия.
<a href="https://www.tinkoff.ru/cf/7OmVoFjdFNI">Поддержать проект</a>
<big>А также</big>
Принять участие в развитии Melawy Linux легко. В зависимости от ваших навыков и возможностей Вы можете помочь Melawy Linux одним или несколькими способами:
<big>Поддержка и продвижение</big>
<b>Упоминание в разговоре</b>
Если Вам нравится Melawy Linux, пусть люди знают об этом. Напишите отзыв и опубликуйте его на distrowatch.com. Обсудите ее со своими друзьями, коллегами, родственниками и людьми вокруг Вас.
<b>Присоединение к сообществу</b>
Melawy Linux - это не просто операционная система, это также сообщество людей, которым свободный и открытый проект дарит удовольствие, является местом общения и взаимодействия с единомышленниками. Не важно помогаете ли Вы другим людям решать возникшие у них проблемы, давая им возможность почувствовать себя как дома, или просто общаетесь с другими пользователями Melawy Linux, мы рекомендуем Вам присоединиться к сообществу и принять посильное участие в создании Melawy Linux.
<b>Помощь другим</b>
Если у Вас есть свободное время и Вы хотите помочь другим пользователям в решении технических проблем, Вам следует серьезно подумать о том, чтобы читать форумы и помогать другим пользователям Melawy Linux решать проблемы, особенно если Вы знаете, как их исправить.
Если у вас есть свободное время и вы хотите помочь другим пользователям в решении технических проблем, вам следует серьезно подумать о том, чтобы читать форумы и/или присоединяться к каналу IRC и помогать другим пользователям CachyOS решать проблемы, особенно если вы знаете, как их исправить.
<big>Участие в разработке</big>
<b>Отчеты об ошибках</b>
<b> Отчеты об ошибках </b>
Если во время использования Melawy Linux Вы заметили что-то, что не работает должным образом, сообщите нам. Проблема, которую Вы обнаружили, скорее всего, затронет и других. Чем раньше мы о ней узнаем, тем скорее мы сможем ее исправить.
Если во время использования CachyOS вы заметили что-то, что не работает должным образом, сообщите нам. Проблема, которую вы обнаружили, скорее всего, затронет и других. Чем раньше мы о ней узнаем, тем скорее мы сможем ее исправить.
<b>Новые идеи</b>
<b> Новые идеи </b>
Подавляющее большинство улучшений, включенных в каждый выпуск, поступает от сообщества. Если есть что-то, что, по Вашему мнению, отсутствует или это можно сделать лучше, сообщите нам. Является ли это включением отсутствующего драйвера оборудования или программным приложением, которое должно быть частью официального репозитория, или если у Вас есть какие-то другие идеи о том, как сделать Melawy Linux лучше, нам всегда интересно о них узнать.
Подавляющее большинство улучшений, включенных в каждый выпуск, поступает от сообщества. Если есть что-то, что, по вашему мнению, отсутствует или это можно сделать лучше, сообщите нам. Является ли это включением отсутствующего драйвера оборудования или программным приложением, которое должно быть частью официального репозитория, или если у вас есть какие-то другие идеи о том, как сделать CachyOS лучше, нам всегда интересно о них узнать.
<b>Оформление</b>
<b> Оформление </b>
Если Вы обладаете талантом в графическом дизайне и готоВы внести свой вклад в проект, отправьте нам свои работы и иллюстрации. Будь то простые обои, набор значков, заставки или даже новый логотип. Знать Ваше видение дизайна нам всегда интересно.
Если вы обладаете талантом в графическом дизайне и готовы внести свой вклад в проект, отправьте нам свои работы и иллюстрации. Будь то простые обои, набор значков, заставки или даже новый логотип. Знать ваше видение дизайна нам всегда интересно.
<b>Программирование</b>
<b> Программирование </b>
Большая часть нашей разработки выполняется в QT, C++, Python, HTML5 / CSS и BASH. Мы также используем Git для контроля версий и PKGBUILD для упаковки. Если Вам удобно пользоваться этими технологиями, не стесняйтесь взглянуть на наш код. Если Вы думаете, что можете улучшить наши приложения или написать новые, не стесняйтесь предлагать исправления или форкать наши репозитории git.
Большая часть нашей разработки выполняется в QT, C ++, Python, HTML5 / CSS и BASH. Мы также используем Git для контроля версий и PKGBUILD для упаковки. Если вам удобно пользоваться этими технологиями, не стесняйтесь взглянуть на наш код. Если вы думаете, что можете улучшить наши приложения или написать новые, не стесняйтесь предлагать исправления или форкать наши репозитории git.

View File

@ -1,26 +1,49 @@
<big>Управление оборудованием</big>
CachyOS поддерживает не только выбор загрузки необходимого ядра Линукс (в дополнительных опциях на экране загрузки) среди нескольких установленных, но и позволяет самостоятельно установить любую из понравившихся (даже самую последнюю) версию. Это можно сделать с помощью модуля <b>Ядро</b> в графическом менеджере настроек CachyOS или посредством команды <i>mhwd-kernel</i> (CachyOS Hardware Detection) в терминале.
Данный инструмент автоматически обновит вновь установленное ядро, а также все дополнительные модули, уже использующиеся на этот момент с существующим ядром. Например, если вы обновляете ядро с версии 3.18 на версию 4.1, <i>mhwd-kernel</i> автоматически включит в сборку ядра 4.1 все модули, используемые с ядром 3.18.
Оборудование можно настроить через модуль <b>Конфигурация оборудования</b> в Диспетчере настроек или с помощью команды <i>mhwd</i> в терминале. С помощью этих инструментов можно, например, установить драйверы для видеокарты (как свободные, так и проприетарные).
<big>Получение справки</big>
Хотя Melawy Linux призван корректно работать, что называется, «из коробки», мы не станем утверждать, что он совершенен. Бывают случаи, когда что-то идет не так, у Вас могут возникнуть вопросы и желание узнать больше или Вы просто захотите настроить систему по своему вкусу. На этой странице содержится информация о некоторых доступных ресурсах, которые помогут вам!
Хотя CachyOS призван корректно работать, что называется, «из коробки», мы не станем утверждать, что он совершенен. Бывают случаи, когда что-то идет не так, у вас могут возникнуть вопросы и желание узнать больше или вы просто захотите настроить систему по своему вкусу. На этой странице содержится информация о некоторых доступных ресурсах, которые помогут вам!
<b>Поищите в Интернете</b>
Возможно, первое место для поиска общей помощи Linux - это использование вашей любимой поисковой системы. Просто добавьте в ваш поисковый запрос такие слова, как «Linux», «Melawy Linux» или «Arch».
Возможно, первое место для поиска общей помощи Linux - это использование вашей любимой поисковой системы. Просто добавьте в ваш поисковый запрос такие слова, как «Linux», «CachyOS» или «Arch».
Поскольку Melawy Linux базируется на Arch Linux, руководства и советы, предназначенные для Arch, обычно подходят и к Melawy Linux.
Поскольку CachyOS базируется на Arch Linux, руководства и советы, предназначенные для Arch, обычно подходят и к CachyOS.
<big>Другие ресурсы</big>
<b>Загляните на форум</b>
- <a href="https://aur.archlinux.org">Репозиторий AUR</a> - Дополнительное программное обеспечение, отсутствующее в обычных репозиториях, собранное из исходного кода.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Официальная wiki для Arch.
Для получения конкретной помощи в CachyOS у нас есть специализированный главный онлайн-форум, где вы можете искать темы или создавать их самостоятельно! Вероятно, это лучшее место для сотрудничества, обсуждения и помощи. Попросите о помощи, поделитесь своими мыслями или оставьте отзыв или предложение. Стеснятся не надо!
Форум CachyOS разделен на подфорумы различной тематики, поэтому желательно размещать свой запрос в соответствующем месте!
<b>Присоединяйтесь к нам в Telegram</b>
Другой вариант - общаться с нами в чате Telegram.
<b>Подпишитесь на список рассылки</b>
Еще один способ получить помощь - отправить вопрос по электронной почте в список рассылки CachyOS (можно просматривать историю прошлых обсуждений). Просто зарегистрируйтесь в списке, который для вас наиболее предпочтителен, и следуйте инструкциям. Существует список, посвященный нескольким темам!
<big> Другие ресурсы </big>
- <a href="https://aur.archlinux.org"> Репозиторий AUR </a> - Дополнительное программное обеспечение, отсутствующее в обычных репозиториях, собранное из исходного кода.
- <a href="https://wiki.cachyos.org"> CachyOS Wiki </a> - Официальная wiki для CachyOS.
- <a href="http://wiki.archlinux.org"> Arch Wiki </a> - Официальная wiki для Arch.
<big>Русскоязычные ресурсы</big>
Общение на перечисленных выше ресурсах ведется на английском языке и подойдет вам, если Вы им владеете. Даже не смотря на то, что возможности различных инструментов по автоматическому переводу шагнули далеко вперед, всегда привычнее общаться на языке, на котором не только говоришь, но и думаешь. Если для Вас таким языком является Русский, вам моет быть интересенн официальное дискорд-сообщество Melawy Linux в России.
Общение на перечисленных выше ресурсах ведется на английском языке и подойдет вам, если вы им владеете. Даже не смотря на то, что возможности различных инструментов по автоматическому переводу шагнули далеко вперед, всегда привычнее общаться на языке, на котором не только говоришь, но и думаешь. Если для вас таким языком является Русский, вам могут быть интересны неофициальные группы и сообщества CachyOS в России.
<big>Предложения</big>
<big> Предложения </big>
Есть предложение о том, как сделать Melawy Linux лучше? Нашли что-то, что хотите включить в систему, или просто хотите помочь? Сообщите нам, разместив свое предложение в дискорд-сообществе Melawy Linux.
Есть предложение о том, как сделать CachyOS лучше? Нашли что-то, что хотите включить в систему, или просто хотите помочь? Сообщите нам, разместив свое предложение на главном форуме или заглянув в IRC.
Спасибо Вам за Ваш выбор!
Надеемся, вам понравится Melawy Linux!
Надеемся, вам понравится CachyOS!

View File

@ -1,44 +1,5 @@
<big>Релиз дистрибутива Melawy Linux 15.11.2023</big>
<big>CachyOS 22.03</big>
Тихо и почти незаметно спустя 1,5+ года работы, 30.10.2023 вышел первый релиз операционно системы Melawy Linux.
We are happy to publish our stable release of CachyOS.
<big>Что внутри?</big>
- Установка с диска и по сети с выбором загрузчика rEFInd, systemd-boot, Grub2 в одном установщике.
- Возможность выбрать и установить версию драйверов для видеокарты Nvidia:
- установка с диска - драйверы только для новых видеокарт
- установка по сети - выбор драйвера вручную
- Нестандартное ядро - с патчами на производительность и защиту от Meltdown и Spectre и др.
- Сборщик начального окружения ядра с помощью модульного, автоматизированного Dracut.
- Генерация цифровых подписей и подписывания ядра для старта через Secure Boot:
- Позже будет автоматизировано подписывание загрузчика и проверен полный цикл загрузки через Secure Boot.
- Полный этап загрузки через Secure Boot защищает от вирусов начиная с загрузчика и загрузки ядра.
- Поддержка полнодискового шифрования Luks2 последним алгоритмом Аrgon2id.
- Красивое, информативное визуальное оформление:
- экран выбора заргузки операционной системы
- этап загрузки ядра и базового окружения initrd
- вход в систему
- рабочее окружение:
- стили
- цвет
- иконки
- курсоры
- Не надоедающий апплет проверки обновлений:
- автоматическая проверка при входе через 10 секунд - после того как всё запустится
- кнопка принудительной проверки и кнопка установки
- Предустановленные средства управления оборудованием AMD через пользовательский интерфейс и видеокартой Nvidia.
- Заранее выбранный большой список программ, которые можно сразу использовать.
- Возможность использовать все эти программы прямо на Live образе, без установки системы на диск.
- И другое...
Вы можете скачать дистрибутив с <a href="https://sourceforge.net/projects/melawy-linux/files/">SourceForge</a>.
Если Вы хотите поддержать мою работу, то можете сделать <a href="https://www.tinkoff.ru/cf/7OmVoFjdFNI">пожертвование</a>.
Спасибо за Вашу поддержку!
С уважением, Валерия Фадеева.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/sv/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Tack för ditt stöd</big>
CachyOS Linux får mycket stöd från sin gemenskap av användare och vi vill tacka var och en av alla som bidrar och deltar. Vi växer i stadig takt och vår distribution blir bättre varje dag tack vare dig.
Det är väldigt enkelt att göra skillnad. Beroende på dina färdigheter och din tillgänglighet så kan du hjälpa CachyOS på ett eller flera av följande sätt:
<big>Stöd och främjande</big>
<b>Att sprida ordet</b>
Om du gillar CachyOS så låt folk få veta detta. Skriv en recension och publicera den på distrowatch.com. Prata om det för dina vänner och människor i din omgivning.
<b>Gå med i gemenskapen</b>
CachyOS är inte bara ett operativsystem utan är också en dynamisk gemenskap av människor som gillar att samlas och samarbeta kring ett fritt och öppet projekt. Oavsett om det är genom att hjälpa andra att gå igenom frågor, att få dem att känna sig välkomna eller att helt enkelt möta upp och prata med andra CachyOS-användare så rekommenderar vi att du går med i communityn och är med att göra CachyOS bättre.
<b>Hjälpa andra</b>
Om du har lite tid över och är villig att hjälpa andra användare med tekniska problem så bör du på allvar överväga att läsa forumen och/eller gå in på IRC-kanalen och hjälpa andra CachyOS-användare att lösa de problem som du vet hur man fixar.
<big>Bidra projektet</big>
<b>Buggrapporter</b>
Om du har upptäckt något som inte fungerar som det ska när du använder CachyOS så berätta det för oss. Det problem du har upptäckt kommer sannolikt också att påverka andra; Ju tidigare vi vet om det desto snabbare kan vi fixa det.
<b>Nya idéer</b>
Den stora majoriteten av förbättringar som ingår i varje release kommer från communityn. Berätta om det finns något som du tror saknas eller som kan göras bättre. Oavsett om det är att inkludera en saknad hårdvarudrivrutin eller en mjukvara som bör ingå i grundinstallationen eller om du har några andra idéer om hur man kan göra CachyOS bättre så är vi alltid intresserade av att höra dessa.
<b>Design</b>
Om du har talanger inom grafisk design och vill bidra till projektet så skicka gärna in dina kreationer och designer. Oavsett om det är en enkel skrivbordsbakgrund, en ikon-uppsättning, en uppstartsbild eller till och med en ny logotyp så är vi alltid intresserade av att höra från dig om nya konstverksdesigner.
<b>Kod</b>
Den mesta av vår utveckling görs i QT, C++, Python, HTML5/CSS och BASH. Vi använder också Git för versionskontroll och PKGBUILDs för packetering. Om du är bekväm med dessa tekniker så tveka inte att titta på koden. Om du tror att du kan förbättra våra applikationer eller skriva nya så tveka inte att föreslå korrigeringar eller skapa en fork på våra git-repository.

45
data/pages/sv/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Hårdvaruhantering</big>
CachyOS stöder inte bara användningen av flera olika kärnor (kan väljas från de avancerade alternativen på boot-menyn), utan ger också tillgång till de absolut senaste och nyaste kärnorna. Detta kan göras med hjälp av Kernel-modulen i CachyOSs grafiska inställningshanterare eller via kommandoraden med MHWD-kernel (CachyOS Hardware Detection) kommandot.
Dessa CachyOS-verktygen uppdaterar automatiskt en nyligen installerad kärna tillsammans med alla moduler som för närvarande används med din befintliga kärna. Om du till exempel skulle uppdatera från kärna 3.18 till 4.1 så kommer mhwd-kärnan automatiskt inkludera 4.1-byggnader och alla moduler som används med kärna 3.18. Vad sägs om det!
Du kan konfigurera din hårdvara genom hårdvarudetekteringsmodulen i Inställningshanteraren eller alternativt med applikationen MHWD-cli. Med dessa verktyg kan du installera till exempel grafiska drivrutiner, fria och proprietära.
<big>Få hjälp</big>
Även om CachyOS är utformat att vara så ”färdig att fungera direkt” som möjligt, hävdar vi inte att det är perfekt. Det kan finnas tillfällen när saker går fel, du kan ha frågor och önskemål att veta mer, eller bara vill anpassa efter din personliga tycke och smak. Denna sida innehåller information om några tillgängliga resurser som finns för att hjälpa dig!
<b>Sök på nätet</b>
Kanske det första stället att leta efter allmän Linux-hjälp är att använda din favoritsökmotor. Inkludera bara ord som 'Linux', 'CachyOS' eller 'Arch' i din sökning.
Eftersom CachyOS är baserad på Arch Linux gäller vanligtvis guider och tips för Arch också för CachyOS.
<b> Leta i forumen </b>
För hjälp specifikt för CachyOS har vi ett dedikerat onlineforum där du kan söka efter ämnen eller skapa ett själv! Detta är förmodligen det näst bästa stället för samarbete, diskussion och hjälp. Be om hjälp, gör ett inlägg om dina tankar eller skissera på några förslag. Var inte blyg!
CachyOS-forumet är indelat i underforum för olika ämnen och plattformar så vänligen posta din fråga på rätt plats!
<b>Möt oss Telegram</b>
Ett annat alternativ är att gå in på Telegram.
<b>Registrera dig på en e-postlista</b>
Ett annat sätt att få hjälp är att posta frågor till en CachyOS e-postlista (du kan också söka i historiken för tidigare diskussioner). Registrera dig enkelt till den lista du föredrar och följ instruktionerna. Det finns listor över flera ämnen, ta gärna en titt!
<big>Andra resurser</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Extra programvara som inte finns i de vanliga programförråden, byggd från källkod.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Officiella wikin för CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Officiella wikin för Arch.
<big>Förslag</big>
Har du ett förslag på hur vi kan göra CachyOS bättre? Hittat något du vill få med eller vill du hjälpa till? Vänligen meddela oss genom att lägga upp ditt förslag på forumet eller gå in på IRC.
Tack!
Vi hoppas att du gillar att använda CachyOS!

5
data/pages/sv/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/tr/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Desteğin için teşekkürler</big>
CachyOS Linux, kullanıcı topluluğundan büyük miktarda destek alır ve desteklerinden dolayı her katılımcıya teşekkür ederiz. Hızla büyüyoruz ve dağıtımımız sizler sayesinde her geçen gün daha da iyileşiyor.
Fark yaratmak çok kolaydır. Yeteneğinize bağlı olarak, CachyOS'ya aşağıdaki yöntemlerden biri veya birkaçı ile yardımcı olabilirsiniz:
<big>Destek ve Tanıtım</big>
<b>Paylaşın</b>
CachyOS'dan hoşlanıyorsanız, insanlara anlatın. Bir yorum yazın ve distrowatch.com'da yayınlayın. Bunu arkadaşlarınızla ve çevrenizdeki insanlarla konuşun.
<b>Topluluğa Katılın</b>
CachyOS sadece bir işletim sistemi değil aynı zamanda özgür ve açık bir projeden hoşlanan, toplanan ve etkileşime giren dinamik bir topluluktur. Başkalarının sorunları çözmesine yardımcı olarak, kendilerini iyi hissetmelerini sağlayarak ya da yalnızca diğer CachyOS kullanıcılarıyla tanışıp konuşarak, topluluğa katılmanızı ve CachyOS'yu daha iyi hale getirmeye katılmanızı öneririz.
<b>Diğer kullanıcılara yardım edin</b>
Boş zamanınız varsa ve teknik sorunları olan kullanıcılara yardım etmeye istekliysen, forumları okumayı ve / veya IRC kanalına katılmayı ve diğer CachyOS kullanıcılarının çözemediği, sizin nasıl çözülebileceğini bildiğiniz konularda yardımcı olmayı ciddiye almalısınız.
<big>Proje Katkıları</big>
<b>Hata bildirimleri</b>
CachyOS kullanırken düzgün çalışmayan bir şey fark ettiyseniz, bize bildirin. Keşfettiğiniz problemin başkalarını da etkilemesi muhtemeldir; Ne kadar çabuk öğrenirsek o kadar çabuk düzeltebiliriz.
<b>Yeni Fikirler</b>
Her sürümde yer alan iyileştirmelerin büyük çoğunluğu topluluktan geliyor. Eksik olduğunu düşündüğünüz veya daha iyi yapılabileceğini düşündüğünüz bir şey varsa, lütfen bize bildirin. Eksik bir donanım sürücüsünün veya stok kurulumunun bir parçası olması gereken bir yazılım uygulamasının bulunup bulunmadığı veya CachyOS'yu daha iyi hale getirme konusunda başka fikirleriniz varsa, bunları her zaman duymak bilmek isteriz.
<b>Sanat</b>
Grafik tasarım konusunda yetenekli ve projeye katkıda bulunmak için istekli iseniz, lütfen bize kreasyonlarınızı ve sanat çalışmalarınızı gönderin. İster basit bir duvar kağıdı, ister bir simge seti, bir açılış ekranı, ister yeni bir logo olsun, sizin her zaman yeni sanat çalışmalarınızdan haberdar olmak isteriz.
<b>Kod</b>
Gelişmemizin çoğu QT, C ++, Python, HTML5 / CSS ve BASH ile yapılır. Ayrıca sürüm kontrolü için Git ve ambalajlama için PKGBUILD'ler de kullanıyoruz. Bu teknolojiler konusunda rahatsanız, koda bakmaktan çekinmeyin. Eğer uygulamalarımızı geliştirebileceğinizi ya da yenilerini yazabileceğinizi düşünüyorsanız git depolarımızı doldurmaktan çekinmeyin.

43
data/pages/tr/readme Normal file
View File

@ -0,0 +1,43 @@
<big>Donanımı Kullanın</big>
CachyOS, yalnızca çoklu çekirdek kullanımını (önyükleme ekranındaki gelişmiş seçeneklerden seçilebilir) değil, aynı zamanda en son kararsız çekirdeklere de erişim sağlar. Bu, CachyOS'nun Grafik Ayarlar Yöneticisinde Çekirdek modülünün kullanılmasıyla veya MHWD-kernel (CachyOS Donanım Algılama) komutunu kullanarak komut satırı aracılığıyla yapılabilir.
CachyOS araçları, yeni kurulmuş bir çekirdeği mevcut çekirdeğinizle kullanılmakta olan modüllerle birlikte otomatik olarak güncelleyecektir. Örneğin, çekirdek 3.18'den 4.1'e güncelleme yapacak olsanız, mhwd-kernel otomatik olarak çekirdek 4.1 yapılarını ve çekirdek 3.18 ile kullanılan tüm modülleri içerecektir.
Donanımınızı, Ayarlar Yöneticisi'ndeki Donanım Algılama modülünden veya alternatif olarak MHWD cli-uygulamasından yapılandırabilirsiniz. Bu araçlarla örneğin free ve proprietary grafik sürücüleri yükleyebilirsiniz.
<big>Yardım Almak</big>
CachyOS mümkün olduğu kadar "doğrudan" çalışmak üzere tasarlanmış olsa da, mükemmel olduğunu iddia etmiyoruz. İşlerin ters gittiği zamanlar olabilir, sorularınız olabilir ve daha fazla şey öğrenmek veya sadece zevklerinize uyacak şekilde kişiselleştirmek isteyebilirsiniz. Bu sayfa size yardımcı olacak bazı kaynakların detaylarını sunar!
<b>İnternetten Araştırın</b>
Genel Linux yardımı için ilk yer, en sevdiğiniz arama motorunu kullanmaktır. Arama sorgunuza 'Linux', 'CachyOS' veya 'Arch' gibi kelimeler ekleyin.
CachyOS, Arch Linux'a dayandığından, Arch için tasarlanan rehberler ve ipuçları genellikle CachyOS için de geçerlidir.
<b>Forumda Araştırın</b>
CachyOS ile ilgili özel yardım için, konu arayabileceğiniz veya kendiniz oluşturabileceğiniz özel bir çevrimiçi foruma sahibiz! İşbirliği, tartışma ve yardım için gidilecek en iyi yer muhtemelen burasıdır. Yardım isteyin, düşüncelerinizi gönderin veya bazı önerilerde bulunun. Utangaç olmayın!
CachyOS forumu farklı konular ve ortamlar için alt forumlara bölünmüştür, lütfen sorunuzu uygun yere gönderin!
<b>IRC'de bize katılın(Internet Relay Chat)</b>
<b>Mail listesine kayıt olun</b>
Yardım almanın başka bir yolu da soruları CachyOS mail listesine mail göndermektir (geçmiş tartışmalar için geçmişi de arayabilirsiniz). Tercih ettiğiniz listeye üye olun ve talimatları izleyin. Birkaç konuya adanmış bir liste var, sadece bir göz atın!
<big>Other resources</big>
- <a href="https://aur.archlinux.org">AUR Deposu</a> - Ekstra yazılımlar normal depolarda değil, kaynaktan yapılmış.
- <a href="https://wiki.cachyos.org">CachyOS Viki</a> - CachyOS için resmi viki.
- <a href="http://wiki.archlinux.org">Arch Viki</a> - Arch için resmi viki.
<big>Öneriler</big>
CachyOS'yu nasıl daha iyi hale getirebileceğimize dair bir önerin var mı? İstediğiniz bir şey mi buldunuz ya da yardım etmek mi istiyorsunuz? Lütfen önerinizi foruma göndererek veya IRC'ye bırakarak bize bildirin.
Teşekkürler!
Umarız CachyOS'yu kullanmaktan zevk alırsınız!

5
data/pages/tr/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

37
data/pages/zh-CN/involved Normal file
View File

@ -0,0 +1,37 @@
<big>Thanks for your support</big>
CachyOS Linux receives a great deal of support from its community of users and we would like to thank each and every contributor for participating. We are growing at a steady pace and our distribution is getting better every day thanks to you.
It is very easy to make a difference. Depending on your skill set, your availability you can help CachyOS in one or more of the following ways:
<big>Support and Promotion</big>
<b>Spreading the word</b>
If you like CachyOS, let people know. Write a review and publish it on distrowatch.com. Talk about it with your friends and the people around you.
<b>Joining the Community</b>
CachyOS isn't just an operating system, it's also a dynamic community of people who enjoy, gather, and interact with a free and open project. Whether it's by helping others sort through issues, by making them feel welcome, or simply by meeting and talking to other CachyOS users, we recommend you join the community and participate in making CachyOS better.
<b>Helping others</b>
If you have some spare time and you're willing to help other users with technical problems, you should seriously consider reading the forums and/or joining the IRC channel and helping other CachyOS users solve the problems you know how to fix.
<big>Project contributions</big>
<b>Bug reports</b>
If you've noticed something that doesn't work properly while using CachyOS, let us know. The problem you have discovered is likely to affect others as well; The sooner we know about it, the sooner we're able to fix it.
<b>New ideas</b>
The vast majority of improvements included in each release come from the community. If there's something that you think is missing or that could be done better, please tell us. Whether it's the inclusion of a missing hardware driver, or a software application that should be part of a stock installation, or if you have any other ideas on how to make CachyOS better, we're always interested in hearing them.
<b>Artwork</b>
If you are talented in graphic design and willing to contribute to the project, please send us your creations and artwork. Whether it's a simple wallpaper, an icon set, a splash screen, or even a new logo, we're always interested to hear from you about new artwork.
<b>Code</b>
Most of our development is done in QT, C++, Python, HTML5/CSS and BASH. We also use Git for version control and PKGBUILDs for packaging. If you're comfortable with these technologies, don't hesitate to have a look at the code. If you think you can improve our applications or write new ones don't hesitate to suggest patches or to fork our git repositories.

45
data/pages/zh-CN/readme Normal file
View File

@ -0,0 +1,45 @@
<big>Handling hardware</big>
CachyOS not only supports the use of multiple kernels (selectable from the advanced options at the boot screen), but also provides access to the very latest bleeding edge kernels as well. This can be done through the use of the Kernel module in CachyOS's graphical Settings Manager, or via the command line using the MHWD-kernel (CachyOS Hardware Detection) command.
These CachyOS tools will automatically update a newly installed kernel along with any modules currently in use with your existing kernel. For example, if you were to update from kernel 3.18 to 4.1, mhwd-kernel would automatically include the kernel 4.1 builds and all modules used with kernel 3.18. How about that!
You can configure your hardware through the Hardware Detection module in the Settings Manager or alternatively with the MHWD cli-application. With these tools you can install for example graphical drivers, free and proprietary.
<big>Getting help</big>
Although CachyOS is designed to work as much "out of the box" as possible, we don't claim it's perfect. There can be times when things go wrong, you might have questions and a desire to learn more or just want to personalise it to suit your tastes. This page provides details of some available resources to help you!
<b>Search the web</b>
Perhaps the first place to look for generic Linux help is by using your favourite search engine. Just include words like 'Linux', 'CachyOS' or 'Arch' in your search query.
As CachyOS is based on Arch Linux, guides and tips designed for Arch usually apply to CachyOS too.
<b>Look in the forums</b>
For specific help with CachyOS we have a dedicated online forum where you can search for topics, or create one yourself! This is probably the next best place to go for collaboration, discussion and assistance. Ask for help, post your thoughts, or outline some suggestions. Don't be shy!
The CachyOS forum is divided into sub-forums for different topics and environments, please post your query in the appropriate place!
<b>Join us on Telegram</b>
Another option is to join us on Telegram.
<b>Sign up to a mailing list</b>
Another way to get help is to email questions to CachyOS mailing list (you can also search the history for past discussions). Simply sign up to the list you prefer and follow the instructions. There is a list dedicated to several topics, just take a look!
<big>Other resources</big>
- <a href="https://aur.archlinux.org">AUR Repository</a> - Extra software not in the regular repositories, built from source.
- <a href="https://wiki.cachyos.org">CachyOS Wiki</a> - Official wiki for CachyOS.
- <a href="http://wiki.archlinux.org">Arch Wiki</a> - Official wiki for Arch.
<big>Suggestions</big>
Got a suggestion on how we can make CachyOS better? Found something you want included, or want to help out? Please let us know, by posting your suggestion on the forum or drop by on IRC.
Thank you!
We hope you enjoy using CachyOS!

5
data/pages/zh-CN/release Normal file
View File

@ -0,0 +1,5 @@
<big>CachyOS 22.03</big>
We are happy to publish our stable release of CachyOS.
We hope you enjoy this release and let us know what you think about it.

View File

@ -1,25 +1,24 @@
{
"default_locale": "en",
"autostart_path": "~/.config/autostart/melawy-welcome.desktop",
"data_path": "/usr/share/melawy-welcome/data/",
"desktop_path": "/usr/share/applications/melawy-welcome.desktop",
"autostart_path": "~/.config/autostart/cachyos-hello.desktop",
"data_path": "/usr/share/cachyos-hello/data/",
"desktop_path": "/usr/share/applications/cachyos-hello.desktop",
"installer_path": "/usr/bin/calamares",
"live_path": "/run/archiso/bootmnt/arch",
"locale_path": "/usr/share/locale/",
"logo_path": "/usr/share/icons/hicolor/scalable/apps/",
"save_path": "~/.config/melawy-welcome.json",
"ui_path": "/usr/share/melawy-welcome/ui/melawy-welcome.glade",
"style_path": "/usr/share/melawy-welcome/ui/style.css",
"logo_path": "/usr/share/icons/hicolor/64x64/apps/cachyos.png",
"save_path": "~/.config/cachyos-hello.json",
"ui_path": "/usr/share/cachyos-hello/ui/cachyos-hello.glade",
"style_path": "/usr/share/cachyos-hello/ui/style.css",
"urls": {
"wiki": "https://wiki.archlinux.org",
"forum": "https://sourceforge.net/p/melawy-linux/discussion/",
"software": "https://git.melawy.ru/Melawy-Linux",
"development": "https://gitlab.com/melawy",
"donate": "https://melawy.ru/donate",
"website": "https://melawy.ru",
"youtube": "https://youtube.com/@Melawy",
"mastodon": "https://techhub.social/@Melawy",
"discord": "https://discord.gg/725zXx7RhJ",
"gitlab": "https://gitlab.com/melawy"
"development": "https://github.com/cachyos",
"discover": "https://discover.manjaro.org/",
"donate": "https://cachyos.org/donate",
"forum": "https://forum.cachyos.org",
"telegram": "https://t.me/+oR-kWT47vRdmMDli",
"mailling": "https://lists.cachyos.org/cgi-bin/mailman/listinfo",
"reddit": "https://www.reddit.com/r/cachyos",
"twitter": "https://twitter.com/cachyos",
"wiki": "https://wiki.cachyos.org"
}
}

View File

@ -1,57 +0,0 @@
#!/bin/sh
# Source: https://gitlab.gnome.org/GNOME/fractal/blob/master/hooks/pre-commit.hook
install_rustfmt() {
if ! which rustup &> /dev/null; then
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH=$PATH:$HOME/.cargo/bin
if ! which rustup &> /dev/null; then
echo "Failed to install rustup. Performing the commit without style checking."
exit 0
fi
fi
if ! rustup component list|grep rustfmt &> /dev/null; then
echo "Installing rustfmt…"
rustup component add rustfmt
fi
}
if ! which cargo >/dev/null 2>&1 || ! cargo fmt --help >/dev/null 2>&1; then
echo "Unable to check the projects code style, because rustfmt could not be run."
if [ ! -t 1 ]; then
# No input is possible
echo "Performing commit."
exit 0
fi
echo ""
echo "y: Install rustfmt via rustup"
echo "n: Don't install rustfmt and perform the commit"
echo "Q: Don't install rustfmt and abort the commit"
echo ""
while true
do
echo -n "Install rustfmt via rustup? [y/n/Q]: "; read yn < /dev/tty
case $yn in
[Yy]* ) install_rustfmt; break;;
[Nn]* ) echo "Performing commit."; exit 0;;
[Qq]* | "" ) echo "Aborting commit."; exit -1 >/dev/null 2>&1;;
* ) echo "Invalid input";;
esac
done
fi
echo "--Checking style--"
cargo fmt --all -- --check
if test $? != 0; then
echo "--Checking style fail--"
echo "Please fix the above issues, either manually or by running: cargo fmt --all"
exit -1
else
echo "--Checking style pass--"
fi

View File

@ -1,9 +0,0 @@
# The language identifier of the language used in the
# source code for gettext system, and the primary fallback language
# (for which all strings must be present) when using the fluent
# system.
fallback_language = "en"
[fluent]
# The path to the assets directory.
assets_dir = "i18n"

View File

@ -1,66 +0,0 @@
# About dialog
about-dialog-title = Melawy Welcome
about-dialog-comments = Welcome screen for Melawy Linux
# Tweaks page
tweaks = Tweaks
fixes = Fixes
applications = Applications
removed-db-lock = Pacman db lock was removed!
lock-doesnt-exist = Pacman db lock does not exist!
orphans-not-found = No orphan packages found!
package-not-installed = Package '{$package_name}' has not been installed!
# Dns Connections page
dns-settings = DNS Settings
select-connection = Select Connection:
select-dns-server = Select DNS server:
apply = Apply
reset = Reset
dns-server-changed = DNS server was successfully changed!
dns-server-failed = Failed to set DNS server!
dns-server-reset = DNS server has been reset!
dns-server-reset-failed = Failed to reset DNS server!
# Tweaks page (tweaks)
tweak-enabled-title = {$tweak} enabled
# Tweaks page (fixes)
remove-lock-title = Remove db lock
reinstall-title = Reinstall all packages
refresh-keyrings-title = Refresh keyrings
update-system-title = System update
remove-orphans-title = Remove orphans
clear-pkgcache-title = Clear package cache
rankmirrors-title = Rank mirrors
dnsserver-title = Change DNS server
# Main Page (buttons)
button-about-tooltip = About
button-web-resource-tooltip = Web resource
button-development-label = Development
button-software-label = Software
button-donate-label = Donate
button-forum-label = Forum
button-installer-label = Launch installer
button-involved-label = Get involved
button-readme-label = Read me
button-release-info-label = Release info
button-wiki-label = Wiki
# Main Page (sections)
section-docs = DOCUMENTATION
section-installer = INSTALLATION
section-support = SUPPORT
section-project = PROJECT
# Main Page (body)
offline-error = Unable to start online installation! No internet connection
tweaksbrowser-label = Apps/Tweaks
appbrowser-label = Install Apps
launch-start-label = Launch at start
welcome-title = Welcome to Melawy Linux!
welcome-body =
Thank you for joining our community!
We, the Melawy Linux Developers, hope that you will enjoy using Melawy Linux as much as we enjoy building it. The links below will help you get started with your new operating system. So enjoy the experience, and don't hesitate to send us your feedback.

View File

@ -1,66 +0,0 @@
# About dialog
about-dialog-title = Melawy Welcome
about-dialog-comments = Приветственный экран Melawy Linux
# Tweaks page
tweaks = Настройки
fixes = Исправления
applications = Приложения
removed-db-lock = Блокировка БД Pacman была снята!
lock-doesnt-exist = Pacman БД не заблокирован!
orphans-not-found = Потерянные пакеты не найдены!
package-not-installed = Пакет '{$package_name}' не был установлен!
# Dns Connections page
dns-settings = Настройки DNS
select-connection = Выберите подключение:
select-dns-server = Выберите DNS сервер:
apply = Применить
reset = Сбросить
dns-server-changed = DNS-сервер был успешно изменен!
dns-server-failed = Не удалось настроить DNS-сервер!
dns-server-reset = DNS-сервер был сброшен!
dns-server-reset-failed = Не удалось сбросить DNS-сервер!
# Tweaks page (tweaks)
tweak-enabled-title = {$tweak} включен
# Tweaks page (fixes)
remove-lock-title = Удалить db lock
reinstall-title = Переустановить все пакеты
refresh-keyrings-title = Обновить ключи
update-system-title = Обновить систему
remove-orphans-title = Удалить orphans
clear-pkgcache-title = Очистить кэш пакетов
rankmirrors-title = Ранжировать зеркала
dnsserver-title = Сменить DNS-сервер
# Main Page (buttons)
button-about-tooltip = О программе
button-web-resource-tooltip = Веб-ресурс
button-development-label = Разработка
button-software-label = ПО
button-donate-label = Пожертвовать
button-forum-label = Форум
button-installer-label = Запустить установщик
button-involved-label = Принять участие
button-readme-label = Прочитай меня
button-release-info-label = Сведения о выпуске
button-wiki-label = Вики
# Main Page (sections)
section-docs = ДОКУМЕНТАЦИЯ
section-installer = УСТАНОВКА
section-support = ПОДДЕРЖКА
section-project = ПРОЕКТ
# Main Page (body)
offline-error = Не удается запустить онлайн-установку! Нет подключения к Интернету
tweaksbrowser-label = Приложения/Настройки
appbrowser-label = Установить ПO
launch-start-label = Автозапуск
welcome-title = Добро пожаловать в Melawy Linux!
welcome-body =
Благодарим Вас за то, что Вы присоединились к нашему сообществу!
Мы, разработчики Melawy Linux, надеемся, что пользуясь этой системой, Вы будете испытывать такое же удовольствие, какое мы испытывали, создавая ее. Представленные ниже ссылки помогут Вам начать работу. Наслаждайтесь функционалом Melawy Linux и оставляйте свои отзывы.

View File

@ -1,4 +0,0 @@
install_data(
'@0@.svg'.format(application_id),
install_dir: iconsdir / 'hicolor' / 'scalable' / 'apps'
)

View File

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="64"
height="64"
viewBox="0 0 64 64"
version="1.1"
id="svg193"
sodipodi:docname="os_melawylinux.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:export-filename="os_melawylinux.png"
inkscape:export-xdpi="768"
inkscape:export-ydpi="768"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs197" />
<sodipodi:namedview
id="namedview195"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="9.1371454"
inkscape:cx="19.043147"
inkscape:cy="29.87804"
inkscape:window-width="1920"
inkscape:window-height="1014"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg193" />
<circle
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:1.02056"
id="path1"
cx="32"
cy="32"
r="32" />
<path
fill-rule="nonzero"
fill="#ff5555"
fill-opacity="1"
d="M 10.947002,39.950461 V 14.652372 h 5.618722 v 2.795521 h 2.823199 v 2.823202 h 2.795522 v -2.823202 h 2.823201 v -2.795521 h 5.618721 V 39.950461 H 25.007646 V 25.889818 h -2.823201 v 2.823199 h -2.795522 v -2.823199 h -2.823199 v 14.060643 z m 22.495646,-2.8232 V 25.889818 h 2.823199 v -2.8232 h 14.060645 v 2.8232 h 2.795521 v 5.618721 H 39.061369 v 5.618722 h 8.441922 v -2.795522 h 5.618722 v 2.795522 h -2.795521 v 2.8232 H 36.265847 v -2.8232 z m 5.618721,-11.237443 v 2.823199 h 8.441922 v -2.823199 z"
id="path187"
style="stroke-width:1.77143"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccc" />
<path
fill-rule="nonzero"
fill="#e5444c"
fill-opacity="1"
d="m 15.650703,50.096012 2.463382,0.02769 v -0.830353 c 0,-0.512051 0.276784,-0.781916 0.830352,-0.802675 0.553569,0.02076 0.830353,0.290624 0.830353,0.802675 v 1.688384 c 0,0.53972 -0.276784,0.802665 -0.830353,0.802665 h -5.784792 c -0.539728,0 -0.802674,-0.262945 -0.802674,-0.802674 l -0.02769,-8.33121 c 0,-0.553568 0.276783,-0.830353 0.830354,-0.830353 h 1.688393 c 0.477451,0 0.747316,0.276785 0.802673,0.830353 z m 5.542606,1.660706 c -0.262944,0 -0.387498,-0.138402 -0.387498,-0.415176 0,-0.08995 0.01382,-0.166071 0.05537,-0.221428 l -0.02769,-0.02769 1.688385,-7.058001 0.276783,-1.190172 0.08303,-0.332141 c 0.110714,-0.422095 0.359819,-0.636604 0.747318,-0.636604 h 0.138401 2.712487 0.1384 c 0.387499,0 0.622766,0.214509 0.71964,0.636604 l 0.08303,0.332141 2.020526,8.248173 c 0.01382,0.07612 0.02769,0.166071 0.02769,0.276784 0,0.276786 -0.138402,0.415177 -0.415178,0.415177 h -2.15892 -0.138402 c -0.373657,0 -0.608925,-0.20759 -0.719639,-0.636604 l -1.74373,-7.113346 -1.660708,7.085679 c -0.110713,0.429016 -0.359819,0.636603 -0.747315,0.636603 z m 3.958016,-0.802673 c -0.04153,0.553567 -0.304462,0.830352 -0.802675,0.830352 -0.553569,0 -0.830352,-0.262946 -0.830352,-0.802675 l -0.02769,-1.688384 c 0,-0.53281 0.276785,-0.802675 0.830353,-0.802675 0.512053,0 0.788837,0.276784 0.830354,0.830353 z m 11.424273,-4.068731 -0.664283,2.740164 -0.276783,1.190174 -0.08303,0.33214 c -0.07612,0.33214 -0.242187,0.539729 -0.498211,0.608926 v 0.02769 h -2.186601 -0.1384 c -0.37366,0 -0.608926,-0.207588 -0.71964,-0.636603 L 31.92564,50.81566 29.905115,42.567487 c -0.02076,-0.0692 -0.02769,-0.16607 -0.02769,-0.276784 0,-0.276784 0.1384,-0.415176 0.415176,-0.415176 h 2.158917 0.138401 c 0.387499,0 0.622766,0.214508 0.719639,0.636604 l 1.300888,5.258901 1.079459,-4.622299 0.138401,-0.608925 c 0.08995,-0.401336 0.311382,-0.615844 0.664281,-0.636604 h 0.166054 c 0.34598,0.02076 0.567406,0.235268 0.664283,0.636604 l 0.138401,0.608925 1.051779,4.511584 1.217852,-5.120509 c 0.110713,-0.422096 0.34598,-0.636604 0.71964,-0.636604 h 0.69196 c 0.276785,0 0.415176,0.138402 0.415176,0.415177 0,0.09688 -0.02076,0.16607 -0.05537,0.221427 v 0.02769 l -1.688384,7.058 -0.276785,1.190173 -0.08302,0.332141 c -0.07613,0.318301 -0.235267,0.51897 -0.470534,0.608926 v 0.02766 h -0.913388 v -0.02769 c -0.242187,-0.08995 -0.401338,-0.290625 -0.470534,-0.608925 l -0.08302,-0.332143 -0.276785,-1.190173 z m 7.978308,0.664283 -2.32499,-4.400872 c -0.07612,-0.14531 -0.110713,-0.290621 -0.110713,-0.442855 0,-0.290622 0.172998,-0.525889 0.525892,-0.691961 0.145308,-0.08995 0.290623,-0.1384 0.442854,-0.1384 l 1.328564,-0.02769 c 0.256027,0 0.470534,0.159144 0.636605,0.470533 l 1.688384,3.34909 1.799098,-3.37677 c 0.166071,-0.311364 0.387499,-0.470515 0.664282,-0.470515 0.124549,0 0.276786,0.04154 0.442855,0.110714 0.332141,0.186829 0.498213,0.429017 0.498213,0.719638 0,0.131476 -0.02769,0.276786 -0.08303,0.442856 l -2.214274,4.345515 v 3.542839 c -0.05539,0.539728 -0.325231,0.802674 -0.802684,0.802674 h -1.688384 c -0.53973,0 -0.802674,-0.262946 -0.802674,-0.802674 z"
id="path189"
sodipodi:nodetypes="ccscssssccssccsscccccsccscccsscscccsscsccscccccccccscccsscsccccccccccssscccccccccccccccsccccccscscccsssc"
style="stroke-width:1.77143" />
<path
fill-rule="nonzero"
fill="#96c5f6"
fill-opacity="1"
d="m 33.726015,20.827288 1.260133,0.01415 v -0.424763 c 0,-0.261938 0.141587,-0.399986 0.424763,-0.410604 0.283176,0.01062 0.424764,0.148666 0.424764,0.410604 v 0.863687 c 0,0.276096 -0.141588,0.410604 -0.424764,0.410604 h -2.959187 c -0.276096,0 -0.410605,-0.134508 -0.410605,-0.410604 l -0.01416,-4.261797 c 0,-0.283176 0.141588,-0.424764 0.424764,-0.424764 h 0.86369 c 0.244239,0 0.382288,0.141588 0.410605,0.424764 z m 5.054688,0.453081 c -0.02124,0.276096 -0.152207,0.410604 -0.396446,0.410604 h -0.863686 c -0.283176,0 -0.424764,-0.134508 -0.424764,-0.410604 v -4.247637 c 0,-0.283175 0.134508,-0.424763 0.410605,-0.424763 h 0.892004 c 0.244239,0.01062 0.375208,0.152206 0.396446,0.424763 z m 2.091962,-3.553857 v 3.582175 c 0,0.254858 -0.141588,0.382286 -0.424764,0.382286 -0.283176,0 -0.424764,-0.134508 -0.424764,-0.410604 v -4.261796 c 0,-0.261938 0.145128,-0.399986 0.438923,-0.410604 h 0.608828 c 0.159286,0 0.290255,0.09203 0.396446,0.269016 l 1.090227,2.91671 v -2.775122 c 0.02832,-0.283176 0.162825,-0.424764 0.410605,-0.424764 h 0.863686 c 0.283176,0 0.424764,0.141588 0.424764,0.424764 l -0.01416,4.261796 c 0,0.276096 -0.138048,0.410604 -0.410605,0.410604 h -1.132703 c -0.23716,0 -0.389367,-0.08849 -0.453081,-0.269016 z m 4.633464,-1.132703 c 0.283175,0 0.431843,0.141588 0.453081,0.424764 v 2.987505 h 2.081342 v -2.987505 c 0,-0.283176 0.141588,-0.424764 0.424764,-0.424764 0.283176,0 0.424763,0.141588 0.424763,0.424764 v 4.261796 c 0,0.276096 -0.141587,0.410604 -0.424763,0.410604 h -2.959187 c -0.283176,0 -0.421225,-0.134508 -0.410605,-0.410604 l -0.01416,-4.261796 c 0,-0.283176 0.141588,-0.424764 0.424765,-0.424764 z m 6.583837,1.968073 0.722098,-1.727373 c 0.09203,-0.159287 0.205303,-0.2407 0.339811,-0.2407 0.07433,0 0.155747,0.02124 0.2407,0.05663 0.169905,0.09557 0.254858,0.219462 0.254858,0.368129 0,0.06725 -0.02124,0.141588 -0.05663,0.22654 l -0.948639,2.237089 0.948639,1.557467 c 0.02832,0.08495 0.04247,0.162827 0.04247,0.226541 0,0.152207 -0.08141,0.276097 -0.2407,0.368128 -0.08495,0.03894 -0.166366,0.05663 -0.240699,0.05663 h -0.679622 c -0.134508,0 -0.2407,-0.07787 -0.325652,-0.240698 l -1.033592,-1.684897 -0.750416,1.699055 c -0.08495,0.162826 -0.198223,0.2407 -0.339811,0.2407 -0.07788,0 -0.152207,-0.02124 -0.22654,-0.0708 -0.180525,-0.08495 -0.269018,-0.201763 -0.269018,-0.353969 0,-0.07433 0.0177,-0.148668 0.05664,-0.226541 l 0.991115,-2.166296 -0.991115,-1.614102 c -0.02832,-0.07433 -0.04247,-0.148667 -0.04247,-0.22654 0,-0.148667 0.08495,-0.269017 0.254858,-0.353969 0.08495,-0.04602 0.162827,-0.0708 0.240699,-0.0708 l 0.665464,-0.01415 c 0.130968,0 0.244239,0.08141 0.339811,0.240699 z M 31.616355,13.737274"
id="path191"
style="display:inline;stroke-width:0.906163" />
</svg>

Before

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="64"
height="64"
viewBox="0 0 64 64"
version="1.1"
id="svg193"
sodipodi:docname="os_melawylinux.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:export-filename="os_melawylinux.png"
inkscape:export-xdpi="768"
inkscape:export-ydpi="768"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs197" />
<sodipodi:namedview
id="namedview195"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="9.1371454"
inkscape:cx="19.043147"
inkscape:cy="29.87804"
inkscape:window-width="1920"
inkscape:window-height="1014"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg193" />
<circle
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:1.02056"
id="path1"
cx="32"
cy="32"
r="32" />
<path
fill-rule="nonzero"
fill="#ff5555"
fill-opacity="1"
d="M 10.947002,39.950461 V 14.652372 h 5.618722 v 2.795521 h 2.823199 v 2.823202 h 2.795522 v -2.823202 h 2.823201 v -2.795521 h 5.618721 V 39.950461 H 25.007646 V 25.889818 h -2.823201 v 2.823199 h -2.795522 v -2.823199 h -2.823199 v 14.060643 z m 22.495646,-2.8232 V 25.889818 h 2.823199 v -2.8232 h 14.060645 v 2.8232 h 2.795521 v 5.618721 H 39.061369 v 5.618722 h 8.441922 v -2.795522 h 5.618722 v 2.795522 h -2.795521 v 2.8232 H 36.265847 v -2.8232 z m 5.618721,-11.237443 v 2.823199 h 8.441922 v -2.823199 z"
id="path187"
style="stroke-width:1.77143"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccc" />
<path
fill-rule="nonzero"
fill="#e5444c"
fill-opacity="1"
d="m 15.650703,50.096012 2.463382,0.02769 v -0.830353 c 0,-0.512051 0.276784,-0.781916 0.830352,-0.802675 0.553569,0.02076 0.830353,0.290624 0.830353,0.802675 v 1.688384 c 0,0.53972 -0.276784,0.802665 -0.830353,0.802665 h -5.784792 c -0.539728,0 -0.802674,-0.262945 -0.802674,-0.802674 l -0.02769,-8.33121 c 0,-0.553568 0.276783,-0.830353 0.830354,-0.830353 h 1.688393 c 0.477451,0 0.747316,0.276785 0.802673,0.830353 z m 5.542606,1.660706 c -0.262944,0 -0.387498,-0.138402 -0.387498,-0.415176 0,-0.08995 0.01382,-0.166071 0.05537,-0.221428 l -0.02769,-0.02769 1.688385,-7.058001 0.276783,-1.190172 0.08303,-0.332141 c 0.110714,-0.422095 0.359819,-0.636604 0.747318,-0.636604 h 0.138401 2.712487 0.1384 c 0.387499,0 0.622766,0.214509 0.71964,0.636604 l 0.08303,0.332141 2.020526,8.248173 c 0.01382,0.07612 0.02769,0.166071 0.02769,0.276784 0,0.276786 -0.138402,0.415177 -0.415178,0.415177 h -2.15892 -0.138402 c -0.373657,0 -0.608925,-0.20759 -0.719639,-0.636604 l -1.74373,-7.113346 -1.660708,7.085679 c -0.110713,0.429016 -0.359819,0.636603 -0.747315,0.636603 z m 3.958016,-0.802673 c -0.04153,0.553567 -0.304462,0.830352 -0.802675,0.830352 -0.553569,0 -0.830352,-0.262946 -0.830352,-0.802675 l -0.02769,-1.688384 c 0,-0.53281 0.276785,-0.802675 0.830353,-0.802675 0.512053,0 0.788837,0.276784 0.830354,0.830353 z m 11.424273,-4.068731 -0.664283,2.740164 -0.276783,1.190174 -0.08303,0.33214 c -0.07612,0.33214 -0.242187,0.539729 -0.498211,0.608926 v 0.02769 h -2.186601 -0.1384 c -0.37366,0 -0.608926,-0.207588 -0.71964,-0.636603 L 31.92564,50.81566 29.905115,42.567487 c -0.02076,-0.0692 -0.02769,-0.16607 -0.02769,-0.276784 0,-0.276784 0.1384,-0.415176 0.415176,-0.415176 h 2.158917 0.138401 c 0.387499,0 0.622766,0.214508 0.719639,0.636604 l 1.300888,5.258901 1.079459,-4.622299 0.138401,-0.608925 c 0.08995,-0.401336 0.311382,-0.615844 0.664281,-0.636604 h 0.166054 c 0.34598,0.02076 0.567406,0.235268 0.664283,0.636604 l 0.138401,0.608925 1.051779,4.511584 1.217852,-5.120509 c 0.110713,-0.422096 0.34598,-0.636604 0.71964,-0.636604 h 0.69196 c 0.276785,0 0.415176,0.138402 0.415176,0.415177 0,0.09688 -0.02076,0.16607 -0.05537,0.221427 v 0.02769 l -1.688384,7.058 -0.276785,1.190173 -0.08302,0.332141 c -0.07613,0.318301 -0.235267,0.51897 -0.470534,0.608926 v 0.02766 h -0.913388 v -0.02769 c -0.242187,-0.08995 -0.401338,-0.290625 -0.470534,-0.608925 l -0.08302,-0.332143 -0.276785,-1.190173 z m 7.978308,0.664283 -2.32499,-4.400872 c -0.07612,-0.14531 -0.110713,-0.290621 -0.110713,-0.442855 0,-0.290622 0.172998,-0.525889 0.525892,-0.691961 0.145308,-0.08995 0.290623,-0.1384 0.442854,-0.1384 l 1.328564,-0.02769 c 0.256027,0 0.470534,0.159144 0.636605,0.470533 l 1.688384,3.34909 1.799098,-3.37677 c 0.166071,-0.311364 0.387499,-0.470515 0.664282,-0.470515 0.124549,0 0.276786,0.04154 0.442855,0.110714 0.332141,0.186829 0.498213,0.429017 0.498213,0.719638 0,0.131476 -0.02769,0.276786 -0.08303,0.442856 l -2.214274,4.345515 v 3.542839 c -0.05539,0.539728 -0.325231,0.802674 -0.802684,0.802674 h -1.688384 c -0.53973,0 -0.802674,-0.262946 -0.802674,-0.802674 z"
id="path189"
sodipodi:nodetypes="ccscssssccssccsscccccsccscccsscscccsscsccscccccccccscccsscsccccccccccssscccccccccccccccsccccccscscccsssc"
style="stroke-width:1.77143" />
<path
fill-rule="nonzero"
fill="#96c5f6"
fill-opacity="1"
d="m 33.726015,20.827288 1.260133,0.01415 v -0.424763 c 0,-0.261938 0.141587,-0.399986 0.424763,-0.410604 0.283176,0.01062 0.424764,0.148666 0.424764,0.410604 v 0.863687 c 0,0.276096 -0.141588,0.410604 -0.424764,0.410604 h -2.959187 c -0.276096,0 -0.410605,-0.134508 -0.410605,-0.410604 l -0.01416,-4.261797 c 0,-0.283176 0.141588,-0.424764 0.424764,-0.424764 h 0.86369 c 0.244239,0 0.382288,0.141588 0.410605,0.424764 z m 5.054688,0.453081 c -0.02124,0.276096 -0.152207,0.410604 -0.396446,0.410604 h -0.863686 c -0.283176,0 -0.424764,-0.134508 -0.424764,-0.410604 v -4.247637 c 0,-0.283175 0.134508,-0.424763 0.410605,-0.424763 h 0.892004 c 0.244239,0.01062 0.375208,0.152206 0.396446,0.424763 z m 2.091962,-3.553857 v 3.582175 c 0,0.254858 -0.141588,0.382286 -0.424764,0.382286 -0.283176,0 -0.424764,-0.134508 -0.424764,-0.410604 v -4.261796 c 0,-0.261938 0.145128,-0.399986 0.438923,-0.410604 h 0.608828 c 0.159286,0 0.290255,0.09203 0.396446,0.269016 l 1.090227,2.91671 v -2.775122 c 0.02832,-0.283176 0.162825,-0.424764 0.410605,-0.424764 h 0.863686 c 0.283176,0 0.424764,0.141588 0.424764,0.424764 l -0.01416,4.261796 c 0,0.276096 -0.138048,0.410604 -0.410605,0.410604 h -1.132703 c -0.23716,0 -0.389367,-0.08849 -0.453081,-0.269016 z m 4.633464,-1.132703 c 0.283175,0 0.431843,0.141588 0.453081,0.424764 v 2.987505 h 2.081342 v -2.987505 c 0,-0.283176 0.141588,-0.424764 0.424764,-0.424764 0.283176,0 0.424763,0.141588 0.424763,0.424764 v 4.261796 c 0,0.276096 -0.141587,0.410604 -0.424763,0.410604 h -2.959187 c -0.283176,0 -0.421225,-0.134508 -0.410605,-0.410604 l -0.01416,-4.261796 c 0,-0.283176 0.141588,-0.424764 0.424765,-0.424764 z m 6.583837,1.968073 0.722098,-1.727373 c 0.09203,-0.159287 0.205303,-0.2407 0.339811,-0.2407 0.07433,0 0.155747,0.02124 0.2407,0.05663 0.169905,0.09557 0.254858,0.219462 0.254858,0.368129 0,0.06725 -0.02124,0.141588 -0.05663,0.22654 l -0.948639,2.237089 0.948639,1.557467 c 0.02832,0.08495 0.04247,0.162827 0.04247,0.226541 0,0.152207 -0.08141,0.276097 -0.2407,0.368128 -0.08495,0.03894 -0.166366,0.05663 -0.240699,0.05663 h -0.679622 c -0.134508,0 -0.2407,-0.07787 -0.325652,-0.240698 l -1.033592,-1.684897 -0.750416,1.699055 c -0.08495,0.162826 -0.198223,0.2407 -0.339811,0.2407 -0.07788,0 -0.152207,-0.02124 -0.22654,-0.0708 -0.180525,-0.08495 -0.269018,-0.201763 -0.269018,-0.353969 0,-0.07433 0.0177,-0.148668 0.05664,-0.226541 l 0.991115,-2.166296 -0.991115,-1.614102 c -0.02832,-0.07433 -0.04247,-0.148667 -0.04247,-0.22654 0,-0.148667 0.08495,-0.269017 0.254858,-0.353969 0.08495,-0.04602 0.162827,-0.0708 0.240699,-0.0708 l 0.665464,-0.01415 c 0.130968,0 0.244239,0.08141 0.339811,0.240699 z M 31.616355,13.737274"
id="path191"
style="display:inline;stroke-width:0.906163" />
</svg>

Before

Width:  |  Height:  |  Size: 8.0 KiB

14
launch.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# Script to generate mo files in a temp locale folder
# Use it only for testing purpose
rm -rf locale
mkdir locale
cd po
for lang in $(ls *.po); do
lang=${lang::-3}
mkdir -p ../locale/${lang//_/-}/LC_MESSAGES
msgfmt -c -o ../locale/${lang//_/-}/LC_MESSAGES/cachyos-hello.mo $lang.po
done
cd ..
./build/cachyos-hello --dev

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/org/melawy/welcome">
<file compressed="true" preprocess="xml-stripblanks">ui/melawy-welcome.glade</file>
<file compressed="true">ui/style.css</file>
<file compressed="true">data/img/external-link.png</file>
<file compressed="true">data/img/website.png</file>
<file compressed="true">data/img/mastodon.png</file>
<file compressed="true">data/img/discord.png</file>
</gresource>
</gresources>

View File

@ -1,75 +1,111 @@
project('melawy-welcome', 'rust',
version: '0.10.1',
project('cachyos-hello', 'cpp',
version: '0.6.9',
license: 'GPLv3',
meson_version: '>=0.56.0',
default_options: ['buildtype=debugoptimized',
meson_version: '>=0.55.0',
default_options: ['cpp_std=c++17',
'buildtype=debugoptimized',
'warning_level=3',
'werror=true',
'werror=false',
'b_ndebug=if-release'])
i18n = import('i18n')
gnome = import('gnome')
base_id = 'org.melawy.welcome'
dependency('glib-2.0', version: '>= 2.66')
dependency('gio-2.0', version: '>= 2.66')
dependency('gtk+-3.0', version: '>= 3.24.33')
desktop_file_validate = find_program('desktop-file-validate', required: false)
appstream_util = find_program('appstream-util', required: false)
cargo = find_program('cargo', required: true)
cargo_script = find_program('build-aux/cargo.py')
version = meson.project_version()
version_array = version.split('.')
major_version = version_array[0].to_int()
minor_version = version_array[1].to_int()
version_micro = version_array[2].to_int()
prefix = get_option('prefix')
bindir = prefix / get_option('bindir')
localedir = prefix / get_option('localedir')
datadir = prefix / get_option('datadir')
pkgdatadir = datadir / meson.project_name()
iconsdir = datadir / 'icons'
if get_option('profile') == 'development'
profile = 'Devel'
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip()
if vcs_tag == ''
version_suffix = '-devel'
else
version_suffix = '-@0@'.format(vcs_tag)
endif
application_id = '@0@.@1@'.format(base_id, profile)
else
profile = ''
version_suffix = ''
application_id = base_id
is_debug_build = get_option('buildtype').startswith('debug')
cc = meson.get_compiler('cpp')
if cc.get_id() == 'clang'
specific_cc_flags = [
'-nostdlib++',
#'-stdlib=libc++',
'-nodefaultlibs',
]
specific_link_flags = [
'-fuse-ld=lld',
]
add_global_arguments(cc.get_supported_arguments(specific_cc_flags), language : 'cpp')
add_global_link_arguments(cc.get_supported_link_arguments(specific_link_flags), language : 'cpp')
endif
meson.add_dist_script(
'build-aux/dist-vendor.sh',
meson.project_build_root() / 'meson-dist' / meson.project_name() + '-' + version,
meson.project_source_root()
)
if get_option('profile') == 'development'
# Setup pre-commit hook for ensuring coding style is always consistent
message('Setting up git pre-commit hook..')
run_command('cp', '-f', 'hooks/pre-commit.hook', '.git/hooks/pre-commit')
if is_debug_build
add_global_arguments('-D_GLIBCXX_ASSERTIONS', language : 'cpp')
endif
cargo_sources = files(
'Cargo.toml',
'Cargo.lock',
# Common dependencies
fmt = dependency('fmt', version : ['>=8.0.0'], fallback : ['fmt', 'fmt_dep'])
gtkmm = dependency('gtkmm-4.0', version : ['>=1.8.0'])
src_files = files(
'src/hello.cpp', 'src/hello.hpp',
'src/main.cpp',
)
#subdir('po')
subdir('src')
subdir('icons')
possible_cc_flags = [
'-Wshadow',
'-Wnon-virtual-dtor',
'-Wold-style-cast',
'-Wcast-align',
'-Wunused',
'-Woverloaded-virtual',
'-Wpedantic', # non-standard C++
'-Wconversion', # type conversion that may lose data
'-Wsign-conversion',
'-Wnull-dereference',
'-Wdouble-promotion', # float to double
'-Wformat=2',
'-Wimplicit-fallthrough', # fallthrough without an explicit annotation
]
if cc.get_id() == 'gcc'
possible_cc_flags += [
'-Wmisleading-indentation',
'-Wduplicated-cond',
'-Wduplicated-branches',
'-Wlogical-op',
'-Wuseless-cast',
'-Wsuggest-attribute=cold',
'-Wsuggest-attribute=format',
'-Wsuggest-attribute=malloc',
'-Wsuggest-attribute=noreturn',
'-Wsuggest-attribute=pure',
'-Wsuggest-final-methods',
'-Wsuggest-final-types',
'-Wdiv-by-zero',
'-Wanalyzer-double-fclose',
'-Wanalyzer-double-free',
'-Wanalyzer-malloc-leak',
'-Wanalyzer-use-after-free',
]
endif
if not is_debug_build
if cc.get_id() == 'gcc'
possible_cc_flags += [
'-flto',
'-fwhole-program',
'-fuse-linker-plugin',
]
else
possible_cc_flags += [
'-flto=thin',
]
endif
possible_cc_flags += ['-fdata-sections', '-ffunction-sections']
possible_link_flags = ['-Wl,--gc-sections', '-Wl,--export-dynamic']
add_project_link_arguments(cc.get_supported_link_arguments(possible_link_flags), language : 'cpp')
endif
add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'cpp')
executable(
'cachyos-hello',
src_files,
dependencies: [fmt, gtkmm],
include_directories: [include_directories('src')],
install: true)
install_data (
meson.project_name () + '.desktop',
@ -77,3 +113,22 @@ install_data (
)
meson.add_install_script('postinstall.sh')
summary(
{
'Build type': get_option('buildtype'),
},
bool_yn: true
)
clangtidy = find_program('clang-tidy', required: false)
if clangtidy.found()
run_target(
'tidy',
command: [
clangtidy,
'-checks=*,-fuchsia-default-arguments',
'-p', meson.build_root()
] + src_files)
endif

Some files were not shown because too many files have changed in this diff Show More