mirror of
https://github.com/Phantop/dotfiles
synced 2024-12-22 21:26:47 +00:00
qute: improve discord css usability and better hide bs
This commit is contained in:
parent
c6ab37d7d5
commit
f6825f6207
6
archpkgs
6
archpkgs
|
@ -14,14 +14,13 @@ bat
|
|||
bc
|
||||
bleachbit
|
||||
btop
|
||||
budgie-control-center
|
||||
budgie-desktop
|
||||
budgie-screensaver
|
||||
busybox
|
||||
bzip3
|
||||
ccache
|
||||
chaotic-keyring
|
||||
chaotic-mirrorlist
|
||||
clang
|
||||
cmake
|
||||
cpupower
|
||||
dart-sass
|
||||
|
@ -41,7 +40,6 @@ git
|
|||
gitui
|
||||
gnome-disk-utility
|
||||
gnome-keyring
|
||||
gnome-online-accounts
|
||||
gnome-power-manager
|
||||
gnome-system-monitor
|
||||
hblock
|
||||
|
@ -77,6 +75,7 @@ man-pages
|
|||
mandoc
|
||||
megatools
|
||||
meld
|
||||
meson
|
||||
moreutils
|
||||
mpv-mpris
|
||||
msitools
|
||||
|
@ -162,4 +161,5 @@ zathura-cb
|
|||
zathura-djvu
|
||||
zathura-pdf-mupdf
|
||||
zeal-git
|
||||
zip
|
||||
zram-generator
|
||||
|
|
|
@ -23,6 +23,7 @@ a dot 'cd ~/.dotfiles'
|
|||
a drivedl 'dl https://docs.google.com/uc?export=download&id=(echo $argv | cut -d/ -f6)&confirm=t'
|
||||
a epubpack 'cd $argv && zip -0rX ../(basename $argv).epub mimetype *; cd ..;:'
|
||||
a ff 'fd -HILi -Edosdevices -E.git'
|
||||
a fumount 'fusermount -u'
|
||||
a g git
|
||||
a gittop 'cd (git root)'
|
||||
a giveme 's chown $USER'
|
||||
|
|
|
@ -8,7 +8,7 @@ s pacman-key --lsign-key 3056513887B78AEB
|
|||
s pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst'
|
||||
s pacman -Syu
|
||||
xargs -o sudo pacman -S --needed < ~/.dotfiles/archpkgs
|
||||
yay -S pandoc-bin shellcheck-bin
|
||||
yay -S pandoc-bin shellcheck-bin nvimpager
|
||||
chsh -s "$(which fish)"
|
||||
|
||||
echo kernel.core_pattern=/dev/null | s tee -a /etc/sysctl.d/50-coredump.conf
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
fish_add_path -g ~/.appdwarf/{,apps/bin} ~/{.dotfiles,.local,,Games}/bin /usr/lib64/ccache/bin
|
||||
export EDITOR=nvim MANPAGER='nvim +Man!' USE_CCACHE=1
|
||||
export EDITOR=nvim MANPAGER='nvim +Man!' USE_CCACHE=1 PAGER=nvimpager
|
||||
export QT_STYLE_OVERRIDE=kvantum
|
||||
|
||||
set fish_greeting
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
function ytflux
|
||||
set cat 3
|
||||
eval curl (cat ~/.miniflux)/entries?status=unread\&category_id=$cat | jq .entries[].url | xargs yt-dlp &
|
||||
set entries (eval curl (cat ~/.miniflux)/entries?status=unread\&category_id=$cat | jq .entries[].url)
|
||||
eval curl -X PUT (cat ~/.miniflux)/categories/$cat/mark-all-as-read
|
||||
parallel -u yt-dlp ::: $entries
|
||||
end
|
||||
|
|
|
@ -15,9 +15,11 @@
|
|||
[class^="container"], section {background: transparent}
|
||||
#channels [class^="unread"] {background: #cfcdcf}
|
||||
|
||||
$aria: gift, Help, Inbox, sidebar;
|
||||
$aria: gift, Help, Inbox;
|
||||
@each $i in $aria {[aria-label$="#{$i}"] {display: none}}
|
||||
[class^="private"] [class^="search"], [href="/store"] {display: none}
|
||||
[class^="private"] [class^="search"], [href="/store"], [href="/shop"] {display: none}
|
||||
|
||||
[aria-label="Servers"] + div { display: none; + div { display: none; + div + div { display: none; } } }
|
||||
|
||||
font-family: "Ubuntu Mono";
|
||||
background: url("https://cdn.discordapp.com/attachments/773556458234052608/1140629357505826896/out.webp");
|
||||
|
|
Loading…
Reference in a new issue