1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-09-07 17:53:30 -04:00

Enable discard and trim before everything else

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-01-28 17:41:54 -07:00
parent e780493bd2
commit ecd64bd8cb
Signed by: Tomster
GPG Key ID: 555C902A34EC968F

10
dom0.sh
View File

@ -14,6 +14,12 @@
# License for the specific language governing permissions and limitations under
# the License.
# Enabling discard and fstrim
sudo sed -i 's/issue_discards = 0/issue_discards = 1/g' /etc/lvm/lvm.conf
sudo systemctl enable fstrim.timer
# Theming
sudo mkdir -p /etc/gtk-3.0
echo "[Settings]
gtk-theme-name=Arc-Dark
@ -41,7 +47,3 @@ echo "@anyvm @anyvm ask,default_target=vault" | sudo tee /etc/qubes-rpc/policy/
echo "/usr/bin/echo 1" | sudo tee /etc/qubes-rpc/qubes.VMAuth
sudo chmod u+x /etc/qubes-rpc/qubes.VMAuth
echo "@anyvm dom0 ask,default_target=dom0" | sudo tee /etc/qubes-rpc/policy/qubes.VMAuth
# Enabling discard and fstrim
sudo sed -i 's/issue_discards = 0/issue_discards = 1/g' /etc/lvm/lvm.conf
sudo systemctl enable fstrim.timer