From 7ead6ec18df2b8d45d977540ccfbd698e2ddce94 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 11:38:33 -0700 Subject: For the work laptop, fix it so that picom does not run with multiple monitors (it slows things down way too much) --- extras/HOME/.xmonad/startup | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'extras') diff --git a/extras/HOME/.xmonad/startup b/extras/HOME/.xmonad/startup index 07b164d..78603c7 100755 --- a/extras/HOME/.xmonad/startup +++ b/extras/HOME/.xmonad/startup @@ -15,8 +15,13 @@ hostname_rahm1() { xinput set-prop "TPPS/2 Elan TrackPoint" "Coordinate Transformation Matrix" 3 0 0 0 3 0 0 0 1 xinput set-prop "SYNA8004:00 06CB:CD8B Touchpad" "Coordinate Transformation Matrix" 3 0 0 0 3 0 0 0 1 - if [ -z "$(ps aux | grep compton | grep -v grep)" ] ; then - __GL_SYNC_TO_VBLANK=1 nohup compton --backend=glx &>/dev/null & + n_displays=$(xrandr | grep '\' | wc -l) + if [[ "$n_displays" -le "2" ]] ; then + if [ -z "$(ps aux | grep compton | grep -v grep)" ] ; then + __GL_SYNC_TO_VBLANK=1 nohup picom --backend=glx &>/dev/null & + fi + else + killall picom fi feh --bg-scale "$HOME/wp.jpg" -- cgit From 665d9c0afeb46035959d9b16de4f7010a812a354 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 11:44:08 -0700 Subject: Add script to set the PulseAudio sink for the current window. This binding is set to a. It creates a dmenu prompting the user to select which output device the current application should send audio to. In the future I might create an analog for input devices, but as things stand, I change input so much more infrequently that pavucontrol is probably fine for that. --- extras/HOME/.local/bin/set-sink.sh | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 extras/HOME/.local/bin/set-sink.sh (limited to 'extras') diff --git a/extras/HOME/.local/bin/set-sink.sh b/extras/HOME/.local/bin/set-sink.sh new file mode 100755 index 0000000..be04833 --- /dev/null +++ b/extras/HOME/.local/bin/set-sink.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +current_pid=$(xdotool getactivewindow getwindowpid) +DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -p "Move Audio" -l 12 -dim 0.4) + +sinks="$( + pactl list sinks | while read line ; do + case "$line" in + Sink\ \#*) + name="${line//*#}" ;; + Description:\ *) + description="${line//*: }" + echo "$description "'#'"$name" + ;; + *) ;; + esac + done)" + +client_input="$( + pactl list sink-inputs | while read line ; do + case "$line" in + application.process.id\ =*) + app="${line//*= \"}" + app="${app%%\"}" + ;; + object.id\ =*) + obj="${line//*= \"}" + obj="${obj%%\"}" + echo "$obj $app" + ;; + esac + done +)" + +input_sink=$(echo "$client_input" | grep "$current_pid\$") +input_sink=${input_sink%% *} + +selected_sink=$(echo "$sinks" | "${DMENU[@]}") +sink_num=${selected_sink//*#} + +#echo "$sinks" +#echo "$client_input" + +echo "pactl move-sink-input $input_sink $sink_num" +pactl move-sink-input "$input_sink" "$sink_num" -- cgit From 16c92a6f4b2072db37022b7176ad44d108dfa42a Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 12:35:00 -0700 Subject: If rofi is installed on the system, use that for emoji selection. Rofi has much better unicode support than dmenu. I might switch over to it at some point. --- extras/HOME/.local/bin/emoji-select.sh | 9 ++++++++- extras/HOME/.xmonad/rde.rasi | 37 ++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 extras/HOME/.xmonad/rde.rasi (limited to 'extras') diff --git a/extras/HOME/.local/bin/emoji-select.sh b/extras/HOME/.local/bin/emoji-select.sh index 2eeeb64..1cf8152 100755 --- a/extras/HOME/.local/bin/emoji-select.sh +++ b/extras/HOME/.local/bin/emoji-select.sh @@ -1,8 +1,15 @@ #!/bin/bash +if ( which rofi ) ; then + menu=(rofi -dmenu -i -p "Select Character: " -font "Fira Code 32") +else + menu=(dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Character" -l 12 -dim 0.4) +fi + + selection="$( zcat $HOME/.xmonad/unicode.gz | sed 's@\([^;]\+\);\([^;]\+\).*@\1 \2 @g' | - dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Character" -l 12 -dim 0.4)" + "${menu[@]}")" emoji="${selection%% *}" diff --git a/extras/HOME/.xmonad/rde.rasi b/extras/HOME/.xmonad/rde.rasi new file mode 100644 index 0000000..4270085 --- /dev/null +++ b/extras/HOME/.xmonad/rde.rasi @@ -0,0 +1,37 @@ +* { + background-color: Black; + border-color: White; + text-color: White; + font: "NotoMono 24"; +} + +#window { + anchor: north; + location: north; + width: 100%; + padding: 10px; + children: [ horibox ]; +} + +#horibox { + orientation: horizontal; + children: [ prompt, entry, listview ]; +} + +#listview { + layout: vertical; + spacing: 5px; + lines: 15; +} + +#entry { + expand: false; + width: 10em; +} + +#element { + padding: 0px 2px; +} +#element selected { + background-color: SteelBlue; +} -- cgit From 8ff5dec689c3f4577960c25e284add5a5e9a9fcf Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 14:07:32 -0700 Subject: Change set-sink.sh Before this script would use the PID of the current window to infer the input to switch. However some frontends use a daemon to output the sound, so it doesn't work in that case. Instead, now, set-sink will prompt the user to select the active sink to switch. If there is only one active sink it will automatically move that one. --- extras/HOME/.local/bin/set-sink.sh | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'extras') diff --git a/extras/HOME/.local/bin/set-sink.sh b/extras/HOME/.local/bin/set-sink.sh index be04833..aa0b91c 100755 --- a/extras/HOME/.local/bin/set-sink.sh +++ b/extras/HOME/.local/bin/set-sink.sh @@ -1,7 +1,6 @@ #!/bin/bash -current_pid=$(xdotool getactivewindow getwindowpid) -DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -p "Move Audio" -l 12 -dim 0.4) +DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -p "Move Audio To" -l 12 -dim 0.4) sinks="$( pactl list sinks | while read line ; do @@ -19,27 +18,34 @@ sinks="$( client_input="$( pactl list sink-inputs | while read line ; do case "$line" in - application.process.id\ =*) + application.name\ =*) app="${line//*= \"}" app="${app%%\"}" + echo "$app: $media "'#'"$obj" ;; - object.id\ =*) - obj="${line//*= \"}" - obj="${obj%%\"}" - echo "$obj $app" + media.name\ =*) + media="${line//*= \"}" + media="${media%%\"}" + ;; + Sink\ Input\ \#*) + obj="${line//*#}" ;; esac done )" -input_sink=$(echo "$client_input" | grep "$current_pid\$") -input_sink=${input_sink%% *} +echo "Client Input: $client_input" + +if [[ "$(wc -l <<< "$client_input")" -gt 1 ]] ; then + client_input="$("${DMENU[@]}" -p "Move Audio From" <<< "$client_input")" +fi + +input_sink=${client_input//*#} -selected_sink=$(echo "$sinks" | "${DMENU[@]}") +selected_sink=$("${DMENU[@]}" <<< "$sinks") sink_num=${selected_sink//*#} -#echo "$sinks" -#echo "$client_input" +echo "Sinks: $sinks" echo "pactl move-sink-input $input_sink $sink_num" pactl move-sink-input "$input_sink" "$sink_num" -- cgit From 8f4949e51a5b4c563d4e5fc9ddf7123561cdf234 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 14:21:20 -0700 Subject: Change the Prompt for setting the sink. --- extras/HOME/.local/bin/set-sink.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'extras') diff --git a/extras/HOME/.local/bin/set-sink.sh b/extras/HOME/.local/bin/set-sink.sh index aa0b91c..bbbdc8d 100755 --- a/extras/HOME/.local/bin/set-sink.sh +++ b/extras/HOME/.local/bin/set-sink.sh @@ -1,6 +1,6 @@ #!/bin/bash -DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -p "Move Audio To" -l 12 -dim 0.4) +DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -l 12 -dim 0.4) sinks="$( pactl list sinks | while read line ; do @@ -40,9 +40,14 @@ if [[ "$(wc -l <<< "$client_input")" -gt 1 ]] ; then client_input="$("${DMENU[@]}" -p "Move Audio From" <<< "$client_input")" fi +if [[ "$client_input" == "" ]] ; then + exit 1 +fi + input_sink=${client_input//*#} +input_sink_name=${client_input%% #*} -selected_sink=$("${DMENU[@]}" <<< "$sinks") +selected_sink=$("${DMENU[@]}" -p "Move '$input_sink_name' To" <<< "$sinks") sink_num=${selected_sink//*#} echo "Sinks: $sinks" -- cgit From 0e4b0187167e43c3c00371cbcca5cc892521bdb2 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 14:57:47 -0700 Subject: Add emoticon-select. It's the same as emoji select, but with emoticons. Key bound to E (capital E, as opposed to e for emojis) --- extras/HOME/.local/bin/emoticon-select.sh | 13 +++++++++++++ extras/HOME/.xmonad/emoticons.txt | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100755 extras/HOME/.local/bin/emoticon-select.sh create mode 100644 extras/HOME/.xmonad/emoticons.txt (limited to 'extras') diff --git a/extras/HOME/.local/bin/emoticon-select.sh b/extras/HOME/.local/bin/emoticon-select.sh new file mode 100755 index 0000000..bf10318 --- /dev/null +++ b/extras/HOME/.local/bin/emoticon-select.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +if ( which rofi ) ; then + menu=(rofi -dmenu -i -p "Select Emoticon: " -font "Fira Code 32") +else + menu=(dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Emoticon" -l 12 -dim 0.4) +fi + + +selection="$("${menu[@]}" < $HOME/.xmonad/emoticons.txt)" +emoticon="$(echo ${selection/*-})" + +echo "$emoticon" | xclip -selection clipboard diff --git a/extras/HOME/.xmonad/emoticons.txt b/extras/HOME/.xmonad/emoticons.txt new file mode 100644 index 0000000..40b83c5 --- /dev/null +++ b/extras/HOME/.xmonad/emoticons.txt @@ -0,0 +1,16 @@ +Deal with it - (•_•) ( •_•)>⌐■-■ (⌐■_■) +Deal with it. - (▀̿Ĺ̯▀̿ ̿) +Do It Right - (☞゚ヮ゚)☞ +Do it Left - ☜(゚ヮ゚☜) +Happy Gary - ᕕ( ᐛ )ᕗ +Happy Lenny - ( ͡ᵔ ͜ʖ ͡ᵔ ) +IDFK - ¯\(°_o)/¯ +Lenny - ( ͡° ͜ʖ ͡°) +Mad Lenny - ( ͡° ʖ̯ ͡°) +Person Flip - (╯°□°)╯︵ (\ .o.)\ +Shrug - ¯\_(ツ)_/¯ +Smiley - :-) +Tableback - ┬─┬ノ(ಠ_ಠノ) +Tableflip - (╯°□°)╯︵ ┻━┻ +Unamused - ಠ_ಠ +Y u no - ლ(ಠ益ಠ)ლ -- cgit From 863514ef9c4da3cce8410f89e1b4c547cc31cf6f Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 21:22:19 -0700 Subject: Convert run menus over to Rofi. This makes things prettier and rofi is more feature rich than DMenu. --- extras/HOME/.config/rofi/config.rasi | 53 ++++++++++++++++++++++++++++++ extras/HOME/.local/bin/bluetooth-select.sh | 5 +-- extras/HOME/.local/bin/emoji-select.sh | 2 +- extras/HOME/.local/bin/emoticon-select.sh | 2 +- extras/HOME/.local/bin/rofi-pass | 35 ++++++++++++++++++++ extras/HOME/.local/bin/set-sink.sh | 2 +- 6 files changed, 94 insertions(+), 5 deletions(-) create mode 100644 extras/HOME/.config/rofi/config.rasi create mode 100755 extras/HOME/.local/bin/rofi-pass (limited to 'extras') diff --git a/extras/HOME/.config/rofi/config.rasi b/extras/HOME/.config/rofi/config.rasi new file mode 100644 index 0000000..d804f7a --- /dev/null +++ b/extras/HOME/.config/rofi/config.rasi @@ -0,0 +1,53 @@ +@theme "/usr/share/rofi/themes/DarkBlue.rasi" + +* { + theme-color: #8888ff; + selected-normal-background: @theme-color; + normal-foreground: @theme-color; + alternate-normal-foreground: @theme-color; + textbox-background: #202020; + + font: "Monofur Bold Nerd Font 34"; +} + +window { + border: 0; + width: 100%; + height: 100%; + padding: 20%; + background-color: rgba ( 0, 0, 0, 75 % ); +} + +#case-indicator { + background-color: @theme-color; + text-color: #202020; + padding: 10px; +} + +#prompt { + background-color: @theme-color; + text-color: #202020; + padding: 10px; +} + +inputbar { + children: [ prompt,entry,case-indicator ]; +} + +#entry { + background-color: #202020; + padding: 10px; +} + +#listview { + fixed-height: 0; + border: 50px 0px 0px ; + border-color: #000000; + scrollbar: true; + background-color: #202020; +} + +element { + border: 0; + padding: 10px 10px 20px 10px ; +} diff --git a/extras/HOME/.local/bin/bluetooth-select.sh b/extras/HOME/.local/bin/bluetooth-select.sh index 9a42ce5..a39ead1 100755 --- a/extras/HOME/.local/bin/bluetooth-select.sh +++ b/extras/HOME/.local/bin/bluetooth-select.sh @@ -2,8 +2,9 @@ devices="$(bluetoothctl -- devices | sed 's#^Device ##')" selection="$( - echo -e "$devices\nDisconnect" | - dmenu -i -nf "#8888ff" -sb "#8888ff" -p "Connect Bluetooth" -l 12 -dim 0.4)" + echo -e "$devices\nDisconnect" | rofi -p "Connect Bluetooth" \ + -theme-str '* {theme-color: #8888ff;}' \ + -dmenu)" macaddr="${selection%% *}" diff --git a/extras/HOME/.local/bin/emoji-select.sh b/extras/HOME/.local/bin/emoji-select.sh index 1cf8152..5d244d8 100755 --- a/extras/HOME/.local/bin/emoji-select.sh +++ b/extras/HOME/.local/bin/emoji-select.sh @@ -1,7 +1,7 @@ #!/bin/bash if ( which rofi ) ; then - menu=(rofi -dmenu -i -p "Select Character: " -font "Fira Code 32") + menu=(rofi -dmenu -i -p "Select Character" -theme-str '* {theme-color: #ffff88;}' -show run) else menu=(dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Character" -l 12 -dim 0.4) fi diff --git a/extras/HOME/.local/bin/emoticon-select.sh b/extras/HOME/.local/bin/emoticon-select.sh index bf10318..ed6cddc 100755 --- a/extras/HOME/.local/bin/emoticon-select.sh +++ b/extras/HOME/.local/bin/emoticon-select.sh @@ -1,7 +1,7 @@ #!/bin/bash if ( which rofi ) ; then - menu=(rofi -dmenu -i -p "Select Emoticon: " -font "Fira Code 32") + menu=(rofi -theme-str '* {theme-color: #ffa050;}' -p "Select Emoticon" -dmenu) else menu=(dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Emoticon" -l 12 -dim 0.4) fi diff --git a/extras/HOME/.local/bin/rofi-pass b/extras/HOME/.local/bin/rofi-pass new file mode 100755 index 0000000..57a4704 --- /dev/null +++ b/extras/HOME/.local/bin/rofi-pass @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +shopt -s nullglob globstar + +typeit=0 +if [[ $1 == "--type" ]]; then + typeit=1 + shift +fi + +if [[ -n $WAYLAND_DISPLAY ]]; then + dmenu=dmenu-wl + xdotool="ydotool type --file -" +elif [[ -n $DISPLAY ]]; then + dmenu=(rofi -dmenu -p 'Password') + xdotool="xdotool type --clearmodifiers --file -" +else + echo "Error: No Wayland or X11 display detected" >&2 + exit 1 +fi + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +password=$(printf '%s\n' "${password_files[@]}" | "${dmenu[@]}" "$@") + +[[ -n $password ]] || exit + +if [[ $typeit -eq 0 ]]; then + pass show -c "$password" 2>/dev/null +else + pass show "$password" | { IFS= read -r pass; printf %s "$pass"; } | $xdotool +fi diff --git a/extras/HOME/.local/bin/set-sink.sh b/extras/HOME/.local/bin/set-sink.sh index bbbdc8d..71054d8 100755 --- a/extras/HOME/.local/bin/set-sink.sh +++ b/extras/HOME/.local/bin/set-sink.sh @@ -1,6 +1,6 @@ #!/bin/bash -DMENU=(dmenu -i -nf "#88ff88" -sb "#88ff88" -l 12 -dim 0.4) +DMENU=(rofi -theme-str '* {theme-color: #88ff88;}' -dmenu) sinks="$( pactl list sinks | while read line ; do -- cgit From 45e294be50d35cafbddf47ba4ec0301067a2eb76 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 21:38:34 -0700 Subject: minor changes with rofi --- extras/HOME/.config/rofi/config.rasi | 10 +++++----- extras/HOME/.local/bin/bluetooth-select.sh | 2 +- extras/HOME/.local/bin/emoticon-select.sh | 2 +- extras/HOME/.local/bin/rofi-pass | 2 +- extras/HOME/.local/bin/set-sink.sh | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'extras') diff --git a/extras/HOME/.config/rofi/config.rasi b/extras/HOME/.config/rofi/config.rasi index d804f7a..b78665e 100644 --- a/extras/HOME/.config/rofi/config.rasi +++ b/extras/HOME/.config/rofi/config.rasi @@ -5,7 +5,7 @@ selected-normal-background: @theme-color; normal-foreground: @theme-color; alternate-normal-foreground: @theme-color; - textbox-background: #202020; + main-background: #202020e0; font: "Monofur Bold Nerd Font 34"; } @@ -20,13 +20,13 @@ window { #case-indicator { background-color: @theme-color; - text-color: #202020; + text-color: @main-background; padding: 10px; } #prompt { background-color: @theme-color; - text-color: #202020; + text-color: @main-background; padding: 10px; } @@ -35,7 +35,7 @@ inputbar { } #entry { - background-color: #202020; + background-color: @main-background; padding: 10px; } @@ -44,7 +44,7 @@ inputbar { border: 50px 0px 0px ; border-color: #000000; scrollbar: true; - background-color: #202020; + background-color: @main-background; } element { diff --git a/extras/HOME/.local/bin/bluetooth-select.sh b/extras/HOME/.local/bin/bluetooth-select.sh index a39ead1..8c901ee 100755 --- a/extras/HOME/.local/bin/bluetooth-select.sh +++ b/extras/HOME/.local/bin/bluetooth-select.sh @@ -2,7 +2,7 @@ devices="$(bluetoothctl -- devices | sed 's#^Device ##')" selection="$( - echo -e "$devices\nDisconnect" | rofi -p "Connect Bluetooth" \ + echo -e "$devices\nDisconnect" | rofi -i -p "Connect Bluetooth" \ -theme-str '* {theme-color: #8888ff;}' \ -dmenu)" diff --git a/extras/HOME/.local/bin/emoticon-select.sh b/extras/HOME/.local/bin/emoticon-select.sh index ed6cddc..cb593b4 100755 --- a/extras/HOME/.local/bin/emoticon-select.sh +++ b/extras/HOME/.local/bin/emoticon-select.sh @@ -1,7 +1,7 @@ #!/bin/bash if ( which rofi ) ; then - menu=(rofi -theme-str '* {theme-color: #ffa050;}' -p "Select Emoticon" -dmenu) + menu=(rofi -i -theme-str '* {theme-color: #ffa050;}' -p "Select Emoticon" -dmenu) else menu=(dmenu -fn NotoSans:size=24 -i -nf "#ffff88" -sb "#ffff88" -p "Select Emoticon" -l 12 -dim 0.4) fi diff --git a/extras/HOME/.local/bin/rofi-pass b/extras/HOME/.local/bin/rofi-pass index 57a4704..6eb58b7 100755 --- a/extras/HOME/.local/bin/rofi-pass +++ b/extras/HOME/.local/bin/rofi-pass @@ -12,7 +12,7 @@ if [[ -n $WAYLAND_DISPLAY ]]; then dmenu=dmenu-wl xdotool="ydotool type --file -" elif [[ -n $DISPLAY ]]; then - dmenu=(rofi -dmenu -p 'Password') + dmenu=(rofi -i -dmenu -p 'Password') xdotool="xdotool type --clearmodifiers --file -" else echo "Error: No Wayland or X11 display detected" >&2 diff --git a/extras/HOME/.local/bin/set-sink.sh b/extras/HOME/.local/bin/set-sink.sh index 71054d8..9cd6f93 100755 --- a/extras/HOME/.local/bin/set-sink.sh +++ b/extras/HOME/.local/bin/set-sink.sh @@ -1,6 +1,6 @@ #!/bin/bash -DMENU=(rofi -theme-str '* {theme-color: #88ff88;}' -dmenu) +DMENU=(rofi -i -theme-str '* {theme-color: #88ff88;}' -dmenu) sinks="$( pactl list sinks | while read line ; do -- cgit From 39bda6b806461d879f96c25e9886022ebcc5a4c6 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 10 Jan 2022 21:52:54 -0700 Subject: minor changes to rofi config --- extras/HOME/.config/rofi/config.rasi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'extras') diff --git a/extras/HOME/.config/rofi/config.rasi b/extras/HOME/.config/rofi/config.rasi index b78665e..1fec00f 100644 --- a/extras/HOME/.config/rofi/config.rasi +++ b/extras/HOME/.config/rofi/config.rasi @@ -5,7 +5,7 @@ selected-normal-background: @theme-color; normal-foreground: @theme-color; alternate-normal-foreground: @theme-color; - main-background: #202020e0; + main-background: #202020f0; font: "Monofur Bold Nerd Font 34"; } @@ -41,8 +41,9 @@ inputbar { #listview { fixed-height: 0; - border: 50px 0px 0px ; - border-color: #000000; + margin: 50px 0px 0px 0px; + border: 0px 0px 0px 0px ; + border-color: rgba ( 0, 0, 0, 75 % ); scrollbar: true; background-color: @main-background; } -- cgit