1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-11-23 02:01:32 -05:00

Compare commits

..

No commits in common. "a39e0ceb38265058042ca0be5ffff8c39f7c8390" and "6b7dacda7caf04aaa47f88c106438aba55c70546" have entirely different histories.

8 changed files with 33 additions and 24 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

17
fedora-minimal/media.sh Normal file
View File

@ -0,0 +1,17 @@
#!/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

16
fedora/vault.sh Normal file
View File

@ -0,0 +1,16 @@
#!/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