1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-11-22 09:51:32 -05:00

Compare commits

...

3 Commits

Author SHA1 Message Date
a39e0ceb38
Split out shared files
Signed-off-by: Tommy <contact@tommytran.io>
2024-04-28 12:12:37 -07:00
3fae19069b
No longer using cryptomator
Signed-off-by: Tommy <contact@tommytran.io>
2024-04-28 12:08:28 -07:00
656713af21
Remoev unnecessary vault setup
Signed-off-by: Tommy <contact@tommytran.io>
2024-04-28 12:08:03 -07:00
8 changed files with 24 additions and 33 deletions

View File

@ -0,0 +1,2 @@
[org/gnome/desktop/interface]
gtk-theme='Arc-Dark'

1
etc/environment Normal file
View File

@ -0,0 +1 @@
export QT_QPA_PLATFORMTHEME=gtk2

3
etc/gtk-3.0/settings.ini Normal file
View File

@ -0,0 +1,3 @@
[Settings]
gtk-theme-name=Arc-Dark
gtk-application-prefer-dark-theme=1

3
etc/gtk-4.0/settings.ini Normal file
View File

@ -0,0 +1,3 @@
[Settings]
gtk-theme-name=Arc-Dark
gtk-application-prefer-dark-theme=1

View File

@ -0,0 +1,6 @@
[Unit]
Description=Update user Flatpaks
[Service]
Type=oneshot
ExecStart=/usr/bin/flatpak --user update -y

View File

@ -0,0 +1,9 @@
[Unit]
Description=Update user Flatpaks daily
[Timer]
OnCalendar=daily
Persistent=true
[Install]
WantedBy=timers.target

View File

@ -1,17 +0,0 @@
#!/bin/bash
# Copyright (C) 2023 Thien Tran
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
sudo dnf install -y fuse

View File

@ -1,16 +0,0 @@
#!/bin/bash
echo '#!/bin/sh
# Qubes App Split SSH Script
# Activate GPG Agent and set the correct SSH socket
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
# safeguard - Qubes notification bubble for each ssh request
notify-send "[$(qubesdb-read /name)] SSH agent access from: $QREXEC_REMOTE_DOMAIN"
# SSH connection
socat - "UNIX-CONNECT:$SSH_AUTH_SOCK"' | sudo tee /etc/qubes-rpc/qubes.SshAgent
sudo chmod +x /etc/qubes-rpc/qubes.SshAgent