added a .gitignore

This commit is contained in:
joelchrono12 2022-12-04 23:02:20 -06:00
parent 50d8330b8d
commit 34869038a2
Signed by: chrono
GPG Key ID: E23D9C7FA57497A6
101 changed files with 296 additions and 13 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
stow_home/nvim/.config/nvim/autoload/plugged/*

View File

@ -45,10 +45,10 @@ alias ..='cd ..'
alias .2='cd ../..'
alias .3='cd ../../..'
alias .4='cd ../../../..'
alias xin='sudo apt install'
alias xup='sudo apt update && sudo apt upgrade'
alias xun='sudo apt remove'
alias xs='apt search'
alias xin='sudo dnf install'
alias xup='sudo dnf update'
alias xun='sudo dnf remove'
alias xs='dnf search'
alias sysinfo='inxi -Frxz'
alias cp='cp -i'
alias rm='rm -i'
@ -66,12 +66,15 @@ alias cleandwm='make clean && rm -f config.h && git reset --hard origin/master'
alias casawifi='nmcli device wifi connect INFINITUMIVSL_2.4'
alias yt='youtube-dl --add-metadata -i'
alias yta='yt -x -f bestaudio/best'
alias jk='bundle exec jekyll'
alias t='todo.sh'
# alias picom='picom --experimental-backends --backend glx --blur-method 'dual_kawase' --blur-strength 6 & disown'
alias ssh='TERM=xterm-256color ssh'
export PATH=$PATH:$HOME/bin:$HOME/.local/bin:$HOME/.config/spectrwm/scripts:$HOME/.emacs.d/bin/
export PATH=$PATH:$HOME/.local/matlab/R2022a/bin/
#export MANPAGER="nvim -c 'set ft=man' -"
#export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
#source $HOME/.config/bash-config/bashrc.bash
@ -95,4 +98,6 @@ export PATH="$HOME/.config/rofi/scripts:$PATH"
export CALIBRE_USE_DARK_PALETTE=1
#pfetch &
fortune -s wisdom | cowsay -f tux
#fortune -s wisdom | cowsay -f tux
#neofetch
#cat school.md

View File

@ -46,7 +46,7 @@ end
-- {{{ Variable definitions
-- Themes define colours, icons, font and wallpapers.
beautiful.init("~/.config/awesome/themes/zenburn/theme.lua")
beautiful.init("~/.config/awesome/themes/tokyonight/theme.lua")
-- This is used later as the default terminal and editor to run.
terminal = "alacritty"
@ -230,6 +230,15 @@ root.buttons(gears.table.join(
-- {{{ Key bindings
globalkeys = gears.table.join(
awful.key({}, "XF86AudioLowerVolume", function()
awful.spawn.with_shell("pactl set-sink-volume @DEFAULT_SINK@ -5% && notify-send 'volume down'")end),
awful.key({}, "XF86AudioRaiseVolume", function()
awful.spawn.with_shell("pactl set-sink-volume @DEFAULT_SINK@ +5% && notify-send 'volume up'")end),
awful.key({ }, "XF86MonBrightnessDown", function ()
awful.spawn.with_shell("brightnessctl set 8%-") end),
awful.key({ }, "XF86MonBrightnessUp", function ()
awful.spawn.with_shell("brightnessctl set 8%+") end),
awful.key({ modkey, }, "s", hotkeys_popup.show_help,
{description="show help", group="awesome"}),
awful.key({ modkey, }, "Left", awful.tag.viewprev,
@ -376,11 +385,15 @@ globalkeys = gears.table.join(
{description = "run gui editor", group = "user programs"}),
awful.key({ modkey, altkey }, "d", function () awful.spawn("Discord") end,
{description = "run discord messaging client", group = "launcher"}),
awful.key({ modkey, altkey }, "f", function () awful.spawn("nemo") end,
awful.key({ modkey, altkey }, "f", function () awful.spawn("pcmanfm") end,
{description = "run gui file manager", group = "launcher"}),
awful.key({ modkey, altkey }, "b", function () awful.spawn("firefox") end,
{description = "run browser", group = "user programs"}),
awful.key({ modkey, altkey }, "e", function () awful.spawn("alacritty -e neomutt") end,
{description = "run browser", group = "user programs"}),
awful.key({ modkey}, "p", function () awful.spawn("rofi -show drun") end,
{description = "run rofi prompt (drun)", group = "Rofi launcher"}),
awful.key({ modkey,altkey}, "p", function () awful.spawn("qpost") end,
awful.key({ modkey,altkey}, "p", function () awful.spawn("qpost.sh") end,
{description = "Create new blog post", group = "Rofi launcher"}),
awful.key({ modkey,"Shift"}, "q", function () awful.spawn("/home/joelchrono12/.config/rofi/scripts/power-menu.sh") end,
{description = "run rofi power menu script", group = "Rofi launcher"}),
@ -645,18 +658,20 @@ autorunApps =
--"pipewire",
"volumeicon",
"picom",
"lxpolkit",
--"lxpolkit",
"xfce4-power-manager",
"nm-applet",
"/usr/libexec/polkit-mate-authentication-agent-1",
"timeshift-launcher",
"syncthing -no-browser",
--"/home/joelchrono12/.config/polybar/launch.sh",
--"touchpad-indicator",
"setxkbmap -layout latam",
"nitrogen --restore",
"aw-qt",
"megasync",
"keepasscx",
"/home/chrono/.local/bin/activitywatch/aw-qt",
--"megasync",
"keepassxc",
--"firefox",
--"cbatticon",
}
if autorun then

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

View File

@ -0,0 +1,130 @@
-------------------------------
-- "Zenburn" awesome theme --
-- By Adrian C. (anrxc) --
-------------------------------
local themes_path = require("gears.filesystem").get_themes_dir()
local dpi = require("beautiful.xresources").apply_dpi
local lain = require("lain")
local awful = require("awful")
local wibox = require("wibox")
-- {{{ Main
local theme = {}
theme.wallpaper = themes_path .. "zenburn/darkpcnordwall.png"
-- }}}
-- {{{ Styles
-- {{{ Colors
theme.font = "mononoki Nerd Font 11"
theme.taglist_font = "mononoki Nerd Font 13"
theme.fg_normal = "#a9b1d6" -- white
theme.fg_focus = "#E0AF68" -- dark gray
theme.fg_urgent = "#b48ead" -- purple
theme.bg_normal = "#1a1b26" -- black
theme.bg_focus = "#9ECE6A" -- green
theme.bg_urgent = "#b48ead"
theme.taglist_fg_focus = "#1a1b26"
theme.tasklist_bg_focus = "#3b3d57" -- dark light blue
theme.tasklist_fg_focus = "#9ECE6A" -- green
--theme.titlebar_bg_focus = "#9ECE6A"
--theme.titlebar_bg_normal = "#3F3F3F"
theme.titlebar_bg_focus = theme.bg_focus
theme.titlebar_bg_normal = theme.bg_normal
theme.titlebar_fg_focus = theme.fg_focus
-- }}}
-- {{{ Borders
theme.border_width = 2
theme.border_normal = "#1a1b26" -- black
theme.border_focus = "#F7768E"
theme.border_marked = "#CC9393"
theme.useless_gap = 0
-- }}}
-- {{{ Titlebars
--theme.titlebar_bg_focus = "#3F3F3F"
--theme.titlebar_bg_normal = "#3F3F3F"
theme.tasklist_plain_task_name = true
theme.tasklist_disable_icon = true
-- }}}
-- There are other variable sets
-- overriding the default one when
-- defined, the sets are:
-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile]
-- titlebar_[normal|focus]
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- Example:
--theme.taglist_bg_focus = "#CC9393"
-- }}}
-- {{{ Widgets
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.fg_widget = "#AECF96"
--theme.fg_center_widget = "#88A175"
--theme.fg_end_widget = "#FF5656"
--theme.bg_widget = "#494B4F"
--theme.border_widget = "#3F3F3F"
-- }}}
-- {{{ Mouse finder
theme.mouse_finder_color = "#CC9393"
-- mouse_finder_[timeout|animate_timeout|radius|factor]
-- }}}
-- {{{ Menu
-- Variables set for theming the menu:
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_height = dpi(20)
theme.menu_width = dpi(130)
-- }}}
-- {{{ Icons
-- {{{ Taglist
theme.taglist_squares_sel = themes_path .. "zenburn/taglist/squarefz.png"
theme.taglist_squares_unsel = themes_path .. "zenburn/taglist/squarez.png"
--theme.taglist_squares_resize = "false"
-- }}}
-- {{{ Misc
theme.awesome_icon = themes_path .. "zenburn/icons/awesome.png"
theme.menu_submenu_icon = themes_path .. "zenburn/icons/submenu.png"
-- }}}
-- {{{ Layout
theme.layout_tile = themes_path .. "zenburn/layouts/tile.png"
theme.layout_tileleft = themes_path .. "zenburn/layouts/tileleft.png"
theme.layout_tilebottom = themes_path .. "zenburn/layouts/tilebottom.png"
theme.layout_tiletop = themes_path .. "zenburn/layouts/tiletop.png"
theme.layout_fairv = themes_path .. "zenburn/layouts/fairv.png"
theme.layout_fairh = themes_path .. "zenburn/layouts/fairh.png"
theme.layout_spiral = themes_path .. "zenburn/layouts/spiral.png"
theme.layout_dwindle = themes_path .. "zenburn/layouts/dwindle.png"
theme.layout_max = themes_path .. "zenburn/layouts/max.png"
theme.layout_fullscreen = themes_path .. "zenburn/layouts/fullscreen.png"
theme.layout_magnifier = themes_path .. "zenburn/layouts/magnifier.png"
theme.layout_floating = themes_path .. "zenburn/layouts/floating.png"
theme.layout_cornernw = themes_path .. "zenburn/layouts/cornernw.png"
theme.layout_cornerne = themes_path .. "zenburn/layouts/cornerne.png"
theme.layout_cornersw = themes_path .. "zenburn/layouts/cornersw.png"
theme.layout_cornerse = themes_path .. "zenburn/layouts/cornerse.png"
-- }}}
-- {{{ Titlebar
-- }}}
-- }}}
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -0,0 +1,130 @@
-------------------------------
-- "Zenburn" awesome theme --
-- By Adrian C. (anrxc) --
-------------------------------
local themes_path = require("gears.filesystem").get_themes_dir()
local dpi = require("beautiful.xresources").apply_dpi
local lain = require("lain")
local awful = require("awful")
local wibox = require("wibox")
-- {{{ Main
local theme = {}
theme.wallpaper = themes_path .. "zenburn/darkpcnordwall.png"
-- }}}
-- {{{ Styles
-- {{{ Colors
theme.font = "mononoki Nerd Font 11"
theme.taglist_font = "mononoki Nerd Font 13"
theme.fg_normal = "#eceff4" -- white
theme.fg_focus = "#434c5e" -- dark blue not so
theme.fg_urgent = "#b48ead" -- purple
theme.bg_normal = "#2e3440" -- dark blue
theme.bg_focus = "#a3be8c" -- green
theme.bg_urgent = "#b48ead"
theme.taglist_fg_focus = "#282a36"
theme.tasklist_bg_focus = "#4c566a" -- dark light blue
theme.tasklist_fg_focus = "#a3be8c" -- green
theme.titlebar_bg_focus = "#3F3F3F"
theme.titlebar_bg_normal = "#3F3F3F"
theme.titlebar_bg_focus = theme.bg_focus
theme.titlebar_bg_normal = theme.bg_normal
theme.titlebar_fg_focus = theme.fg_focus
-- }}}
-- {{{ Borders
theme.border_width = 2
theme.border_normal = "#5e81ac"
theme.border_focus = "#bf616a"
theme.border_marked = "#CC9393"
theme.useless_gap = 0
-- }}}
-- {{{ Titlebars
theme.titlebar_bg_focus = "#3F3F3F"
theme.titlebar_bg_normal = "#3F3F3F"
theme.tasklist_plain_task_name = true
theme.tasklist_disable_icon = true
-- }}}
-- There are other variable sets
-- overriding the default one when
-- defined, the sets are:
-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile]
-- titlebar_[normal|focus]
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- Example:
--theme.taglist_bg_focus = "#CC9393"
-- }}}
-- {{{ Widgets
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.fg_widget = "#AECF96"
--theme.fg_center_widget = "#88A175"
--theme.fg_end_widget = "#FF5656"
--theme.bg_widget = "#494B4F"
--theme.border_widget = "#3F3F3F"
-- }}}
-- {{{ Mouse finder
theme.mouse_finder_color = "#CC9393"
-- mouse_finder_[timeout|animate_timeout|radius|factor]
-- }}}
-- {{{ Menu
-- Variables set for theming the menu:
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_height = dpi(20)
theme.menu_width = dpi(130)
-- }}}
-- {{{ Icons
-- {{{ Taglist
theme.taglist_squares_sel = themes_path .. "zenburn/taglist/squarefz.png"
theme.taglist_squares_unsel = themes_path .. "zenburn/taglist/squarez.png"
--theme.taglist_squares_resize = "false"
-- }}}
-- {{{ Misc
theme.awesome_icon = themes_path .. "zenburn/icons/awesome.png"
theme.menu_submenu_icon = themes_path .. "zenburn/icons/submenu.png"
-- }}}
-- {{{ Layout
theme.layout_tile = themes_path .. "zenburn/layouts/tile.png"
theme.layout_tileleft = themes_path .. "zenburn/layouts/tileleft.png"
theme.layout_tilebottom = themes_path .. "zenburn/layouts/tilebottom.png"
theme.layout_tiletop = themes_path .. "zenburn/layouts/tiletop.png"
theme.layout_fairv = themes_path .. "zenburn/layouts/fairv.png"
theme.layout_fairh = themes_path .. "zenburn/layouts/fairh.png"
theme.layout_spiral = themes_path .. "zenburn/layouts/spiral.png"
theme.layout_dwindle = themes_path .. "zenburn/layouts/dwindle.png"
theme.layout_max = themes_path .. "zenburn/layouts/max.png"
theme.layout_fullscreen = themes_path .. "zenburn/layouts/fullscreen.png"
theme.layout_magnifier = themes_path .. "zenburn/layouts/magnifier.png"
theme.layout_floating = themes_path .. "zenburn/layouts/floating.png"
theme.layout_cornernw = themes_path .. "zenburn/layouts/cornernw.png"
theme.layout_cornerne = themes_path .. "zenburn/layouts/cornerne.png"
theme.layout_cornersw = themes_path .. "zenburn/layouts/cornersw.png"
theme.layout_cornerse = themes_path .. "zenburn/layouts/cornerse.png"
-- }}}
-- {{{ Titlebar
-- }}}
-- }}}
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More