Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9cdaac7413 | ||
|
|
9a17694bc9 | ||
|
|
e6bddb75c8 | ||
|
|
a36cbbe4eb |
@@ -0,0 +1,52 @@
|
||||
output HDMI-1
|
||||
off
|
||||
output HDMI-3
|
||||
off
|
||||
output DVI-D-1-0
|
||||
off
|
||||
output DP-1-0
|
||||
off
|
||||
output DP-1-1
|
||||
off
|
||||
output DP-1-2
|
||||
off
|
||||
output DP-1-3
|
||||
off
|
||||
output DP-1-4
|
||||
off
|
||||
output DP-1-5
|
||||
off
|
||||
output HDMI-1-0
|
||||
off
|
||||
output DP-1
|
||||
crtc 0
|
||||
mode 2560x1080
|
||||
pos 0x0
|
||||
primary
|
||||
rate 59.98
|
||||
x-prop-audio auto
|
||||
x-prop-broadcast_rgb Automatic
|
||||
x-prop-colorspace Default
|
||||
x-prop-max_bpc 12
|
||||
x-prop-non_desktop 0
|
||||
output HDMI-2
|
||||
crtc 1
|
||||
mode 1920x1080
|
||||
pos 4240x0
|
||||
rate 60.00
|
||||
x-prop-aspect_ratio Automatic
|
||||
x-prop-audio auto
|
||||
x-prop-broadcast_rgb Automatic
|
||||
x-prop-colorspace Default
|
||||
x-prop-max_bpc 12
|
||||
x-prop-non_desktop 0
|
||||
output DP-2
|
||||
crtc 2
|
||||
mode 1680x1050
|
||||
pos 2560x460
|
||||
rate 59.95
|
||||
x-prop-audio auto
|
||||
x-prop-broadcast_rgb Automatic
|
||||
x-prop-colorspace Default
|
||||
x-prop-max_bpc 12
|
||||
x-prop-non_desktop 0
|
||||
@@ -0,0 +1,4 @@
|
||||
DP-1 00ffffffffffff00046932290dea00001c170104a5431c783aca95a6554ea1260f5054b7ef00d1c0b30095008180814081c08100714fcd4600a0a0381f4030203a00a11c2100001a000000ff0044374c4d54463035393931370a000000fd00174c18531804110140f838f03c000000fc00415355532050423239380a202001a502032571520102031112130414051f900e0f1d1e2220212309170783010000656e0c0010008c0ad08a20e02d10103e9600a11c21000018011d007251d01e206e285500a11c2100001e011d00bc52d01e20b8285540a11c2100001e8c0ad090204031200c405500a11c21000018000000000000000000000000000000000000cd
|
||||
DP-2 00ffffffffffff004162685096de81022a120104a52e1d7826e525a65444a125145054a56b807100814081809500a900b3000101010121399030621a274068b03600d0221100001c000000fd00384c1e5110000a202020202020000000fc00504b422056495332323257530a000000ff003432303635353538333030380a0087
|
||||
HDMI-1-0 00ffffffffffff0061a49a0000000000271b0103803c22780acf74a3574cb02309484c2108008180810061409500a9c0b300a940d100023a801871382d40582c4500e00e1100001e3c414096b00824701e0a4804d0c22100001e000000fc004d692054560a20202020202020000000fd0031500f8c3c000a20202020202001d702033b714f5f0304056490121314162021221f3f29090707111750510700830100006e030c003000f87620808001020304e50e60616566e3060501e26800a0a0402e603020360080902100001e565e00a0a0a029503020360080682100001e662156aa51001e30468f330055c01000001e0000000000000000000000000000f2
|
||||
HDMI-2 00ffffffffffff004c2d3a0d00060001011a0103805932780a23ada4544d99260f474abdef80714f81c0810081809500a9c0b300010104740030f2705a80b0588a00501d7400001e023a801871382d40582c4500501d7400001e000000fd00184b0f511e000a202020202020000000fc0053414d53554e470a20202020200129020346f0535f101f041305142021225d5e62636407160312290907071507503d04c083010000e2000fe30503016e030c001000b83c20008001020304e3060d01e50e60616566011d80d0721c1620102c2580501d7400009e662156aa51001e30468f3300501d7400001e000000000000000000000000000000000000000000cd
|
||||
@@ -0,0 +1,2 @@
|
||||
[config]
|
||||
skip-options=gamma
|
||||
@@ -11,7 +11,10 @@ Evil mode and related packages.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package undo-tree
|
||||
:config (global-undo-tree-mode))
|
||||
:config
|
||||
(setq undo-tree-auto-save-history t)
|
||||
(setq undo-tree-history-directory-alist `(("." . ,(concat dot-cache-dir "/undo-tree"))))
|
||||
(global-undo-tree-mode))
|
||||
|
||||
(use-package goto-chg)
|
||||
|
||||
@@ -48,7 +51,7 @@ Vim equivalence: <C-D>"
|
||||
(interactive)
|
||||
(evil-shift-left-line 1))
|
||||
|
||||
(defun dot/evil-insert-shift-right ()
|
||||
(defun dot/evil-insert-shift-right ()
|
||||
"Shift line right, retains cursor position.
|
||||
|
||||
Vim equivalence: <Tab>"
|
||||
|
||||
@@ -30,9 +30,13 @@ output() {
|
||||
echo "%{F$color}$symbol $difference%%{F$COLOR15}"
|
||||
}
|
||||
|
||||
# Only pull if older than 10 seconds
|
||||
lastModified=$(calc "$(date +%s) - $(date +%s -r $file) >= 10" | cut -c 1)
|
||||
if [ "$lastModified" -eq 0 ]; then cat "$file"; exit; fi
|
||||
if [ ! -f "$file" ]; then
|
||||
touch "$file"
|
||||
else
|
||||
# Only pull if older than 10 seconds
|
||||
lastModified=$(calc "$(date +%s) - $(date +%s -r $file) >= 10" | cut -c 1)
|
||||
if [ "$lastModified" -eq 0 ]; then cat "$file"; exit; fi
|
||||
fi
|
||||
|
||||
# Get dates
|
||||
date_last_week_start="$(date --date 'last week' +%s000)"
|
||||
|
||||
@@ -77,6 +77,7 @@ done
|
||||
pulseTcp()
|
||||
{
|
||||
if test "$2" = "off" || test "$2" = "0"; then
|
||||
echo "Disabling PulseAudio TCP module"
|
||||
if pactl list modules short | grep -q module-simple-protocol-tcp; then
|
||||
pactl unload-module module-simple-protocol-tcp
|
||||
fi
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it under the
|
||||
# terms of the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 2.1 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Entries in this file show the compile time defaults. Local configuration
|
||||
# should be created by either modifying this file, or by creating "drop-ins" in
|
||||
# the journald.conf.d/ subdirectory. The latter is generally recommended.
|
||||
# Defaults can be restored by simply deleting this file and all drop-ins.
|
||||
#
|
||||
# Use 'systemd-analyze cat-config systemd/journald.conf' to display the full config.
|
||||
#
|
||||
# See journald.conf(5) for details.
|
||||
|
||||
[Journal]
|
||||
#Storage=auto
|
||||
#Compress=yes
|
||||
#Seal=yes
|
||||
#SplitMode=uid
|
||||
#SyncIntervalSec=5m
|
||||
#RateLimitIntervalSec=30s
|
||||
#RateLimitBurst=10000
|
||||
SystemMaxUse=256M
|
||||
#SystemKeepFree=
|
||||
#SystemMaxFileSize=
|
||||
#SystemMaxFiles=100
|
||||
#RuntimeMaxUse=
|
||||
#RuntimeKeepFree=
|
||||
#RuntimeMaxFileSize=
|
||||
#RuntimeMaxFiles=100
|
||||
#MaxRetentionSec=
|
||||
MaxFileSec=2week
|
||||
#ForwardToSyslog=no
|
||||
#ForwardToKMsg=no
|
||||
#ForwardToConsole=no
|
||||
#ForwardToWall=yes
|
||||
#TTYPath=/dev/console
|
||||
#MaxLevelStore=debug
|
||||
#MaxLevelSyslog=debug
|
||||
#MaxLevelKMsg=notice
|
||||
#MaxLevelConsole=info
|
||||
#MaxLevelWall=emerg
|
||||
#LineMax=48K
|
||||
#ReadKMsg=yes
|
||||
#Audit=yes
|
||||
@@ -7,7 +7,7 @@
|
||||
#
|
||||
# Entries in this file show the compile time defaults. Local configuration
|
||||
# should be created by either modifying this file, or by creating "drop-ins" in
|
||||
# the login.conf.d/ subdirectory. The latter is generally recommended.
|
||||
# the logind.conf.d/ subdirectory. The latter is generally recommended.
|
||||
# Defaults can be restored by simply deleting this file and all drop-ins.
|
||||
#
|
||||
# Use 'systemd-analyze cat-config systemd/logind.conf' to display the full config.
|
||||
@@ -39,7 +39,7 @@ HandlePowerKey=ignore
|
||||
#IdleAction=ignore
|
||||
#IdleActionSec=30min
|
||||
#RuntimeDirectorySize=10%
|
||||
#RuntimeDirectoryInodes=400k
|
||||
#RuntimeDirectoryInodesMax=400k
|
||||
#RemoveIPC=yes
|
||||
#InhibitorsMax=8192
|
||||
#SessionsMax=8192
|
||||
|
||||
Reference in New Issue
Block a user