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 | |
logfile=/tmp/bspwm_external_rules.log | |
window_id="$1" | |
window_class="$2" | |
window_instance="$3" | |
window_title="$(xwininfo -id "$window_id" | sed '/^xwininfo/!d ; s,.*"\(.*\)".*,\1,')" | |
window_type="$(xprop -id "$window_id" _NET_WM_WINDOW_TYPE | sed '/^_NET_WM_WINDOW_TYPE/!d ; s/^.* = \(.*\),.*/\1/')" | |
case "$window_title" in |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<description>Default settings</description> | |
<match target="font"> | |
<edit mode="assign" name="antialias"> <bool>true</bool> </edit> | |
<edit mode="assign" name="embeddedbitmap"> <bool>true</bool> </edit> | |
<edit mode="assign" name="hinting"> <bool>true</bool> </edit> | |
<edit mode="assign" name="hintstyle"> <const>hintfull</const> </edit> |
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
-- my awesome config | |
-- vim: fdm=marker fdl=0 tw=200 | |
-- Standard awesome library | |
local gears = require("gears") | |
local awful = require("awful") | |
require("awful.autofocus") | |
-- Widget and layout library | |
local shape = require("gears.shape") | |
local wibox = require("wibox") |
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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<alias binding="weak"> | |
<family>sans-serif</family> | |
<prefer> | |
<family>emoji</family> | |
</prefer> | |
</alias> |
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
Fatal Python error: Segmentation fault | |
Thread 0x00007f31408fb700 (most recent call first): | |
File "/usr/lib64/python3.6/selectors.py", line 376 in select | |
File "/usr/lib64/python3.6/socketserver.py", line 236 in serve_forever | |
File "/usr/local/src/Tools/PyTone/PyTone-altendkey.git/src/network.py", line 213 in run | |
File "/usr/lib64/python3.6/threading.py", line 916 in _bootstrap_inner | |
File "/usr/lib64/python3.6/threading.py", line 884 in _bootstrap | |
Thread 0x00007f3141236700 (most recent call first): |
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
Fatal Python error: Segmentation fault | |
Thread 0x00007f548dd7e700 (most recent call first): | |
File "/usr/lib64/python3.6/selectors.py", line 376 in select | |
File "/usr/lib64/python3.6/socketserver.py", line 236 in serve_forever | |
File "/usr/local/src/Tools/PyTone/PyTone.git/src/network.py", line 213 in run | |
File "/usr/lib64/python3.6/threading.py", line 916 in _bootstrap_inner | |
File "/usr/lib64/python3.6/threading.py", line 884 in _bootstrap | |
Thread 0x00007f548e6b9700 (most recent call first): |
This file has been truncated, but you can view the full file.
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
* Package: sys-devel/gcc-9.1.0-r1 | |
* Repository: gentoo | |
* Maintainer: [email protected] | |
* USE: abi_x86_64 amd64 cxx elibc_glibc fortran kernel_linux multilib nls nptl openmp pch pie sanitize ssp userland_GNU vtv | |
* FEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox | |
>>> Unpacking source... | |
>>> Unpacking gcc-9.1.0.tar.xz to /var/tmp/portage/sys-devel/gcc-9.1.0-r1/work | |
>>> Unpacking gcc-9.1.0-patches-1.1.tar.bz2 to /var/tmp/portage/sys-devel/gcc-9.1.0-r1/work | |
>>> Source unpacked in /var/tmp/portage/sys-devel/gcc-9.1.0-r1/work | |
>>> Preparing source in /var/tmp/portage/sys-devel/gcc-9.1.0-r1/work/gcc-9.1.0 ... |
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
local mycalendar = awful.widget.calendar_popup.month({ | |
margin=dpi(14), | |
spacing=dpi(1), | |
style_focus={ | |
fg_color=beautiful.background, | |
bg_color="#f08693" | |
} | |
}) | |
mycalendar:attach(mytextclock, 'tr') |
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
-- my awesome config | |
-- vim: fdm=marker fdl=0 tw=200 | |
-- Standard awesome library | |
local gears = require("gears") | |
local awful = require("awful") | |
require("awful.autofocus") | |
-- Widget and layout library | |
local shape = require("gears.shape") | |
local wibox = require("wibox") |