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
[build] | |
Include = /etc/pacman.d/mirrorlist | |
[core] | |
Include = /etc/pacman.d/mirrorlist | |
[main] | |
Include = /etc/pacman.d/mirrorlist | |
[apps] |
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
# | |
# /etc/fstab: static file system information | |
# | |
# <file system> <dir> <type> <options> <dump> <pass> | |
tmpfs /tmp tmpfs nodev,nosuid 0 0 | |
UUID=93251f0a-da19-415a-89f4-463bc2248c8b / ext4 defaults 0 1 | |
UUID=1713a511-7806-4d48-9267-2f02f3fa14ef /home ext4 defaults,noatime,discard 0 0 | |
UUID=2effc15f-688c-4686-b24c-2d2697200bee /data ext4 defaults,noatime,discard 0 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
[build] | |
Include = /etc/pacman.d/mirrorlist | |
[core] | |
Include = /etc/pacman.d/mirrorlist | |
[main] | |
Include = /etc/pacman.d/mirrorlist | |
[apps] |
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
Section "Device" | |
Identifier "Intel Graphics" | |
Driver "intel" | |
Option "AccelMethod" "uxa" | |
EndSection |
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
LS | |
Since Name_of_Mirror.com has been so generous to offer mirroring to a few other distributions, I was wondering what it would take for you to consider one more. | |
I'm writing on behalf of http://www.kaosx.us/, a small start-up Linux distribution. So far all packages used for this distribution are only available on three mirrors. | |
Currently the repositories are at a total of 5-6 Gb: | |
http://kaosx.us/packages/ | |
Please let me know if there is anything I can or need to do, to be considered for adding to your mirror. | |
Sincerely, |
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
#!/bin/bash | |
./replace_folder_file.sh ../places/scalable/folder-documents.svg | |
./replace_folder_file.sh ../places/scalable/folder-download.svg | |
./replace_folder_file.sh ../places/scalable/folder-dropbox.svg | |
./replace_folder_file.sh ../places/scalable/folder-music.svg | |
./replace_folder_file.sh ../places/scalable/folder-pictures.svg | |
./replace_folder_file.sh ../places/scalable/folder-publicshare.svg | |
./replace_folder_file.sh ../places/scalable/folder-remote.svg | |
./replace_folder_file.sh ../places/scalable/folder-saved-search.svg | |
./replace_folder_file.sh ../places/scalable/folder.svg |
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
#!/bin/bash | |
#This will replace the colors in a folder svg file. The one hack is that to change the foreground | |
#shape colors you must provide the old color and this color cannot be repeated anywhere that you do | |
#not want it to change. The folder back, paper, and front colors are precise replacements in | |
#xml. However, the glyph color replacement is a regular expression search/replace. To change the | |
#glyph color again, you must replace the original value with the new value and run it again. | |
backColor=1abc9c #default is 34495d | |
frontColor=2980b9 #default is 1abc9c | |
paperColor=ffffff #default is ffffff |
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
# | |
# /etc/fstab: static file system information | |
# | |
# <file system> <dir> <type> <options> <dump> <pass> | |
tmpfs /tmp tmpfs nodev,nosuid 0 0 | |
UUID=19a9e7a7-5fbf-407b-b710-4e6704d4f9fc / ext4 defaults 0 1 | |
UUID=69a32168-6a9f-4f5e-9929-78412a18ba27 swap swap defaults 0 0 | |
UUID=b35a6b4e-c1a1-40d1-8cd3-9e30b7c9ce39 /home ext4 defaults 0 0 | |
UUID=2effc15f-688c-4686-b24c-2d2697200bee /data ext4 defaults,noatime,discard 0 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
sudo pacman -Syu | |
sudo pacman -S nvidia-bumblebee bbswitch bumblebee | |
sudo systemctl enable bumblebeed | |
sudo usermod -a -G bumblebee user_name |
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
#!/bin/bash | |
if [[ "$DESKTOP_SESSION" == "kf5-plasma" ]]; then | |
export QTDIR="/usr/lib/qt5" | |
export PATH="usr/bin:$QTDIR/bin:$PATH" | |
export QT_PLUGIN_PATH="/usr/lib/plugins:/usr/lib/qt5/plugins" | |
export QT_INCLUDE_PATH="/usr/include/qt5" | |
export QML2_IMPORT_PATH="/usr/lib/qml:/usr/lib/qt5/qml" | |
export QML_IMPORT_PATH="$QML2_IMPORT_PATH" | |
export KDE_SESSION_VERSION=5 |
OlderNewer