This repository has been archived by the owner on May 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' with latest Dustin's changes
- Loading branch information
Showing
6 changed files
with
99 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,48 @@ | ||
# Cnchi | ||
= Cnchi = | ||
|
||
Graphical Installer for Antergos Linux (FKA Cinnarch Linux) | ||
**Graphical Installer for Antergos Linux (FKA Cinnarch Linux)** | ||
|
||
Usage: sudo -E cnchi.py | ||
Usage: | ||
```lang=sh | ||
sudo -E cnchi.py``` | ||
To create logs to help debug problems: sudo -E cnchi.py -dv | ||
To create logs to help debug problems: | ||
```lang=sh | ||
sudo -E cnchi.py -dv``` | ||
## Translations | ||
==Translations | ||
We manage our translations in transifex: | ||
* https://www.transifex.com/projects/p/antergos/ | ||
|
||
## Dependencies | ||
|
||
* gtk3 | ||
* python3 | ||
* python-cairo | ||
* python-dbus | ||
* python-gobject | ||
* python-mako | ||
* pyparted (parted, dosfstools, mtools, ntfs-3g, ntfsprogs) | ||
* pyalpm (pacman) | ||
* libtimezonemap | ||
* webkitgtk | ||
* hdparm | ||
* hwinfo | ||
* upower | ||
- https://www.transifex.com/projects/p/antergos/ | ||
==Dependencies | ||
- gtk3 | ||
- python3 | ||
- python-cairo | ||
- python-dbus | ||
- python-gobject | ||
- python-mako | ||
- pyparted (parted, dosfstools, mtools, ntfs-3g, ntfsprogs) | ||
- pyalpm (pacman) | ||
- libtimezonemap | ||
- webkitgtk | ||
- hdparm | ||
- hwinfo | ||
- upower | ||
#### Unit tests | ||
==Unit tests | ||
* python-mock | ||
- python-mock | ||
#### Fonts needed by the keyboard widget | ||
==Fonts needed by the keyboard widget | ||
* ttf-aboriginal-sans | ||
* ttf-indic-otf | ||
* ttf-khmer | ||
* ttf-lohit-fonts | ||
* ttf-myanmar3 | ||
* ttf-thaana-fonts | ||
* ttf-tlwg | ||
- ttf-aboriginal-sans | ||
- ttf-indic-otf | ||
- ttf-khmer | ||
- ttf-lohit-fonts | ||
- ttf-myanmar3 | ||
- ttf-thaana-fonts | ||
- ttf-tlwg | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<fontconfig> | ||
<match target="font"> | ||
<edit mode="assign" name="hinting" > | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font" > | ||
<edit mode="assign" name="autohint" > | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="hintstyle" > | ||
<const>hintslight</const> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="rgba" > | ||
<const>rgb</const> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="antialias" > | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="lcdfilter"> | ||
<const>lcddefault</const> | ||
</edit> | ||
</match> | ||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,9 @@ if [[ ${DESKTOP} == 'gnome' ]];then | |
# Enable lockscreen extension | ||
dbus-launch gsettings set org.gnome.shell enabled-extensions "['[email protected]']" | ||
|
||
# Disable Terminal Bell | ||
dbus-launch gsettings set org.gnome.desktop.wm.preferences audible-bell false | ||
|
||
fi | ||
|
||
if [[ ${DESKTOP} == 'cinnamon' ]];then | ||
|
@@ -70,6 +73,10 @@ if [[ ${DESKTOP} == 'cinnamon' ]];then | |
# Set icon theme | ||
dbus-launch gsettings set org.cinnamon.desktop.interface icon-theme "Faenza-Dark" | ||
dbus-launch gsettings set org.gnome.desktop.interface icon-theme "Faenza-Dark" | ||
|
||
# Disable Terminal Bell | ||
dbus-launch gsettings set org.cinnamon.desktop.wm.preferences audible-bell false | ||
dbus-launch gsettings set org.gnome.desktop.wm.preferences audible-bell false | ||
|
||
fi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters