Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

Commit

Permalink
apps não suportados
Browse files Browse the repository at this point in the history
  • Loading branch information
rafael-neri committed Jun 16, 2016
1 parent a9980d5 commit 6443824
Show file tree
Hide file tree
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.
9 changes: 9 additions & 0 deletions big-apt-force-yes-confnew/DEBIAN/control
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.


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";
}
10 changes: 10 additions & 0 deletions big-apt-force-yes-confold/DEBIAN/control
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.


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";
}
8 changes: 8 additions & 0 deletions big-apt-get-tweaks/DEBIAN/control
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

15 changes: 15 additions & 0 deletions big-apt-get-tweaks/etc/apt/apt.conf.d/18bigtweaks
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"; }
8 changes: 8 additions & 0 deletions big-apt-get-tweaks/etc/apt/apt.conf.d/19bigcleanset
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 ";};

26 changes: 26 additions & 0 deletions big-apt-get-tweaks/usr/bin/dpkg-clean-set
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
10 changes: 10 additions & 0 deletions big-backlight/DEBIAN/control
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

17 changes: 17 additions & 0 deletions big-backlight/etc/init/bigbacklightrestore.conf
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
17 changes: 17 additions & 0 deletions big-backlight/etc/init/bigbacklightsave.conf
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
9 changes: 9 additions & 0 deletions big-fix-kde-start/DEBIAN/control
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

24 changes: 24 additions & 0 deletions big-fix-kde-start/DEBIAN/postrm
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
30 changes: 30 additions & 0 deletions big-fix-kde-start/DEBIAN/preinst
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
33 changes: 33 additions & 0 deletions big-fix-kde-start/usr/bin/startkde
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
10 changes: 10 additions & 0 deletions big-fstab-tweak/DEBIAN/control
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

15 changes: 15 additions & 0 deletions big-fstab-tweak/DEBIAN/postrm
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
20 changes: 20 additions & 0 deletions big-fstab-tweak/DEBIAN/preinst
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
12 changes: 12 additions & 0 deletions big-fstab-tweak/etc/init/fstabtweaks.conf
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
9 changes: 9 additions & 0 deletions big-grubtweaks/DEBIAN/control
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

15 changes: 15 additions & 0 deletions big-grubtweaks/DEBIAN/postinst
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
24 changes: 24 additions & 0 deletions big-grubtweaks/DEBIAN/postrm
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
30 changes: 30 additions & 0 deletions big-grubtweaks/DEBIAN/preinst
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
Loading

0 comments on commit 6443824

Please sign in to comment.