mirror of
https://github.com/purhan/dotfiles.git
synced 2026-01-08 00:17:28 +08:00
update
This commit is contained in:
parent
17509c05e7
commit
318b8db282
11 changed files with 1220 additions and 1715 deletions
|
|
@ -5,7 +5,7 @@ local dpi = require('beautiful').xresources.apply_dpi
|
|||
|
||||
-- Clock / Calendar 24h format
|
||||
local textclock = wibox.widget.textclock(
|
||||
'<span font="Roboto Mono bold 9">%H:%M</span>')
|
||||
'<span font="Roboto bold 9">%H:%M</span>')
|
||||
|
||||
local clock_widget = wibox.container.margin(textclock, dpi(8), dpi(8), dpi(8),
|
||||
dpi(8))
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ local dpi = require('beautiful').xresources.apply_dpi
|
|||
local icons = require('theme.icons')
|
||||
|
||||
local textclock = wibox.widget.textclock(
|
||||
'<span font="Roboto Mono bold 9">%d.%m.%Y\n %H:%M</span>')
|
||||
'<span font="Roboto bold 9">%d.%m.%Y\n %H:%M</span>')
|
||||
|
||||
local date_widget = wibox.container.margin(textclock, dpi(8), dpi(8), dpi(8),
|
||||
dpi(8))
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[Settings]
|
||||
gtk-application-prefer-dark-theme=0
|
||||
gtk-button-images=1
|
||||
gtk-cursor-theme-name=xcursor-breeze
|
||||
gtk-cursor-theme-name=Sweet-cursors
|
||||
gtk-cursor-theme-size=0
|
||||
gtk-decoration-layout=:minimize,maximize,close
|
||||
gtk-enable-animations=true
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"etag": "\"5f4f616c-58076\"",
|
||||
"last-modified": "Wed, 02 Sep 2020 09:10:04 GMT"
|
||||
"last-modified": "Wed, 16 Sep 2020 13:30:04 GMT",
|
||||
"etag": "\"5f62135c-58220\""
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
1599037988
|
||||
1600263095
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,27 +1,27 @@
|
|||
{
|
||||
"name": "Terminus",
|
||||
"variables": {
|
||||
"brown": "#fded02",
|
||||
"caret": "#4a4543",
|
||||
"light_red": "#e8bbd0",
|
||||
"cyan": "#b5e4f4",
|
||||
"white": "#a5a2a2",
|
||||
"magenta": "#a16a94",
|
||||
"light_green": "#3a3432",
|
||||
"black": "#090300",
|
||||
"light_cyan": "#cdab53",
|
||||
"light_blue": "#807d7c",
|
||||
"light_black": "#5c5855",
|
||||
"green": "#01a252",
|
||||
"red": "#db2d20",
|
||||
"light_magenta": "#d6d5d4",
|
||||
"blue": "#01a0e4",
|
||||
"foreground": "#4a4543",
|
||||
"light_green": "#3a3432",
|
||||
"light_brown": "#4a4543",
|
||||
"green": "#01a252",
|
||||
"light_blue": "#807d7c",
|
||||
"cyan": "#b5e4f4",
|
||||
"light_red": "#e8bbd0",
|
||||
"black": "#090300",
|
||||
"light_white": "#f7f7f8",
|
||||
"background": "#f7f7f8"
|
||||
"magenta": "#a16a94",
|
||||
"background": "#f7f7f8",
|
||||
"light_cyan": "#cdab53",
|
||||
"caret": "#4a4543",
|
||||
"brown": "#fded02",
|
||||
"white": "#a5a2a2",
|
||||
"light_black": "#5c5855",
|
||||
"light_magenta": "#d6d5d4",
|
||||
"red": "#db2d20",
|
||||
"foreground": "#4a4543"
|
||||
},
|
||||
"globals": {
|
||||
"background": "#f7f7f7"
|
||||
},
|
||||
"name": "Terminus"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,18 +1,54 @@
|
|||
<snippet>
|
||||
<content><![CDATA[
|
||||
/* DIRECTIVES */
|
||||
#pragma GCC optimize ("O3")
|
||||
#pragma GCC target ("sse4")
|
||||
|
||||
/* INCLUDE STATEMENTS */
|
||||
#include <bits/stdc++.h>
|
||||
using namespace std;
|
||||
#define fo(int, i, a, b) for (int i=a; i<(b); i++)
|
||||
#define forev(int, i, b, a) for (int i = (b)-1; i >= a; i--)
|
||||
#define uns unsigned
|
||||
#define lli long long int
|
||||
#define ld long double
|
||||
#define all(x) x.begin(), x.end()
|
||||
#define sortall(x) sort(all(x))
|
||||
#define enl "\n"
|
||||
#define dbg(x) cout << #x << ": " << x << enl;
|
||||
// #define PI 3.1415926535897932384626
|
||||
// const int MOD = 1000000007; const lli INF = 1e18; const int MX = 100001;
|
||||
|
||||
/* NAMESPACES */
|
||||
using namespace std; // (┛ಠ_ಠ)┛ "Bad" Practice`
|
||||
|
||||
/* ALIASES */
|
||||
typedef long long lli;
|
||||
typedef long double ld;
|
||||
typedef unsigned uns;
|
||||
|
||||
typedef pair<int, int> pi;
|
||||
typedef pair<lli, lli> pl;
|
||||
typedef pair<ld, ld> pd;
|
||||
|
||||
typedef vector<int> vi;
|
||||
typedef vector<ld> vd;
|
||||
typedef vector<lli> vl;
|
||||
typedef vector<pi> vpi;
|
||||
typedef vector<pl> vpl;
|
||||
|
||||
/* DEFINITIONS */
|
||||
#define mp make_pair
|
||||
#define pb push_back
|
||||
#define FF first
|
||||
#define SS second
|
||||
#define lb lower_bound
|
||||
#define ub upper_bound
|
||||
|
||||
#define fo(i, a, b) for(auto i=a; i<(b); i++)
|
||||
#define forev(i, b, a) for(auto i = (b)-1; i >= a; i--)
|
||||
#define all(x) x.begin(), x.end()
|
||||
#define sortall(x) sort(all(x))
|
||||
#define sz(x) (int)x.size()
|
||||
#define enl "\n"
|
||||
#define deb(x) cout << #x << ": " << x << enl;
|
||||
|
||||
/* CONSTANTS */
|
||||
const ld PI = 4 * atan((ld)1);
|
||||
const int MOD = 1000000007;
|
||||
const lli INF = 1e18;
|
||||
const int MX = INT_MAX - 1;
|
||||
|
||||
|
||||
/*======================= ROBERT'S GOT A QUICK HAND =======================*/
|
||||
|
||||
void solve() {
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#cell_width_scale = 1.0
|
||||
#clickable_url = true
|
||||
dynamic_title = false
|
||||
font = Source Code Pro 10
|
||||
font = Source Code Pro for Powerline 11
|
||||
#fullscreen = true
|
||||
icon_name = Termite
|
||||
#mouse_autohide = false
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ include "/home/purhan/.gtkrc-2.0.mine"
|
|||
gtk-theme-name="gtk-master"
|
||||
gtk-icon-theme-name="ePapirus"
|
||||
gtk-font-name="Noto Sans, 10"
|
||||
gtk-cursor-theme-name="xcursor-breeze"
|
||||
gtk-cursor-theme-name="Sweet-cursors"
|
||||
gtk-cursor-theme-size=0
|
||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue