This file contains hidden or 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
| ## create a file .rules in /etc/udev/rules.d directory | |
| ## find KERNEL with 'ls -1 /sys/class/backlight' | |
| ## ATTR{brightness} between 0 and 100 | |
| # | |
| SUBSYSTEM=="backlight", ACTION=="add", KERNEL=="acpi_video0", ATTR{brightness}="15" |
This file contains hidden or 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
| wget http://corefonts.sourceforge.net/msttcorefonts-2.5-1.spec | |
| su -c 'yum install rpm-build cabextract ttmkfdir' | |
| rpmbuild -bb msttcorefonts-2.5-1.spec | |
| su -c 'yum install ~/rpmbuild/RPMS/noarch/msttcorefonts-2.5-1.noarch.rpm' |
This file contains hidden or 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
| #! /bin/sh | |
| MODPROBE_D="/etc/modprobe.d" | |
| SYSCTL_D="/etc/sysctl.d" | |
| UDEV_RULES="/etc/udev/rules.d" | |
| FILE="pm_$HOSTNAME" | |
| ## modprobe config | |
| # |
This file contains hidden or 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
| "" Copy content into $HOME/.vimrc | |
| " Enable 256 colors mode | |
| set t_Co=256 | |
| " Enable synthax highlighting | |
| syntax on | |
| " Enable autoindent | |
| set ai | |
| " Disable vi-compatible |
This file contains hidden or 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
| ## Copy content into $HOME/.newsbeuter/config | |
| # GUI | |
| color listfocus white blue | |
| color listnormal_unread green default | |
| color listfocus_unread white green | |
| color info default default reverse bold | |
| # Others options | |
| browser firefox |
This file contains hidden or 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
| #!/bin/sh | |
| ## Download a theme (see http://gnome-look.org) | |
| ## - https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz | |
| ## And unarchive it and go into | |
| THEME="MediterraneanWhite" | |
| DST="$HOME/.local/share/themes" | |
| # copy theme |
This file contains hidden or 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
| # Gnome 3.8, show logout button | |
| gsettings set org.gnome.shell always-show-log-out true | |
| # Gnome 3.8, natural scroll | |
| gsettings set org.gnome.settings-daemon.peripherals.touchpad natural-scroll true | |
| # Gnome 3.8, no cursor blink | |
| gsettings set org.gnome.desktop.interface cursor-blink false | |
This file contains hidden or 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
| sed -i "/#Storage=auto/a Storage=volatile" /etc/systemd/journald.conf | |
| rm -rf /var/log/journal | |
| systemctl restart systemd-journald.service |
This file contains hidden or 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
| #!/bin/sh | |
| DIR="$HOME/.config/dwb" | |
| FIC="liste_fr+easylist.txt" | |
| rm $DIR/$FIC* | |
| wget -P $DIR https://easylist-downloads.adblockplus.org/$FIC | |
| notify-send --hint=int:transient:1 --expire-time=50 "Easylist+liste_fr for dwb is up to date." |
This file contains hidden or 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
| # as root on current fedora | |
| yum update | |
| yum upgrade | |
| yum install fedup | |
| reboot | |
| fedup --network $RELEASE | |
| reboot | |
| # choose fedup on grub and wait... |
OlderNewer