Skip to content

Instantly share code, notes, and snippets.

rofi usage:
rofi [-options ...]
Command line only options:
-no-config Do not load configuration, use default values.
-v,-version Print the version number and exit.
-dmenu Start in dmenu mode.
-display [string] X server to contact.
${DISPLAY}
-h,-help This help message.
@RagnarGrootKoerkamp
RagnarGrootKoerkamp / bitshifts.cpp
Last active November 21, 2015 20:28
Timing int vs long long
#include <chrono>
#include <iostream>
using namespace std;
using namespace chrono;
using ll = long long;
using ull = unsigned long long;
auto now(){ return high_resolution_clock::now(); }
int main(){
auto t1 = now();