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
| diff -r -u a/src/terminal-util.c b/src/terminal-util.c | |
| --- a/src/terminal-util.c 2018-12-05 19:47:58.000000000 +0200 | |
| +++ b/src/terminal-util.c 2018-12-05 19:32:09.302636807 +0200 | |
| @@ -111,7 +111,7 @@ | |
| } | |
| } | |
| -static gboolean | |
| +gboolean | |
| open_url (GtkWindow *parent, |
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
| DKMS make.log for xtables-addons-3.3 for kernel 5.2.2-arch1-1-ARCH (x86_64) | |
| Tue 23 Jul 2019 04:33:29 AM UTC | |
| make: Entering directory '/usr/lib/modules/5.2.2-arch1-1-ARCH/build' | |
| test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \ | |
| echo >&2; \ | |
| echo >&2 " ERROR: Kernel configuration is invalid."; \ | |
| echo >&2 " include/generated/autoconf.h or include/config/auto.conf are missing.";\ | |
| echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ | |
| echo >&2 ; \ | |
| /bin/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
| CCLD libaltivec.la | |
| CC strategies/avx2/libavx2_la-dct-avx2.lo | |
| CC strategies/avx2/libavx2_la-intra-avx2.lo | |
| CC strategies/avx2/libavx2_la-ipol-avx2.lo | |
| CC strategies/avx2/libavx2_la-picture-avx2.lo | |
| CC strategies/avx2/libavx2_la-quant-avx2.lo | |
| In file included from /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include/immintrin.h:101, | |
| from strategies/avx2/quant-avx2.c:28: | |
| strategies/avx2/avx2_common_functions.h: In function ‘get_first_last_nz_int16’: | |
| /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include/lzcntintrin.h:51:1: error: inlining failed in call to always_inline ‘_lzcnt_u32’: target specific option mismatch |
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
| [general] | |
| mode = normal | |
| framerate = 60 | |
| autosens = 1 | |
| overshoot = 20 | |
| sensitivity = 100 | |
| bars = 100 | |
| bar_width = 2 | |
| bar_spacing = 1 | |
| lower_cutoff_freq = 50 |
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
| #!/usr/bin/python2 | |
| import urllib2 | |
| import json | |
| import time | |
| import weewx.drivers | |
| DRIVER_NAME = 'OurWeather' | |
| DRIVER_VERSION = "0.1" |
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
| [Trigger] | |
| Operation = Install | |
| Operation = Upgrade | |
| Operation = Remove | |
| Type = Package | |
| Target = * | |
| [Action] | |
| Depends = coreutils | |
| Depends = go |
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
| [Trigger] | |
| Operation = Install | |
| Operation = Upgrade | |
| Operation = Remove | |
| Type = Package | |
| Target = * | |
| [Action] | |
| Description = Searching for orphaned packages... | |
| When = PostTransaction |
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
| [Trigger] | |
| Operation = Install | |
| Operation = Upgrade | |
| Operation = Remove | |
| Type = Package | |
| Target = * | |
| [Action] |
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
| #!/usr/bin/bash | |
| function pacman-last-used { | |
| storage_dir=${HOME}/.config/pacman-last | |
| mkdir -p "$storage_dir" | |
| unsorted=$storage_dir/"packages.1.exec_bins.log" | |
| sorted=$storage_dir/"packages.2.exec_bins.sorted" | |
| sorted_packs=$(mktemp) #"3.packages.sorted" |