This file contains 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/env bash | |
########################## | |
# AUTHOR: SHASHANK SINGH # | |
########################## | |
# Adjust terminal font size for better visibility | |
setfont ter-132n | |
###### Connect to Wi-Fi if Ethernet is unavailable using iwctl ###### |
This file contains 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
exec --no-startup-id ~/set_once_i3.sh | |
####################### | |
# config starts here: # | |
####################### | |
# Font for window titles. Will also be used by the bar unless a different font | |
# is used in the bar {} block below. | |
# This font is widely installed, provides lots of unicode glyphs, right-to-left | |
# text rendering and scalability on retina/hidpi displays (thanks to pango). |
This file contains 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
# Thank you code_nomad: http://9m.no/ꪯ鵞 | |
# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton | |
# and picom Github: https://github.com/yshui/picom | |
################################# | |
# | |
# Backend | |
# | |
################################# | |
# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. |
This file contains 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
-- Additional Plugins | |
lvim.plugins = { | |
{ "lukas-reineke/indent-blankline.nvim" }, | |
} | |
-- plugins conf | |
local status_ok, indent_blankline = pcall(require, "indent_blankline") | |
if not status_ok then | |
return |