#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
>>> This driver now uses SNA as the default acceleration method. You can | |
still fall back to UXA if you run into trouble. To do so, save a file | |
with the following content as /etc/X11/xorg.conf.d/20-intel.conf : | |
Section "Device" | |
Identifier "Intel Graphics" | |
Driver "intel" | |
Option "AccelMethod" "uxa" | |
EndSection |
#!/usr/bin/env bash | |
# Runs a command wrapped in btrfs snapper pre-post snapshots. | |
# Usage: $ snp <commands> | |
# e.g.: $ snp pacman -Syyu | |
# Requirements: snapper (https://wiki.archlinux.org/title/snapper) | |
# The latest version of this script is hosted at https://gist.github.com/erikw/5229436 | |
log_path="/var/local/log/snp" | |
date=$(date "+%Y-%m-%d-%H%M%S") | |
log_file="${log_path}/snp_${date}.log" |
#!/bin/sh | |
case $1 in | |
config) | |
cat <<'EOM' | |
graph_title DHCP Leases | |
graph_vlabel leases | |
graph_args -l 0 | |
graph_category DNSMasq | |
graph_scale no |