This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/Timvde/UserChrome-Tweaks/ | |
| #sidebar-header { | |
| visibility: collapse !important; | |
| } | |
| #sidebar-header { | |
| display: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CODE_URL="https://update.code.visualstudio.com/latest/linux-x64/stable" | |
| error_code=0 | |
| cd $HOME/Apps | |
| function inform_user() { | |
| echo "$1" | |
| notify-send "$1" || true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| perf_gtk_tree_view.c | |
| gcc one-liner: gcc -std=c99 `pkg-config --cflags gtk+-3.0` -o perf_gtk_tree_view perf_gtk_tree_view.c `pkg-config --libs gtk+-3.0` | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <gtk/gtk.h> | |
| GtkWidget *scrolled_tree; |