Skip to content

Commit

Permalink
feat(gnome): Add Tiling Shell extension
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Aug 8, 2024
1 parent 56197e0 commit aa8ae93
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,12 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
gnome-extensions-app \
gnome-terminal-nautilus \
gnome-initial-setup && \
mkdir -p /tmp/tilingshell && \
curl -s https://api.github.com/repos/domferr/tilingshell/releases/latest | \
jq -r '.assets | sort_by(.created_at) | .[] | select (.name|test("^tilingshell@.*zip$")) | .browser_download_url' | \
wget -qi - -O /tmp/tilingshell/[email protected] && \
unzip /tmp/tilingshell/[email protected] -d /usr/share/gnome-shell/extensions/[email protected] && \
rm -rf /tmp/tilingshell && \
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.gnome.Terminal.desktop && \
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.gnome.SystemMonitor.desktop && \
systemctl enable dconf-update.service \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ osd-position=1

[org/gnome/shell/extensions/Logo-menu]
show-gamemode=true

[org/gnome/shell/extensions/tilingshell]
snap-assistant-threshold=25
override-window-menu=false
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[org/gnome/shell]
enabled-extensions=['logomenu@aryan_k', '[email protected]', '[email protected]', '[email protected]', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', '[email protected]', '[email protected]']
enabled-extensions=['logomenu@aryan_k', '[email protected]', '[email protected]', '[email protected]', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', '[email protected]', '[email protected]', '[email protected]']
disabled-extensions=['[email protected]']
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,10 @@ resize-effect=true

[org/gnome/shell/extensions/ncom/github/hermes83/compiz-alike-magic-lamp-effect]
duration=250

[org/gnome/shell/extensions/tilingshell]
inner-gaps=8
outer-gaps=8
enable-blur-snap-assistant=true
enable-blur-selected-tilepreview=true
quarter-tiling-threshold=25

0 comments on commit aa8ae93

Please sign in to comment.