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 | |
# Install spicetify-cli | |
install_spicetify () { | |
curl -fsSL https://raw.githubusercontent.com/khanhas/spicetify-cli/master/install.sh | sh | |
export SPICETIFY_INSTALL="$HOME/spicetify-cli" | |
export PATH="$SPICETIFY_INSTALL:$PATH" | |
echo 'export SPICETIFY_INSTALL="$HOME/spicetify-cli"' >> ~/.profile | |
echo 'export PATH="$SPICETIFY_INSTALL:$PATH"' >> ~/.profile | |
echo "Program installed, Configuring...." |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
def hexagon(width, height, half=0): | |
i = 0 | |
top = 1 | |
bottom = 1 | |
if half == 1: | |
top = 0 |
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
Section "Device" | |
Identifier "iGPU" | |
Driver "intel" | |
Option "AccelMethod" "sna" | |
Option "TearFree" "True" | |
Option "Tiling" "True" | |
Option "SwapbuffersWait" "True" | |
Option "DRI" "3" | |
EndSection |
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
[username] | |
format = " [╭─$user]($style) on " | |
style_user = "bold bright-green" | |
style_root = "bold green" | |
show_always = true | |
[hostname] | |
format = "[$hostname]($style) in " | |
style = "bold purple" | |
trim_at = "-" |
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
## Path section | |
# Set $PATH if ~/.local/bin exist | |
if [ -d "$HOME/.local/bin" ]; then | |
export PATH=$HOME/.local/bin:$PATH | |
fi | |
eval "$(starship init zsh)" | |
function set_win_title(){ | |
echo -ne "\033]0; $USER@$HOST:${PWD/$HOME/~} \007" | |
} |
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
# .bashrc | |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
eval "$(starship init bash)" | |
# Awesome Alias | |
## System commands | |
alias _='sudo' | |
alias ls='ls --color=auto' |
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
# Enable or Disable Triggers (elogind) | |
# Usage: enable [yes/no] | |
enable yes | |
# CPU Undervolting | |
# Usage: undervolt ${index} ${display_name} ${undervolt_value} | |
# Example: undervolt 2 'CPU Cache' -25.84 | |
undervolt 0 'CPU' -90 |
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
# Amazon Kindle | |
pm uninstall --user 0 com.amazon.kindle | |
# Amazon Shopping | |
pm uninstall --user 0 in.amazon.mShop.android.shopping | |
# Android Auto | |
pm uninstall --user 0 com.google.android.projection.gearhead | |
# Assistant |
NewerOlder