Skip to content

Instantly share code, notes, and snippets.

View SymphonySimper's full-sized avatar
🎯
Focusing

Sri Senthil Balaji J SymphonySimper

🎯
Focusing
View GitHub Profile
@SymphonySimper
SymphonySimper / KissLauncher.txt
Last active October 13, 2021 15:36
Kiss Launcher Settings
{"__v":183,"freeze-history":true,"force-portrait":true,"lwp-touch":false,"theme-wallpaper":"enabled","pref-hide-navbar":true,"icons-hide":true,"history-hide":true,"gesture-left":"do-nothing","theme-separator":"disabled","small-results":true,"gesture-up":"do-nothing","enable-app-history":false,"theme-result-color":"black","subicon-visible":false,"pref-toggle-tags-list":["call","MMS","mail","phone","compose"],"pref-rounded-bars":false,"theme":"amoled-dark","theme-shadow":"disabled","favorites-hide":true,"enable-shortcuts":false,"pref-hide-circle":true,"exclude-favorites-history":false,"tags-visible":false,"gesture-long-press":"do-nothing","gesture-right":"do-nothing","enable-contacts":false,"enable-favorites-bar":false,"pref-hide-search-bar-hint":true,"__tags":{"app:\/\/com.google.android.gm\/com.google.android.gm.ConversationListActivityGmail":"mail email e-mail","app:\/\/com.android.mms\/com.android.mms.ui.ConversationList":"text message compose SMS MMS messaging","app:\/\/com.android.contacts\/com.android.co
@SymphonySimper
SymphonySimper / arch.conf
Last active August 2, 2023 07:08
This for silent boot in systemd file location /boot/loader/entries/arch.conf
# Created by: archinstall
# Created on: 2023-07-24_05-27-46
title Arch Linux (linux)
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=PARTUUID=2f1636a4-d5be-48c2-8d4a-8435d2227a56 zswap.enabled=0 rw rootfstype=btrfs quiet loglevel=3 systemd.show_status=auto module_blacklist=r8169 r8168.aspm=0 r8168.eee_enable=0 pcie_aspm=off rd.udev.log_level=3
@SymphonySimper
SymphonySimper / install-dotfiles
Last active October 23, 2021 12:53
Install my dotfiles in a new machine
#!/bin/sh
git clone --bare https://github.com/SymphonySimper/DotFiles.git $HOME/.cfg
function config { /usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@; }
mkdir -p .config-backup
config checkout
create_symlinks(){
# symlinks
@SymphonySimper
SymphonySimper / WoxTheme.xaml
Created July 2, 2021 09:49
Windows configs
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="Base.xaml"></ResourceDictionary> </ResourceDictionary.MergedDictionaries> <Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> <Setter Property="Background" Value="#111111"/> <Setter Property="Foreground" Value="#aaaaaa" /> </Style> <Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> <Setter Property="Background" Value="#111111"></Setter> </Style> <Style x:Key="WindowStyle" TargetType="{x:Type Window}" BasedOn="{StaticResource BaseWindowStyle}" > </Style> <Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}" > </Style> <Style x:Key="ItemTitleStyle" BasedOn="{StaticR
/**
* @name DiscordRecolorS2B
* @description Allows you to customize Discord's native Color Scheme
* @author DevilBro
* @version 1.0.0
* @authorId 278543574059057150
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
* @patreon https://www.patreon.com/MircoWittrien
* @website https://mwittrien.github.io/
@SymphonySimper
SymphonySimper / alacritty.yaml
Last active October 23, 2021 14:26
Unused linux configs
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# These configuration files will be loaded in order, replacing values in files
# loaded earlier with those loaded later in the chain. The file itself will
# always be loaded last.
#import:
# - /path/to/alacritty.yml
#[[ -f ~/.bashrc ]] && . ~/.bashrc
~/.config/shell/.profile
remove Lock = Caps_Lock
keysym Caps_Lock = Escape
@SymphonySimper
SymphonySimper / inittab
Last active September 12, 2021 12:46
/etc/inittab
#
# /etc/inittab: This file describes how the INIT process should set up
# the system in a certain run-level.
#
# Author: Miquel van Smoorenburg, <miquels@cistron.nl>
# Modified by: Patrick J. Volkerding, <volkerdi@ftp.cdrom.com>
# Modified by: Daniel Robbins, <drobbins@gentoo.org>
# Modified by: Martin Schlemmer, <azarah@gentoo.org>
# Modified by: Mike Frysinger, <vapier@gentoo.org>
# Modified by: Robin H. Johnson, <robbat2@gentoo.org>
@SymphonySimper
SymphonySimper / bmark.sh
Created November 3, 2021 07:04
bmark with repo function
#!/bin/sh
bmark_loc="$XDG_DATA_HOME"/bmark/bookmarks
repo="git@github.com:SymphonySimper/bmark.git"
repo_parent_loc="$(echo $bmark_loc | sed 's/bmark\/bookmarks//g')"
repo_loc="$(echo $bmark_loc | sed 's/bookmarks//g')"
err(){ echo "$(syl r; syl B)${1}$(syl R)"; }
succ(){ echo "$(syl g; syl B)${1}$(syl R)"; }
git_c="git -C $repo_loc"