-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
142 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Unit] | ||
Description=Hack to mount all network shares automagically. | ||
After=network-online.target | ||
Wants=network-online.target | ||
|
||
[Service] | ||
ExecStart=mount -a | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
!include 100-bling.just | ||
|
||
# Include some of your custom scripts here! | ||
|
||
# https://github.com/essembeh/gnome-extensions-cli | ||
setup-gext: | ||
pip install --upgrade gnome-extensions-cli | ||
# vitals | ||
gext install 1460 | ||
# gsconnect | ||
gext install 1319 | ||
# arcmenu | ||
gext install 3628 | ||
# burn-my-windows | ||
gext install 4679 | ||
# user themes | ||
gext install 19 | ||
# space bar | ||
gext install 5090 | ||
# forge | ||
gext install 4481 | ||
# rounded window corners | ||
gext install 5237 | ||
|
||
workspace-shortcuts: | ||
#!/usr/bin/env bash | ||
for i in {1..9}; do | ||
gsettings set org.gnome.shell.keybindings switch-to-application-$i '[]' | ||
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-$i "['<Super>$i']" | ||
gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-$i "['<Shift><Super>$i']" | ||
done |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
set -oue pipefail | ||
|
||
echo "Downloading latest rescrobbled binary" | ||
curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/InputUsername/rescrobbled/releases/latest \ | ||
| jq .assets[0].browser_download_url \ | ||
| xargs wget -O /usr/bin/rescrobbled | ||
chmod +x /usr/bin/rescrobbled | ||
|
||
echo "Downloading rescrobbled systemd unit" | ||
curl https://raw.githubusercontent.com/InputUsername/rescrobbled/master/rescrobbled.service > /tmp/rescrobbled.service | ||
sed 's/ExecStart=.*/ExecStart=\/usr\/bin\/rescrobbled/' /tmp/rescrobbled.service > /usr/lib/systemd/user/rescrobbled.service | ||
|
||
echo "Enabling rescrobbled systemd unit" | ||
systemctl enable --global -f rescrobbled.service |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-----BEGIN PUBLIC KEY----- | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7lh7fJMV4dBT2jT1XafixUJa7OVA | ||
cT+QFVD8IfIJIS/KBAc8hx1aslzkH3tfeM0cwyCLB7kOStZ4sh6RyFQD9w== | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEO87Op1qSvlZb21Z5kLKoGy6OQIj | ||
LL1OXUzbFXg5iLXvLKMLDG/8a+vNG+Mk8cG2Hy/Uo9cjd//m+ljubo3NGA== | ||
-----END PUBLIC KEY----- |