AutoYADM commit: 2025-01-19 21:00:03
This commit is contained in:
parent
e1cee8bfec
commit
323b0bebff
2 changed files with 52 additions and 1 deletions
|
@ -318,7 +318,7 @@ bindsym $mod+Shift+s exec grimshot save area
|
||||||
|
|
||||||
# WARNING: DO NOT TOUCH OR ELSE BAD THINGS WILL HAPPEN!!!!
|
# WARNING: DO NOT TOUCH OR ELSE BAD THINGS WILL HAPPEN!!!!
|
||||||
exec_always foot --server
|
exec_always foot --server
|
||||||
exec filen-desktop
|
exec /home/fic/AppImage/Filen_linux_x86_64_d2f22b59bc2cfc7139a84517bb91afba.AppImage
|
||||||
exec xembedsniproxy
|
exec xembedsniproxy
|
||||||
exec nm-applet
|
exec nm-applet
|
||||||
exec dunst
|
exec dunst
|
||||||
|
|
51
.config/television/default_channels.toml
Normal file
51
.config/television/default_channels.toml
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
# GIT
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "git-diff"
|
||||||
|
source_command = "git diff --name-only"
|
||||||
|
preview_command = "git diff --color=always {0}"
|
||||||
|
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "git-reflog"
|
||||||
|
source_command = 'git reflog'
|
||||||
|
preview_command = 'git show -p --stat --pretty=fuller --color=always {0}'
|
||||||
|
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "git-log"
|
||||||
|
source_command = "git log --oneline --date=short --pretty=\"format:%h %s %an %cd\" \"$@\""
|
||||||
|
preview_command = "git show -p --stat --pretty=fuller --color=always {0}"
|
||||||
|
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "git-branch"
|
||||||
|
source_command = "git --no-pager branch --all --format=\"%(refname:short)\""
|
||||||
|
preview_command = "git show -p --stat --pretty=fuller --color=always {0}"
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "docker-images"
|
||||||
|
source_command = "docker image list --format \"{{.ID}}\""
|
||||||
|
preview_command = "docker image inspect {0} | jq -C"
|
||||||
|
|
||||||
|
# S3
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "s3-buckets"
|
||||||
|
source_command = "aws s3 ls | cut -d \" \" -f 3"
|
||||||
|
preview_command = "aws s3 ls s3://{0}"
|
||||||
|
|
||||||
|
# Dotfiles
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "my-dotfiles"
|
||||||
|
source_command = "fd -t f . $HOME/.config"
|
||||||
|
preview_command = ":files:"
|
||||||
|
|
||||||
|
# Shell history
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "zsh-history"
|
||||||
|
source_command = "sed '1!G;h;$!d' $HOME/.zsh_history | cut -d\";\" -f 2-"
|
||||||
|
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "bash-history"
|
||||||
|
source_command = "sed '1!G;h;$!d' $HOME/.bash_history"
|
||||||
|
|
||||||
|
[[cable_channel]]
|
||||||
|
name = "fish-history"
|
||||||
|
source_command = "fish -c 'history'"
|
Loading…
Add table
Add a link
Reference in a new issue