This file contains hidden or 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
| $hypr = ~/.config/hypr | |
| source = $hypr/colors.conf # for custom color | |
| # GENERAL | |
| general { | |
| no_fade_in = true | |
| grace = 1 | |
| disable_loading_bar = false | |
| hide_cursor = true | |
| ignore_empty_input = true |
This file contains hidden or 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
| # Nautilus as default file/explorer | |
| xdg-mime default org.gnome.Nautilus.desktop inode/directory | |
| # Envycontrols for hybrid GPU setup | |
| alias iGPU="sudo envycontrol -s integrated" | |
| alias dGPU="sudo envycontrol -s nvidia --force-comp --coolbits 24" | |
| alias hGPU="sudo envycontrol -s hybrid --rtd3" | |
| function changeGPU() { | |
| case $1 in |
This file contains hidden or 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
| #!/bin/sh | |
| # Creating Folder for temp downloads | |
| CURR="$PWD" | |
| MAIN="${HOME}/Downloads/msFonts" | |
| if [ ! -d "$MAIN" ]; then | |
| mkdir -p "$MAIN" && cd "$_" || exit 1 | |
| else | |
| cd "$MAIN" || exit 1 | |
| fi |
This file contains hidden or 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
| # location to place /etc/modprobe.d/ & reboot | |
| # Force loading of the Dell Laptop SMM BIOS hwmon driver | |
| options dell-smm-hwmon ignore_dmi=1 restricted=1 force=1 | |
| # Added ignore_dmi=1 per https://www.reddit.com/r/Dell/comments/9pdgid/configuring_the_xps_to_play_nice_with_linux/ | |
| # The option restricted=0 allows other non-privileged users to change the fan speed, this could be a security problem so we will be using restricted=1 | |
| # Added force=1 per https://askubuntu.com/questions/1094485/dell-xps-15-9570-how-to-control-the-fans |