This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9980d5
commit 6443824
Showing
23,522 changed files
with
758,115 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Package: big-apt-force-yes-confnew | ||
Version: 1.0.0-1kaiana1 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Section: admin | ||
Priority: optional | ||
Description: Reduz o numero de perguntas do apt-get, facilitando a instalacao e atualizacao de programas, caso exista uma configuracao anterior sera automaticamente substituida pela nova configuracao do pacote atualizado. | ||
|
||
|
7 changes: 7 additions & 0 deletions
7
big-apt-force-yes-confnew/etc/apt/apt.conf.d/20bigforceyesconfnew
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,7 @@ | ||
APT::Get::Assume-Yes "true"; | ||
APT::Get::force-yes "true"; | ||
APT::Quiet "true"; | ||
Dpkg::Options { | ||
"--force-confdef"; | ||
"--force-confnew"; | ||
} |
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,10 @@ | ||
Package: big-apt-force-yes-confold | ||
Version: 1.0.0-1kaiana2 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Section: admin | ||
Priority: optional | ||
conflicts: big-apt-force-yes-confnew | ||
Description: Reduz o numero de perguntas do apt-get, facilitando a instalacao e atualizacao de programas, caso exista uma configuracao anterior sera automaticamente mantida. | ||
|
||
|
7 changes: 7 additions & 0 deletions
7
big-apt-force-yes-confold/etc/apt/apt.conf.d/20bigforceyesconfold
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,7 @@ | ||
APT::Get::Assume-Yes "true"; | ||
APT::Get::force-yes "true"; | ||
APT::Quiet "true"; | ||
Dpkg::Options { | ||
"--force-confdef"; | ||
"--force-confold"; | ||
} |
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,8 @@ | ||
Package: big-apt-get-tweaks | ||
Version: 2.0.0-1kaiana7 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Section: admin | ||
Priority: optional | ||
Description: Improve apt-get and dpkg configuration for desktops | ||
|
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,15 @@ | ||
###################### | ||
# Tweaks for apt | ||
# by Bruno Gonçalves Araujo <[email protected]> | ||
# licensed under GPLv2 or greater. | ||
# released in 7/17/2015 | ||
|
||
Acquire::http::timeout "10"; | ||
APT::Immediate-Configure "false"; | ||
DPkg::StopOnError "false"; | ||
T::Cache-Limit 2200000000; | ||
APT { Get { Fix-Broken "true"; }; }; | ||
DPkg { Options {"--force-all";}; }; | ||
DPkg { Options {"--abort-after=9999999";}; }; | ||
DPkg::Post-Invoke {"dpkg --abort-after=9999999 --configure -a "; "apt-get -f install "; "dpkg --abort-after=9999999 --configure -a "}; | ||
Acquire::http { Pipeline-Depth "8"; } |
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,8 @@ | ||
###################### | ||
# Tweaks for dpkg | ||
# by Bruno Gonçalves Araujo <[email protected]> | ||
# licensed under GPLv2 or greater. | ||
# released in 7/17/2015 | ||
|
||
DPkg::Pre-Invoke {"/usr/bin/dpkg-clean-set ";}; | ||
|
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,26 @@ | ||
#!/bin/bash | ||
|
||
###################### | ||
# Tweaks for dpkg | ||
# by Bruno Gonçalves Araujo <[email protected]> | ||
# licensed under GPLv2 or greater. | ||
# released in 7/17/2015 | ||
|
||
|
||
|
||
for i in $(grep -l "set -e" /var/lib/dpkg/info/*.pre*); do | ||
sed -i 's|set -e||g' $i | ||
done | ||
|
||
for i in $(grep -l "set -e" /var/lib/dpkg/info/*.post*); do | ||
sed -i 's|set -e||g' $i | ||
done | ||
|
||
|
||
for i in $(grep -l 'exit $?' /var/lib/dpkg/info/*.pre*); do | ||
sed -i 's|exit $?|exit 0|g' $i | ||
done | ||
|
||
for i in $(grep -l 'exit $?' /var/lib/dpkg/info/*.post*); do | ||
sed -i 's|exit $?|exit 0|g' $i | ||
done |
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,10 @@ | ||
Package: big-backlight | ||
Version: 1.0.0-1kaiana1 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Installed-Size: 100 | ||
Depends: acpi-support | ||
Section: admin | ||
Priority: optional | ||
Description: Fix backlight configuration | ||
|
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,17 @@ | ||
# BigBacklightRestore | ||
|
||
description "Restore Backlight configuration" | ||
author "Bruno Goncalves Araujo" | ||
|
||
start on (filesystem | ||
and started dbus | ||
and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 | ||
or stopped udev-fallback-graphics)) | ||
script | ||
|
||
for i in $(ls /etc/bigbacklight) | ||
do | ||
cat "/etc/bigbacklight/$i" > "/sys/class/backlight/$i/brightness" | ||
done | ||
|
||
end script |
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,17 @@ | ||
# BigBacklightSave | ||
|
||
description "Save Backlight configuration" | ||
author "Bruno Goncalves Araujo" | ||
|
||
start on runlevel [06] | ||
script | ||
|
||
rm -Rf /etc/bigbacklight 2> /dev/null | ||
mkdir /etc/bigbacklight 2> /dev/null | ||
|
||
for i in $(ls /sys/class/backlight) | ||
do | ||
cat "/sys/class/backlight/$i/brightness" > "/etc/bigbacklight/$i" | ||
done | ||
|
||
end script |
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,9 @@ | ||
Package: big-fix-kde-start | ||
Version: 1.0.0-0kaiana2 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Installed-Size: 1 | ||
Section: admin | ||
Priority: optional | ||
Description: Fix kde start | ||
|
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,24 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-fix-kde-start | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
case "$1" in | ||
remove) | ||
dpkg-divert --package $package_name --rename --remove /usr/bin/startkde | ||
;; | ||
purge) | ||
;; | ||
upgrade) | ||
;; | ||
*) echo "$0: didn't understand being called with \`$1'" 1>&2 | ||
exit 0;; | ||
esac | ||
|
||
exit 0 |
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,30 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-fix-kde-start | ||
mkdir -p /usr/share/dpkgdivert/ | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
case "$1" in | ||
install) | ||
dpkg-divert --package $package_name --divert /usr/bin/startkde.distrib --rename /usr/bin/startkde | ||
;; | ||
upgrade) | ||
if [ "$(dpkg-divert --list /usr/bin/startkde)" = "" ] | ||
then | ||
dpkg-divert --package $package_name --divert /usr/bin/startkde.distrib --rename /usr/bin/startkde | ||
fi | ||
|
||
;; | ||
abort-upgrade) | ||
;; | ||
*) echo "$0: didn't understand being called with \`$1'" 1>&2 | ||
exit 0;; | ||
esac | ||
|
||
exit 0 |
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,33 @@ | ||
#!/bin/sh | ||
|
||
export QT_NO_GLIB=1 | ||
export KDE_IS_PRELINKED=1 | ||
export KDE_MALLOC=1 | ||
|
||
if [ -e "/usr/share/bigcontrolcenter/categories/themes/kaianasplash/xprofile" ] | ||
then | ||
|
||
if ! [ -e "$HOME/.config/kaianasplash/selecionados" ] | ||
then | ||
mkdir -p "$HOME/.config/kaianasplash/" | ||
echo 'kaiana_splash_blocktube | ||
kaiana_splash_boxfit | ||
kaiana_splash_carousel | ||
kaiana_splash_fadeplot | ||
kaiana_splash_flipscreen3d | ||
kaiana_splash_fluidballs | ||
kaiana_splash_flurry | ||
kaiana_splash_glmatrix | ||
kaiana_splash_glschool | ||
kaiana_splash_lockward | ||
kaiana_splash_munch | ||
kaiana_splash_noof | ||
kaiana_splash_piecewise' > "$HOME/.config/kaianasplash/selecionados" | ||
fi | ||
|
||
/usr/share/bigcontrolcenter/categories/themes/kaianasplash/xprofile & | ||
|
||
fi | ||
|
||
|
||
/usr/bin/startkde.distrib |
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,10 @@ | ||
Package: big-fstab-tweak | ||
Version: 1.0.2-0kaiana5 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Installed-Size: 1 | ||
Section: admin | ||
Priority: optional | ||
Depends: big-grubtweaks | ||
Description: Configura o fstab para melhorar o desempenho do hd ou ssd | ||
|
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,15 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-fstab-tweak | ||
mkdir -p /usr/share/dpkgdivert/ | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
sed -i 's|ext4 errors=remount-ro,noatime,nodiratime,data=writeback,nobh,barrier=0,commit=20 |ext4 errors=remount-ro |g' /etc/fstab 2> /dev/null | ||
sed -i 's|ext4 errors=remount-ro,noatime |ext4 errors=remount-ro |g' /etc/fstab 2> /dev/null | ||
exit 0 |
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,20 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-fstab-tweak | ||
mkdir -p /usr/share/dpkgdivert/ | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
case "$1" in | ||
upgrade|install) | ||
sed -i 's|ext4 errors=remount-ro |ext4 errors=remount-ro,noatime |g' /etc/fstab 2> /dev/null | ||
sed -i 's|ext4 errors=remount-ro,noatime,nodiratime,data=writeback,nobh,barrier=0,commit=20 |ext4 errors=remount-ro,noatime |g' /etc/fstab 2> /dev/null | ||
;; | ||
esac | ||
|
||
exit 0 |
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,12 @@ | ||
# based on lightdm upstart script | ||
|
||
description "fstab tweaks" | ||
author "Bruno Goncalves <[email protected]>" | ||
|
||
start on (filesystem | ||
and runlevel [!06]) | ||
|
||
|
||
script | ||
sed -i 's|ext4 errors=remount-ro |ext4 errors=remount-ro,noatime |g' /etc/fstab | ||
end script |
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,9 @@ | ||
Package: big-grubtweaks | ||
Version: 1.0.4-0kaiana2 | ||
Architecture: all | ||
Maintainer: Bruno Goncalves <www.biglinux.com.br> | ||
Installed-Size: 1 | ||
Section: admin | ||
Priority: optional | ||
Description: Melhora a configuração do Grub | ||
|
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,15 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-grubtweaks | ||
mkdir -p /usr/share/dpkgdivert/ | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
update-grub | ||
|
||
exit 0 |
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,24 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-grubtweaks | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
case "$1" in | ||
remove) | ||
dpkg-divert --package $package_name --rename --remove /etc/default/grub | ||
;; | ||
purge) | ||
;; | ||
upgrade) | ||
;; | ||
*) echo "$0: didn't understand being called with \`$1'" 1>&2 | ||
exit 0;; | ||
esac | ||
|
||
exit 0 |
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,30 @@ | ||
#! /bin/sh | ||
|
||
set -e | ||
|
||
package_name=big-grubtweaks | ||
mkdir -p /usr/share/dpkgdivert/ | ||
|
||
if [ -z "$package_name" ]; then | ||
print >&2 "Internal Error. Please report a bug." | ||
exit 1; | ||
fi | ||
|
||
case "$1" in | ||
install) | ||
dpkg-divert --package $package_name --divert /usr/share/dpkgdivert/grub --rename /etc/default/grub | ||
;; | ||
upgrade) | ||
if [ "$(dpkg-divert --list /etc/default/grub)" = "" ] | ||
then | ||
dpkg-divert --package $package_name --divert /usr/share/dpkgdivert/grub --rename /etc/default/grub | ||
fi | ||
|
||
;; | ||
abort-upgrade) | ||
;; | ||
*) echo "$0: didn't understand being called with \`$1'" 1>&2 | ||
exit 0;; | ||
esac | ||
|
||
exit 0 |
Oops, something went wrong.