fonts
This commit is contained in:
parent
572868c193
commit
e2a38f8724
|
@ -15,7 +15,7 @@ Zoom: 165%
|
|||
### Accessability
|
||||
- Reduce Motion
|
||||
### Display
|
||||
- Theme: Lights Out
|
||||
- Theme: Dim
|
||||
- Colour: Purple
|
||||
- Font Size: Large
|
||||
## VaultUI
|
||||
|
|
|
@ -28,7 +28,6 @@ Corner Rounding: 2
|
|||
- Display Close Button: Permanantly
|
||||
- Active Tab Minimum Width: 150px
|
||||
- Tab Stacking: Disable
|
||||
- Mute Tab Audio: Play only in active tab
|
||||
#### Search
|
||||
- Default search engine: Google
|
||||
- Always search in new tab: ON
|
||||
|
@ -53,5 +52,4 @@ Install the following extensions:
|
|||
- Stylus
|
||||
- Tampermonkey
|
||||
- uBlock Origin
|
||||
- Better Tweetdeck
|
||||
Then install all userscripts and userstyles from [Here](https://gitlab.com/ChaotiCryptidz/userstyles-userscripts/-/tree/main)
|
|
@ -7,9 +7,13 @@ in {
|
|||
|
||||
dconf.enable = true;
|
||||
dconf.settings = {
|
||||
"org/gnome/mutter" = {
|
||||
dynamic-workspaces = false;
|
||||
};
|
||||
|
||||
"org/gnome/desktop/interface" = {
|
||||
# Clock at Top Bar
|
||||
clock-show-seconds = true;
|
||||
#clock-show-seconds = true;
|
||||
clock-show-weekday = true;
|
||||
# Battery Percentage on Top Bar
|
||||
show-battery-percentage = true;
|
||||
|
@ -38,11 +42,11 @@ in {
|
|||
automount = false;
|
||||
};
|
||||
"org/gnome/desktop/notifications" = { show-in-lockscreen = false; };
|
||||
"org/gnome/desktop/peripherials/mouse" = {
|
||||
"org/gnome/desktop/peripherals/mouse" = {
|
||||
# NO!
|
||||
natural-scroll = false;
|
||||
};
|
||||
"org/gnome/desktop/peripherials/touchpad" = {
|
||||
"org/gnome/desktop/peripherals/touchpad" = {
|
||||
# NO!
|
||||
natural-scroll = false;
|
||||
# YES!
|
||||
|
@ -96,7 +100,7 @@ in {
|
|||
area-screenshot-clip = [ "<Shift>Print" ];
|
||||
screenshot = [ ];
|
||||
screenshot-clip = [ "Print" ];
|
||||
custom-keybinds = [
|
||||
custom-keybindings = [
|
||||
# Rofi & Kitty
|
||||
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/rofi/"
|
||||
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/kitty/"
|
||||
|
|
BIN
overlay/comic-code/Comic_Code.zip
Normal file
BIN
overlay/comic-code/Comic_Code.zip
Normal file
Binary file not shown.
|
@ -1,13 +1,15 @@
|
|||
{ fetchzip }:
|
||||
fetchzip {
|
||||
{ stdenv, unzip }:
|
||||
stdenv.mkDerivation {
|
||||
name = "comic-code-1.0";
|
||||
|
||||
url =
|
||||
"https://cdn.discordapp.com/attachments/780878889924165652/919700644347142214/COCOD.ZIP";
|
||||
sha256 = "sha256-MzEkMAopjpQBk24nRVDAtGNeF6f61XGww4rya2cU8TU=";
|
||||
srcs = ./Comic_Code.zip;
|
||||
sourceRoot = ".";
|
||||
|
||||
postFetch = ''
|
||||
nativeBuildInputs = [ unzip ];
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts
|
||||
unzip -j $downloadedFile \*.otf -d $out/share/fonts/truetype
|
||||
unzip -j $srcs \*.otf -d $out/share/fonts/truetype
|
||||
'';
|
||||
}
|
||||
|
|
BIN
overlay/comic-sans/Comic_Sans.zip
Normal file
BIN
overlay/comic-sans/Comic_Sans.zip
Normal file
Binary file not shown.
|
@ -1,13 +1,15 @@
|
|||
{ lib, fetchzip }:
|
||||
fetchzip {
|
||||
name = "comic-code-1.0";
|
||||
{ stdenv, unzip }:
|
||||
stdenv.mkDerivation {
|
||||
name = "comic-sans-1.0";
|
||||
|
||||
url =
|
||||
"https://cdn.discordapp.com/attachments/890298617833857055/931224386143408239/comic.zip";
|
||||
sha256 = "sha256-QTCdQosgHiRkedGT2PjVzeaOqYiotLYpXNyGe9k9nuk=";
|
||||
srcs = ./Comic_Sans.zip;
|
||||
sourceRoot = ".";
|
||||
|
||||
postFetch = ''
|
||||
nativeBuildInputs = [ unzip ];
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
||||
unzip -j $srcs \*.ttf -d $out/share/fonts/truetype
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue