Skip to content

Commit

Permalink
Merge MR 'feat: add updates of week 34' into 'main'
Browse files Browse the repository at this point in the history
See merge request el-capitano/dotfiles!115
  • Loading branch information
tmeijn committed Aug 25, 2024
2 parents d316429 + 888b8d7 commit 707b299
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 18 deletions.
16 changes: 8 additions & 8 deletions chezmoi/dconf.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ width=1254

[apps/update-manager]
first-run=false
launch-count=242
launch-time=int64 1723525188
launch-count=243
launch-time=int64 1724137920
show-details=true
window-height=574
window-width=534
Expand Down Expand Up @@ -39,9 +39,9 @@ favorites=['🎤', '🛡', '🔓', '🏗', '⚒️', '🕵️', '🗃️', '👥
recent-characters=['🏎️', '🚩', '👴🏻', '🐸', '', '✍🏾', '🗝️', '🔑', '🗃️', '🔓', '💡', '🔒']

[org/gnome/Extensions]
window-height=674
window-height=1400
window-maximized=false
window-width=1254
window-width=2560

[org/gnome/TextEditor]
highlight-current-line=true
Expand Down Expand Up @@ -591,7 +591,7 @@ search-view='list-view'
show-image-thumbnails='always'

[org/gnome/nautilus/window-state]
initial-size=(2560, 1400)
initial-size=(1254, 1360)
maximized=false
sidebar-width=210

Expand Down Expand Up @@ -686,7 +686,7 @@ app-picker-layout=[{'org.gnome.Calculator.desktop': <{'position': <0>}>, 'simple
command-history=['r']
disable-extension-version-validation=false
disable-user-extensions=false
disabled-extensions=['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', 'freon@UshakovVasilii_Github.yahoo.com', '[email protected]']
disabled-extensions=['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected].com', 'freon@UshakovVasilii_Github.yahoo.com']
enabled-extensions=['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', 'space-bar@luchrioh', '[email protected]', '[email protected]', '[email protected]', 'just-perfection-desktop@just-perfection', '[email protected]', '[email protected]', '[email protected]', '[email protected]', 'native-window-placement@gnome-shell-extensions.gcampax.github.com', 'blur-my-shell@aunetx', 'rounded-window-corners@fxgn', '[email protected]', '[email protected]']
favorite-apps=['firefox_firefox.desktop']
had-bluetooth-devices-setup=true
Expand Down Expand Up @@ -969,8 +969,8 @@ save-format='application/pdf'
selected-device='escl:http://192.168.178.19:8080'

[org/gnome/software]
check-timestamp=int64 1723881189
flatpak-purge-timestamp=int64 1723885949
check-timestamp=int64 1724606216
flatpak-purge-timestamp=int64 1724486705
install-timestamp=int64 1680257960
packagekit-historical-updates-timestamp=uint64 1680257960
update-notification-timestamp=int64 1705750277
Expand Down
3 changes: 3 additions & 0 deletions chezmoi/dot_config/aquaproj-aqua/aqua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -298,3 +298,6 @@ packages:
- name: ryodocx/[email protected]
description: Accelerator cache for kubernetes access
link: https://github.com/ryodocx/kube-credential-cache
- name: TomWright/[email protected]
description: Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single tool. Supports conversion between formats and can be used as a Go package
link: https://github.com/TomWright/dasel
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
import Shell from 'gi://Shell';
import Clutter from 'gi://Clutter';
import Cogl from 'gi://Cogl';
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
import { adjustAnimationTime } from 'resource:///org/gnome/shell/misc/animationUtils.js';

import { PaintSignals } from '../conveniences/paint_signals.js';
// TODO drop Tweener in favour of Clutter's `ease` (will need to extend the blur effect for it)
const Tweener = imports.tweener.tweener;

const transparent = Clutter.Color.from_pixel(0x00000000);
// TODO: Drop GNOME 46 backwards compatibility
const transparent = Clutter.Color ?
Clutter.Color.from_pixel(0x00000000) :
new Cogl.Color({
red: 0,
green: 0,
blue: 0,
alpha: 0
});
const FOLDER_DIALOG_ANIMATION_TIME = 200;

const DIALOGS_STYLES = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,16 +237,18 @@ export const PanelBlur = class PanelBlur {
// sometimes yields NaN (probably when the actor is not fully
// positionned yet)
let [p_x, p_y] = panel_box.get_position();
let x = p_x + (width - panel.width)/2;
let y = p_y + (height - panel.height)/2;
let [p_p_x, p_p_y] = panel_box.get_parent().get_position();
let x = p_x + p_p_x - monitor.x + (width - panel.width)/2;
let y = p_y + p_p_y - monitor.y + (height - panel.height)/2;

background.set_clip(x, y, panel.width, panel.height);
background.x = (width - panel.width)/2 - x;
background.y = (height - panel.height)/2 - y;
} else {
background.x = panel_box.x;
background.y = panel_box.y;
background.width = width;
background.height = height;
background.x = panel.x;
background.y = panel.y;
background.width = panel.width;
background.height = panel.height;
}

// update the monitor panel is on
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
],
"settings-schema": "org.gnome.shell.extensions.blur-my-shell",
"shell-version": [
"46"
"46",
"47"
],
"url": "https://github.com/aunetx/blur-my-shell",
"uuid": "blur-my-shell@aunetx",
"version": 64
"version": 65
}
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ This may cause some latency or performance issues.</property>
<child>
<object class="GtkImage">
<property name="margin-end">6</property>
<property name="icon-name">list-add-symbolic</property>
<property name="icon-name">add-row-symbolic</property>
</object>
</child>
<child>
Expand Down

0 comments on commit 707b299

Please sign in to comment.