1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-19 16:27:45 +02:00

Compare commits

..

No commits in common. "34c63dd99f852fd898047266fe1a1dedf451f0ab" and "60a947a8a2b63363d67fa6780df796f1c3b40c39" have entirely different histories.

12 changed files with 51 additions and 171 deletions

View File

@ -1,4 +1,4 @@
vim.o.go = "a"
vim.o.go = 'a'
vim.o.showmode = false
-- disable netrw
@ -6,11 +6,11 @@ vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- enable mouse for all modes
vim.o.mouse = "a"
vim.o.clipboard = "unnamedplus"
vim.o.mouse = 'a'
vim.o.clipboard = 'unnamedplus'
-- basic color settings
vim.o.background = "dark"
vim.o.background = 'dark'
-- setting Tab-length
vim.o.expandtab = true
@ -61,10 +61,10 @@ vim.o.nobackup = true
vim.o.nowritebackup = true
-- set completeopt to have a better completion experience
vim.o.completeopt = "menuone,noselect"
vim.o.completeopt = 'menuone,noselect'
-- set completion option for command mode
vim.o.wildmode = "longest:full,full"
vim.o.wildmode = 'longest:full,full'
-- minimum number of lines around the cursor
vim.o.scrolloff = 10
@ -78,14 +78,14 @@ vim.o.undofile = true
vim.o.undodir = vim.env.XDG_CACHE_HOME .. "/vim/undo"
-- python programs to use
vim.g.python_host_prog = "/usr/bin/python2"
vim.g.python3_host_prog = "/usr/bin/python3"
vim.g.python_host_prog = '/usr/bin/python2'
vim.g.python3_host_prog = '/usr/bin/python3'
-- folding
vim.o.foldcolumn = "0"
vim.o.foldcolumn = '0'
vim.o.foldlevel = 99
vim.o.foldlevelstart = 99
vim.o.foldexpr = "expr"
vim.o.foldexpr = 'expr'
vim.o.foldenable = true
vim.o.conceallevel = 0
vim.g.markdown_folding = 1
@ -98,35 +98,34 @@ vim.o.textwidth = 80
-- read files correctly
vim.filetype.add({
extension = {
c = "c",
h = "c",
html = "html",
java = "java",
js = "javascript",
lua = "lua",
md = "markdown",
nim = "nim",
py = "python",
sage = "python",
sh = "shell",
tex = "tex",
},
c = 'c',
h = 'c',
html = 'html',
java = 'java',
js = 'javascript',
lua = 'lua',
md = 'markdown',
nim = 'nim',
py = 'python',
sage = 'python',
tex = 'tex',
}
})
-- set mapleader for hotkeys
vim.g.mapleader = ","
-- load general mapped keys
require("style")
require('style')
-- load dictionaries and helper functions
require("dictionaries")
require('dictionaries')
-- load plugins (autoload all files in plugin folder)
require("loadplugins")
require('loadplugins')
-- load general mapped keys
require("keymap")
require('keymap')
vim.cmd([[
set foldopen-=hor

View File

@ -5,12 +5,10 @@ return {
config = function()
require("conform").setup({
formatters_by_ft = {
lua = { "stylua" },
markdown = { "mdformat" },
python = { "isort", "yapf" },
sh = { "beautysh" },
shell = { "beautysh" },
markdown = { "mdformat" },
tex = { "latexindent" },
lua = { "stylua" },
yaml = { "yamlfmt" },
},
})
@ -20,12 +18,6 @@ return {
{ "-y=defaultIndent: ' '" }
),
}
require("conform").formatters.beautysh = {
args = require("conform.util").extend_args(
require("conform.formatters.beautysh").args,
{ "--indent-size=2", "--force-function-style=fnpar" }
),
}
end,
},
}

View File

@ -9,7 +9,7 @@ return {
require("null-ls").setup({
sources = {
-- latex
-- require("null-ls").builtins.formatting.latexindent,
require("null-ls").builtins.formatting.latexindent,
-- lua
require("null-ls").builtins.formatting.stylua,
-- markdown
@ -17,8 +17,6 @@ return {
-- python
require("null-ls").builtins.formatting.isort,
require("null-ls").builtins.formatting.yapf,
-- shell
-- require("null-ls").builtins.formatting.beautysh,
-- yaml
require("null-ls").builtins.formatting.yamlfmt,
}
@ -39,8 +37,6 @@ return {
-- python
"isort",
"yapf",
-- shell
"beautysh",
-- yaml
"yamlfmt",
}

View File

@ -11,15 +11,11 @@ super + r
dmenu_run -F -i -c -l 20
super + a
lmc previous
playerctl previous
super + s
lmc playpause
playerctl play-pause
super + d
lmc next
super + c
lmc loop
super + x
lmc shuffle
playerctl next
super + f
$TERMINAL -e $FILE

View File

@ -2,6 +2,8 @@
model=$(cat /proc/cpuinfo | grep "model name" | head -n1)
icon="^b#282828^^c#dfdfdf^  ^d^"
if printf "$model " | grep -Fqe "AMD"; then
temp=$(sensors | awk '/Tctl/ {print $2}')
else
@ -10,14 +12,4 @@ fi
temp=$(printf %3s $(echo ${temp##*+} | sed "s/\..*//") | tr ' ' ' ')
if [ $temp -gt 100 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $temp -gt 80 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"
echo "$icon $temp°C"

View File

@ -3,21 +3,9 @@
# Status bar module for disk space
# $1 should be drive mountpoint
disk="/home"
disk="/"
[ ! -z "$1" ] && disk="$1"
icon="$disk"
free=$(df "$disk" | awk ' /[0-9][0-9]/ {print $4}')
if [ $free -gt 104857600 ]
then
icon="^b#282828^^c#dfdfdf^ 󰗮 ^d^"
elif [ $free -gt 52428800 ]
then
icon="^b#282828^^c#ffff00^ 󰗮 ^d^"
else
icon="^b#282828^^c#ff0000^ 󰗮 ^d^"
fi
printf "$icon %s"
printf "^b#282828^^c#dfdfdf^ 󰗮 ^d^ %s\n" "$(df -h "$disk" | awk ' /[0-9]/ {print $3 "/" $2}')"

View File

@ -1,6 +1,6 @@
#!/bin/sh
icon="^b#282828^^c#dfdfdf^ ^d^"
icon="^b#282828^^c#dfdfdf^ ^d^"
temp=""
@ -12,14 +12,4 @@ else
return
fi
if [ $temp -gt 100 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $temp -gt 80 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"
echo "$icon $temp°C"

View File

@ -2,24 +2,9 @@
wifipercent=" 0"
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#ff0000^ " && wifistatus="down"
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#ff0000^ ^d^"
[ ! -n "${wifiicon+var}" ] && wifistatus="up" && wifipercent=$(grep "^\s*w" /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
[ ! -n "${wifiicon+var}" ] && wifiicon="^c#dfdfdf^ ^d^" && wifipercent=$(grep "^\s*w" /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
wifipercent=$(printf %3s $wifipercent | tr ' ' ' ')
if [ $wifistatus = "up" ]
then
if [ $wifipercent -gt 75 ]
then
wifiicon=" ^d^"
elif [ $wifipercent -gt 40 ]
then
wifiicon=" ^d^"
else
wifiicon=" ^d^"
fi
fi
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^  /;s/up/^b#282828^^c#dfdfdf^ 󰈀 /")" "$wifiicon"
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^  /;s/up/^b#282828^^c#dfdfdf^ 󰈀 /")" "$wifiicon" "$wifipercent%"

View File

@ -2,16 +2,5 @@
icon="^b#282828^^c#dfdfdf^  ^d^ "
total=$(free -h | awk '/^Mem:/ {print $3/$2}')
percent=$(printf %3s $(printf %-4s $total | tr ' ' '0' | cut -c1-4 | sed -e 's/\.//g' | sed -e 's/^0//g') | tr ' ' ' ')
if [ $percent -gt 75 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $percent -gt 50 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"
percent=$(printf %3s $(printf %-4s $total | tr ' ' '0' | cut -c1-4 | sed -e 's/\.//g' | sed -e 's/^0//g') | tr ' ' ' ')%
echo "$icon$percent"

View File

@ -1,38 +0,0 @@
#!/bin/sh
playerctlstatus=$(playerctl status 2> /dev/null)
track="$(playerctl metadata "xesam:artist") - $(playerctl metadata "xesam:title")"
track=$(echo "$track" | cut -c1-40)
loop=$(playerctl loop)
shuffle=$(playerctl shuffle)
if [ "$loop" = "Playlist" ]
then
loop_icon=""
elif [ "$loop" = "Track" ]
then
loop_icon=""
elif [ "$loop" = "None" ]
then
loop_icon=""
fi
if [ "$shuffle" = "Off" ]
then
shuffle_icon=""
elif [ "$shuffle" = "On" ]
then
shuffle_icon=""
fi
if [ "$playerctlstatus" = "" ]
then
echo ""
elif [ "$playerctlstatus" = "Playing" ]
then
echo "$track ^b#282828^^c#dfdfdf^ ▶️ $loop_icon $shuffle_icon ^d^"
elif [ "$playerctlstatus" = "Paused" ]
then
echo "^b#282828^^c#dfdfdf^  $loop_icon $shuffle_icon ^d^"
fi

View File

@ -3,20 +3,20 @@
vol="$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2}' | sed -e 's/\.//g' | sed 's/^0*//')"
if [ "$vol" -eq "0" ]; then
vol_info="^c#dfdfdf^  "
vol_info="^c#dfdfdf^ ^d^"
elif [ "$vol" -gt "70" ]; then
vol_info="^c#dfdfdf^  "
vol_info="^c#dfdfdf^ ^d^"
else
vol_info="^c#dfdfdf^  "
vol_info="^c#dfdfdf^ ^d^"
fi
$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q '\[MUTED\]') && vol_info="^c#ff0000^  "
$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q '\[MUTED\]') && vol_info="^c#ff0000^ ^d^"
if wpctl get-volume @DEFAULT_SOURCE@ | grep -q '\[MUTED\]'; then
mic="^c#ff0000^  "
mic="^b#282828^^c#ff0000^  "
else
mic="^c#dfdfdf^  "
mic="^b#282828^^c#dfdfdf^  "
fi
vol=$(printf %3s $vol | tr ' ' ' ')
printf "^b#282828^%s%s^d^ %s" "$mic" "$vol_info" "$vol%"
printf "%s %s %s %s\\n" "$mic" "$vol_info" "$vol%"

View File

@ -12,11 +12,6 @@ case "$1" in
undeaf) wpctl set-mute @DEFAULT_SINK@ 0;;
mute) wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 1;;
unmute) wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 0;;
previous) playerctl previous;;
playpause) playerctl play-pause;;
next) playerctl next;;
shuffle) playerctl shuffle toggle;;
loop) playerctl loop none;;
*) cat << EOF
lmc: cli music interface for pulse for those with divine intellect too
grand to remember the pamixer commands.
@ -28,12 +23,8 @@ Allowed options:
unmute unmute microphone
deaf deaf sound
undeaf undeaf sound
previous play previous song in player
playpause toggle play or pause in player
next play next song in player
all else Print this message
EOF
esac
pkill -RTMIN+4 $STATUSBAR
sleep 1 && pkill -RTMIN+9 $STATUSBAR