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
request = (opts) => { | |
return new Promise((resolve, reject) => { | |
let xhr = new XMLHttpRequest(); | |
let url = opts.url; | |
let params = opts.query_params; | |
if (params && typeof params === 'object') { | |
params = Object.keys(params).map(function(key) { | |
return encodeURIComponent(key).replace(/%20/g, '+') + | |
'=' + encodeURIComponent(params[key]).replace(/%20/g, '+'); | |
}).join('&'); |
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
00:00:00.000 [INFO] [sway/main.c:347] Sway version 1.6.1 | |
00:00:00.000 [INFO] [sway/main.c:348] wlroots version 0.14.0 | |
00:00:00.005 [INFO] [sway/main.c:155] Linux arch-in-freebsd 5.13.7-arch1-1 #1 SMP PREEMPT Sat, 31 Jul 2021 13:18:52 +0000 x86_64 GNU/Linux | |
00:00:00.005 [INFO] [sway/main.c:171] Contents of /etc/os-release: | |
00:00:00.005 [INFO] [sway/main.c:155] NAME="Arch Linux" | |
00:00:00.005 [INFO] [sway/main.c:155] PRETTY_NAME="Arch Linux" | |
00:00:00.005 [INFO] [sway/main.c:155] ID=arch | |
00:00:00.005 [INFO] [sway/main.c:155] BUILD_ID=rolling | |
00:00:00.005 [INFO] [sway/main.c:155] ANSI_COLOR="38;2;23;147;209" | |
00:00:00.005 [INFO] [sway/main.c:155] HOME_URL="https://archlinux.org/" |