Compare commits

..

3 Commits

Author SHA1 Message Date
0477ff8bc9
rofi: improve readability on theme 2023-07-22 22:17:13 -04:00
c0ba610559
rofi: added 2023-07-22 21:23:54 -04:00
5df98b9e39
ipython: disable exit confirm prompt 2023-07-22 21:13:12 -04:00
4 changed files with 84 additions and 0 deletions

View File

@ -43,6 +43,7 @@ pipewire-pulse
# #
# utility # utility
# #
rofi
progress progress
speedtest-cli speedtest-cli
obs-studio obs-studio

View File

@ -3,3 +3,4 @@ c = get_config()
c.TerminalInteractiveShell.editing_mode = "vi" c.TerminalInteractiveShell.editing_mode = "vi"
c.TerminalInteractiveShell.show_rewritten_input = False c.TerminalInteractiveShell.show_rewritten_input = False
c.TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode = False c.TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode = False
c.TerminalInteractiveShell.confirm_exit = False

View File

@ -0,0 +1 @@
@theme "transparent"

View File

@ -0,0 +1,81 @@
/*
* ROFI color theme
*
* Stolen from https://github.com/Murzchnvok/rofi-collection/blob/master/minimal/minimal.rasi
*
* User: Contributors
* Copyright: *!
*/
configuration {
font: "JetBrains Mono 12";
drun {
display-name: "[^.^]";
}
run {
display-name: "[°.°]";
}
window {
display-name: "[*.*]";
}
timeout {
delay: 10;
action: "kb-cancel";
}
}
* {
border: 0;
margin: 0;
padding: 0;
spacing: 0;
bg: #000000aa;
bg-alt: #232323aa;
fg: #FFFFFF;
fg-alt: #606060;
background-color: @bg;
text-color: @fg;
}
window {
transparency: "real";
}
mainbox {
children: [inputbar, listview];
}
inputbar {
children: [prompt, entry];
}
entry {
padding: 12px 0;
}
prompt {
padding: 12px;
}
listview {
lines: 8;
}
element {
children: [element-text];
}
element-text {
padding: 12px;
text-color: @fg-alt;
}
element-text selected {
text-color: @fg;
}