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
INFO [neovide::bridge] Starting neovim with: Command { std: "/usr/bin/nvim" "--embed", kill_on_drop: false } | |
INFO [neovide::bridge] Close watcher started | |
INFO [neovide::bridge] Neovide registered to nvim with channel id 1 | |
INFO [neovide::bridge] Neovim process attached | |
TRACE [neovide::bridge::handler] Neovim notification: "redraw" | |
TRACE [neovide::channel_utils] redraw_event OptionSet { gui_option: ArabicShape(true) } | |
TRACE [neovide::channel_utils] redraw_event OptionSet { gui_option: AmbiWidth("single") } | |
TRACE [neovide::channel_utils] redraw_event OptionSet { gui_option: Emoji(true) } | |
TRACE [neovide::channel_utils] redraw_event OptionSet { gui_option: GuiFont("") } | |
TRACE [neovide::channel_utils] redraw_event OptionSet { gui_option: GuiFontSet("") } |
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
# Drivers | |
ckb-next # Does RGB for Corsair hardware | |
samsung-unified-driver # cups drivers for Samsung printers and scanners | |
# GUI stuff (fonts, icons, themes etc.) | |
ttf-ms-fonts | |
ttf-windows | |
ttf-ubraille | |
breeze-snow-cursor-theme |
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
############################# | |
### 1024k sequential read ### | |
############################# | |
TEST: (g=0): rw=read, bs=(R) 1024KiB-1024KiB, (W) 1024KiB-1024KiB, (T) 1024KiB-1024KiB, ioengine=libaio, iodepth=32 | |
fio-3.26 | |
Starting 1 process | |
TEST: Laying out IO file (1 file / 500MiB) |
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
SteamVR System Report created Sun Jan 26 01:26:34 2020 | |
<Report> | |
SteamVR Version: 1.9.16 (1576990468) | |
SteamVR Date: 2019-12-22 | |
Steam: Public | |
Steam Branch: | |
Steam AppID: 250820 | |
Tracking: No Driver | |
OS: Linux version 5.4.14-arch1-1 (linux@archlinux) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Thu, 23 Jan 2020 10:07:05 +0000 |
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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
CPU Family: 0x6 |
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
Running Steam on arch rolling 64-bit | |
STEAM_RUNTIME is enabled automatically | |
Pins up-to-date! | |
/home/tomas/.local/share/Steam/ubuntu12_32/steam | |
Installing breakpad exception handler for appid(steam)/version(1579321278) | |
Installing breakpad exception handler for appid(steam)/version(1579321278) | |
Installing breakpad exception handler for appid(steam)/version(1579321278) | |
Installing breakpad exception handler for appid(steam)/version(1579321278) | |
Installing breakpad exception handler for appid(steam)/version(1579321278) |
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
# vim: ft=i3config | |
# DON'T EDIT THIS FILE MANUALLY - It has been automatically built by: | |
# /home/tomas/Dropbox/Personal/config_sync/i3/build.sh | |
# This file should contain general i3 settings as well as shared variables. If | |
# the variable list grows long it should get its own file. | |
set $mod Mod4 |
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
{ | |
// splitv split container with 2 children | |
"border": "normal", | |
"layout": "splitv", | |
"percent": 0.4, | |
"type": "con", | |
"nodes": [ | |
{ | |
"border": "pixel", | |
"current_border_width": 2, |
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 main | |
import ( | |
"bytes" | |
"fmt" | |
"io" | |
"os" | |
) |
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/env ruby | |
require "yaml" | |
require "uri" | |
require "openssl" | |
require "net/http" | |
require "nokogiri" | |
VERBOSE = !ENV["VERBOSE"].nil? |